/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #f4f0e6; color: #0d2137; overflow-x: hidden; }

/* ===== Keyframes ===== */
@keyframes floatBob {
	0%, 100% { transform: translateY(0px) rotate(-1deg); }
	50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes scrollBounce {
	0%, 100% { opacity: 0.45; transform: translateY(0); }
	50% { opacity: 1; transform: translateY(7px); }
}
@keyframes fadeSlideUp {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes gentlePulse {
	0%, 100% { box-shadow: 0 4px 20px rgba(245,200,66,0.45), 0 2px 8px rgba(0,0,0,0.25); transform: scale(1); }
	50% { box-shadow: 0 8px 42px rgba(245,200,66,0.9), 0 4px 16px rgba(0,0,0,0.3); transform: scale(1.08); }
}

/* ===== Utility ===== */
.is-hidden { display: none !important; }

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 68px; display: flex; align-items: center; padding: 0 28px; background: rgba(10,28,46,0.18); box-shadow: none; transition: background 0.35s ease, box-shadow 0.35s ease; }
.nav.is-scrolled { background: rgba(10,28,46,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.45); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-brand-logo { height: 44px; width: 44px; object-fit: contain; }
.nav-brand-title { font-weight: 700; font-size: 16px; color: #f5c842; letter-spacing: 0.3px; line-height: 1.1; text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
.nav-brand-sub { font-weight: 600; font-size: 11px; color: rgba(255,255,255,0.82); letter-spacing: 2.5px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

.nav-desktop { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.88); text-decoration: none; padding: 7px 13px; border-radius: 5px; transition: color 0.2s, background 0.2s; }
.nav-link:hover { color: #f5c842; background: rgba(255,255,255,0.09); }
.nav-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); margin: 0 6px; }

.nav-donate { background: #f5c842; color: #0d2137; padding: 9px 20px; border-radius: 5px; font-weight: 700; font-size: 15px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.nav-donate:hover { background: #e8b520; }
.nav-donate--sm { padding: 7px 14px; border-radius: 4px; font-size: 14px; }

.nav-mobile { display: none; align-items: center; gap: 10px; margin-left: auto; }
.nav-mobile.is-shown { display: flex; }
.nav-toggle { background: none; border: none; cursor: pointer; padding: 6px; line-height: 0; }

/* ===== Mobile Menu ===== */
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999; background: #0a1c2e; border-top: 1px solid rgba(255,255,255,0.1); padding: 6px 0 12px; }
.mobile-menu.is-open { display: block; }
.mobile-nav-link { display: block; font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.88); text-decoration: none; padding: 13px 28px; transition: color 0.2s, background 0.2s; }
.mobile-nav-link--border { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-link:hover { color: #f5c842; background: rgba(255,255,255,0.05); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('images/banner_light_blue_no_stamp.webp'); background-size: cover; background-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,28,46,0.42) 0%, rgba(10,28,46,0.62) 45%, rgba(10,28,46,0.90) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 100px 24px 80px; max-width: 1000px; width: 100%; animation: fadeSlideUp 0.9s ease both; }
.hero-stamp { width: 160px; height: 160px; object-fit: contain; margin-bottom: 28px; animation: floatBob 5s ease-in-out infinite; filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55)); }
.hero-title { font-weight: 900; font-size: clamp(37px,8vw,92px); color: white; line-height: 0.95; letter-spacing: -1px; text-shadow: 0 4px 28px rgba(0,0,0,0.55); margin-bottom: 4px; }
.hero-title-accent { font-weight: 900; font-size: clamp(37px,8vw,92px); color: #f5c842; line-height: 0.95; letter-spacing: -1px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); margin-bottom: 24px; }
.hero-tagline { font-size: clamp(17px,2.5vw,23px); font-weight: 500; color: rgba(255,255,255,0.88); letter-spacing: 0.5px; margin-bottom: 42px; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 0; right: 0; display: flex; justify-content: center; pointer-events: none; }
.hero-scroll-icon { animation: scrollBounce 1.8s ease-in-out infinite; }

/* ===== Buttons ===== */
.btn-primary { background: #f5c842; color: #0d2137; padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 18px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.btn-primary:hover { background: #e8b520; }
.btn-secondary { background: rgba(255,255,255,0.13); color: white; padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 18px; text-decoration: none; border: 2px solid rgba(255,255,255,0.38); letter-spacing: 0.3px; transition: background 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.22); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: #0d2137; color: white; padding: 13px 26px; border-radius: 6px; font-weight: 700; font-size: 16px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.btn-dark:hover { background: #1e4068; }

/* ===== Sections ===== */
.section { padding: 92px 24px; }
.section--cream { background: #f4f0e6; }
.section--navy { background: #0d2137; }
.section--blue { background: #1a5e8f; }
.section--gold { background: #f5c842; }

.section-inner { margin: 0 auto; }
.section-inner--about { max-width: 1100px; }
.section-inner--events { max-width: 860px; text-align: center; }
.section-inner--udisc { max-width: 920px; text-align: center; }
.section-inner--donate { max-width: 680px; text-align: center; }
.section-inner--spread { max-width: 760px; text-align: center; }
.section-inner--community { max-width: 1000px; text-align: center; }

.eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase; }
.eyebrow--blue { color: #1a5e8f; }
.eyebrow--gold { color: #f5c842; }
.eyebrow--muted-white { color: rgba(255,255,255,0.62); }
.eyebrow--muted-ink { color: rgba(13,33,55,0.52); }

.section-title { font-weight: 700; font-size: clamp(36px,5vw,62px); line-height: 1.05; }
.section-title--ink { color: #0d2137; }
.section-title--white { color: white; }
.section-title--mt { margin-top: 8px; }
.section-title--events { margin: 8px 0 52px; }
.section-title--udisc { margin: 8px 0 14px; }
.section-title--donate { margin: 8px 0 18px; }
.section-title--spread { margin: 8px 0 18px; }
.section-title--community { margin: 8px 0 14px; }

/* ===== About ===== */
.about-head { text-align: center; margin-bottom: 64px; }
.about-grid { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; margin-bottom: 68px; }
.about-stamp-wrap { flex: 0 0 auto; text-align: center; margin: 0 auto; }
.about-stamp { width: 250px; height: 250px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(13,33,55,0.15)); }
.about-copy { flex: 1; min-width: 280px; }
.about-text { font-size: 18px; line-height: 1.8; color: #2a3a4a; margin-bottom: 20px; }
.about-text--last { margin-bottom: 32px; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.feature-card { background: white; border-radius: 12px; padding: 30px 26px; box-shadow: 0 2px 14px rgba(13,33,55,0.07); }
.feature-card--gold { border-top: 4px solid #f5c842; }
.feature-card--blue { border-top: 4px solid #1a5e8f; }
.feature-card--green { border-top: 4px solid #2d6e32; }
.feature-icon { font-size: 40px; margin-bottom: 14px; }
.feature-title { font-weight: 700; font-size: 22px; color: #0d2137; margin-bottom: 8px; }
.feature-text { font-size: 15px; color: #5a6a7a; line-height: 1.65; margin-bottom: 18px; }
.card-link { font-weight: 700; font-size: 14px; color: #1a5e8f; text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s; }
.card-link:hover { color: #0d2137; }

/* ===== Events ===== */
.event-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 28px 32px; margin-bottom: 16px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; text-align: left; }
.event-date { flex-shrink: 0; background: #f5c842; border-radius: 10px; padding: 12px 16px; text-align: center; min-width: 68px; }
.event-date-month { font-weight: 700; font-size: 13px; letter-spacing: 2px; color: #0d2137; text-transform: uppercase; line-height: 1; }
.event-date-day { font-weight: 700; font-size: 44px; color: #0d2137; line-height: 1.05; }
.event-body { flex: 1; min-width: 220px; }
.event-titles { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.event-title { font-weight: 700; font-size: 26px; color: white; line-height: 1.1; }
.event-badge { background: rgba(245,200,66,0.18); color: #f5c842; font-weight: 700; font-size: 11px; letter-spacing: 1.5px; padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(245,200,66,0.35); white-space: nowrap; }
.event-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
.event-meta-item { font-size: 14px; color: rgba(255,255,255,0.55); }
.event-desc { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65; }

.events-cta { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 36px 32px; text-align: center; }
.events-cta-text { font-size: 16px; color: rgba(255,255,255,0.48); margin-bottom: 20px; }
.events-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.events-note { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.32); }
.events-note-link { color: #f5c842; text-decoration: none; }
.events-note-link:hover { text-decoration: underline; }

.social-btn { display: inline-flex; align-items: center; gap: 8px; color: white; padding: 10px 18px; border-radius: 6px; font-weight: 800; font-size: 14px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.social-btn--fb { background: #1877f2; }
.social-btn--fb:hover { background: #0d5fc0; }
.social-btn--discord { background: #5865f2; }
.social-btn--discord:hover { background: #4550d8; }

/* ===== UDisc ===== */
.udisc-lead { font-size: 18px; color: rgba(255,255,255,0.75); margin: 0 auto 52px; max-width: 520px; line-height: 1.65; }
.udisc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.udisc-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 42px 30px; text-decoration: none; color: white; display: block; transition: background 0.2s; }
.udisc-card:hover { background: rgba(255,255,255,0.19); }
.udisc-card-img { margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.udisc-card-img--course { height: 72px; }
.udisc-card-img--tag { height: 86px; }
.udisc-img-course { height: 80px; width: auto; border-radius: 8px; }
.udisc-img-tag { height: 86px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45)); }
.udisc-card-title { font-weight: 700; font-size: 27px; margin-bottom: 10px; }
.udisc-card-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 24px; }
.udisc-card-cta { display: inline-block; background: #f5c842; color: #0d2137; padding: 9px 22px; border-radius: 5px; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }

/* ===== Donate ===== */
.donate-lead { font-size: 18px; line-height: 1.78; color: #1a2e42; margin-bottom: 24px; }
.donate-btn { display: inline-block; background: #0d2137; color: white; padding: 16px 46px; border-radius: 7px; font-weight: 700; font-size: 21px; text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.donate-btn:hover { background: #1e4068; }
.donate-note { margin-top: 16px; font-size: 13px; color: rgba(13,33,55,0.48); }

/* ===== Spread the Word ===== */
.spread-lead { font-size: 18px; color: rgba(255,255,255,0.75); margin: 0 auto 44px; max-width: 560px; line-height: 1.65; }
.spread-steps { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.spread-step { flex: 1; min-width: 200px; max-width: 240px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 26px 22px; }
.spread-step-num { width: 40px; height: 40px; border-radius: 50%; background: #f5c842; color: #0d2137; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.spread-step-title { font-weight: 700; font-size: 18px; color: white; margin-bottom: 6px; }
.spread-step-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.spread-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== Community ===== */
.community-lead { font-size: 18px; color: #5a6a7a; margin: 0 auto 52px; max-width: 460px; line-height: 1.65; }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 16px; }
.community-card { background: white; border-radius: 12px; padding: 28px 16px; text-decoration: none; color: #0d2137; box-shadow: 0 2px 14px rgba(13,33,55,0.07); border: 2px solid transparent; transition: border-color 0.2s; }
.community-card-linktree:hover { border-color: #39e09b; }
.community-card-fb:hover { border-color: #1877f2; }
.community-card-discord:hover { border-color: #5865f2; }
.community-card-ig:hover { border-color: #e1306c; }
.community-card-membership:hover { border-color: #f5c842; }
.community-icon { width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.community-icon--linktree { background: #2dba7a; }
.community-icon--fb { background: #1877f2; }
.community-icon--discord { background: #5865f2; }
.community-icon--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.community-icon--membership { background: #0d2137; }
.community-icon-emoji { font-size: 26px; line-height: 1; }
.community-card-title { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.community-card-sub { font-size: 13px; color: #7a8a9a; }

/* ===== Floating Donate ===== */
.floating-donate { display: none; position: fixed; bottom: 32px; right: 28px; z-index: 900; width: 72px; height: 72px; border-radius: 50%; background: #f5c842; flex-direction: column; align-items: center; justify-content: center; gap: 3px; text-decoration: none; animation: gentlePulse 2.4s ease-in-out infinite; cursor: pointer; }
.floating-donate.is-visible { display: flex; }
.floating-donate-label { font-weight: 700; font-size: 11px; color: #0d2137; letter-spacing: 0.8px; line-height: 1; }

/* ===== Footer ===== */
.footer { background: #0a1c2e; padding: 60px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 16px; flex: 1 1 260px; min-width: 240px; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.footer-brand-title { font-weight: 700; font-size: 20px; color: #f5c842; letter-spacing: 0.3px; line-height: 1.15; }
.footer-brand-sub { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 4px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 44px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; min-width: 120px; }
.footer-col-title { font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #f5c842; }
.footer-copy { text-align: center; font-size: 13px; color: rgba(255,255,255,0.22); border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; }

@media (max-width: 600px) {
	.footer-top { gap: 36px; }
	.footer-cols { gap: 32px; width: 100%; }
	.footer-col { flex: 1 1 40%; }
}

@media (max-width: 991px) {
.hero-bg {
    background-position: left;
}	
}
@media (max-width: 394px) {
nav#site-nav {
    padding: 0 12px;
}
a.nav-donate.nav-donate--sm {
    padding: 7px;
}
.nav-brand-title {
    font-size: 14px;
}
}
@media (max-width: 389px) {
.hero-title { font-size: 33px; }
.hero-title-accent { font-size: 33px; }
}