@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap");

@font-face { font-family: old; src: url(fonts/canterbury.ttf); }
@font-face { font-family: bebas; src: url(fonts/bebas.ttf); }
@font-face { font-family: coco; src: url(fonts/coco.ttf); }
@font-face { font-family: teko; src: url(fonts/teko.ttf); }
@font-face { font-family: akira; src: url(fonts/akira.ttf); }
@font-face { font-family: heavy; src: url(fonts/Heavitas.ttf); }
@font-face { font-family: nerd; src: url(fonts/nerd.ttf); }
@font-face { font-family: rubik; src: url(fonts/rubik.ttf); }
@font-face { font-family: f1; src: url(fonts/f1.ttf); }
@font-face { font-family: clouts; src: url(fonts/clouts.ttf); }
@font-face { font-family: workspace; src: url(fonts/workspace.ttf); }
@font-face { font-family: identify; src: url(fonts/identify.ttf); }
@font-face { font-family: blazed; src: url(fonts/Blazed.ttf); }
@font-face { font-family: fire; src: url(fonts/fire.ttf); }
@font-face { font-family: boldy; src: url(fonts/bold.ttf); }
@font-face { font-family: cursive-bold; src: url(fonts/CursiveSans-Bold.ttf); }
@font-face { font-family: cursive-book; src: url(fonts/CursiveSans-Book.ttf); }
@font-face { font-family: designer; src: url(fonts/designer.ttf); }
@font-face { font-family: built; src: url(fonts/built.ttf); }
@font-face { font-family: lemon; src: url(fonts/lemon.ttf); }
@font-face { font-family: nexa; src: url(fonts/nexa.ttf); }
@font-face { font-family: nuth; src: url(fonts/muth.ttf); }
@font-face { font-family: urban; src: url(fonts/urban.ttf); }

/*=============== ANIMATIONS ===============*/
@keyframes textChange2 {
  0%   { content: "CALCUTTA BOYS' SCHOOL"; }
  40%  { content: 'PRESENTS'; }
  70%  { content: 'ASSEMBLY OF NATIONS'; }
  100% { content: 'ASSEMBLY OF NATIONS'; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -25px) scale(1.06); }
  66%       { transform: translate(-15px, 18px) scale(0.97); }
}

@keyframes floatOrbSlow {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, -30px); }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(8px); opacity: 0.9; }
}

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(30px) scale(0.5); opacity: 0; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(180, 130, 0, 0.12); }
  50%       { border-color: rgba(200, 160, 0, 0.3); }
}

@keyframes titleShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/*=============== BASE ===============*/
* { box-sizing: border-box; padding: 0; margin: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; background: #0a0700; color: white; }
ul { list-style: none; }
a { text-decoration: none; }

/*=============== LOADER ===============*/
#load-landing {
  height: 100vh; width: 100vw;
  background: #0a0700;
  position: fixed; z-index: 2000;
  display: grid; place-items: center;
}

#load-landing #landingText {
  font-family: akira;
  font-size: clamp(0.8rem, 1.8vw, 1.6rem);
  background: linear-gradient(90deg, #c8960c, #ffd700, #c8960c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
  letter-spacing: 0.1em;
}

#load-landing #landingText::after {
  font-family: akira;
  content: "ASSEMBLY OF NATIONS";
  animation: textChange2 3s 1 forwards;
  background: linear-gradient(90deg, #c8960c, #ffd700, #c8960c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*=============== NAVBAR ===============*/
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10, 8, 2, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 1.5rem 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}


.navbar__brand {
  display: flex; align-items: center; flex-shrink: 0;
}

.navbar__logo {
  height: 2.4rem; width: 2.4rem;
  object-fit: contain; border-radius: 50%;
}

.navbar__links {
  display: flex; align-items: center;
  gap: 0.05rem; list-style: none; margin: 0; padding: 0;
}

.navbar__links .nav__link {
  display: flex; align-items: center;
  font-family: akira; font-size: 0.48rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(200, 165, 80, 0.45);
  padding: 0.4rem 0.75rem; border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.navbar__links .nav__link:hover {
  color: rgba(230, 195, 100, 0.9);
  background: rgba(200, 150, 0, 0.06);
}

.navbar__links .nav__link.active {
  color: #ffe090;
  border: 1px solid rgba(200, 150, 0, 0.45);
  background: rgba(180, 130, 0, 0.08);
  box-shadow: 0 0 12px rgba(200, 150, 0, 0.15);
}

.navbar__links .nav__link--cta {
  color: #0a0700;
  background: linear-gradient(135deg, #d4a820, #f5c842);
  border: none; border-radius: 999px;
  padding: 0.4rem 1rem;
  box-shadow: 0 0 18px rgba(200, 160, 0, 0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}

.navbar__links .nav__link--cta:hover {
  box-shadow: 0 0 28px rgba(200, 160, 0, 0.55);
  transform: translateY(-1px);
}

.navbar__toggle {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
  padding: 0.5rem 0.6rem; border-radius: 999px;
  background: none; border: none;
}

.navbar__toggle span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(200, 165, 80, 0.7); border-radius: 999px;
}

/*=============== DRAWER ===============*/
.navbar__drawer {
  position: fixed; top: 0; right: -100%;
  height: 100vh; width: 72vw; max-width: 300px;
  background: rgba(8, 6, 0, 0.98);
  backdrop-filter: blur(24px);
  border-left: 0.5px solid rgba(200, 150, 0, 0.12);
  z-index: 1100; display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__drawer.show-menu { right: 0; }

.navbar__drawer-close {
  align-self: flex-end;
  color: rgba(200, 165, 80, 0.4);
  font-size: 1.2rem; cursor: pointer;
  margin-bottom: 1.5rem; background: none; border: none;
  transition: color 0.2s;
}

.navbar__drawer-close:hover { color: #d4a820; }

.navbar__drawer-brand {
  display: flex; justify-content: center; margin-bottom: 2rem;
}

.navbar__drawer-logo {
  height: 3.5rem; width: 3.5rem;
  object-fit: contain; border-radius: 50%; opacity: 0.9;
}

.navbar__drawer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.2rem;
}

.navbar__drawer-links li {
  transform: translateX(60px); opacity: 0;
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}

.navbar__drawer-links li:nth-child(1) { transition-delay: 0.05s; }
.navbar__drawer-links li:nth-child(2) { transition-delay: 0.1s; }
.navbar__drawer-links li:nth-child(3) { transition-delay: 0.15s; }
.navbar__drawer-links li:nth-child(4) { transition-delay: 0.2s; }
.navbar__drawer-links li:nth-child(5) { transition-delay: 0.25s; }
.navbar__drawer-links li:nth-child(6) { transition-delay: 0.3s; }

.navbar__drawer.show-menu .navbar__drawer-links li {
  transform: translateX(0); opacity: 1;
}

.navbar__drawer-links a {
  display: flex; align-items: center;
  font-family: akira; font-size: 0.55rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(200, 165, 80, 0.45);
  padding: 0.75rem 1rem; border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s;
}

.navbar__drawer-links a:hover {
  color: rgba(230, 195, 100, 0.9);
  background: rgba(200, 150, 0, 0.06);
}

.navbar__drawer-links a.active {
  color: #ffe090;
  border: 1px solid rgba(200, 150, 0, 0.3);
}

.navbar__drawer-links a.nav__link--cta {
  color: #0a0700;
  background: linear-gradient(135deg, #d4a820, #f5c842);
  border-radius: 999px; margin-top: 0.5rem;
  justify-content: center;
}

.navbar__overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}

.navbar__overlay.show-menu { opacity: 1; pointer-events: all; }

/*=============== HERO ===============*/
.hero {
  position: relative;
  height: 100vh; width: 100dvw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #140e00 0%, #0a0700 65%);
}

.hero__orbs {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}

.orb--1 {
  width: 550px; height: 550px;
  top: -120px; left: -120px;
  background: rgba(180, 120, 0, 0.1);
  animation: floatOrb 9s ease-in-out infinite;
}

.orb--2 {
  width: 420px; height: 420px;
  bottom: -100px; right: -80px;
  background: rgba(150, 80, 0, 0.08);
  animation: floatOrbSlow 12s ease-in-out infinite reverse;
}

.orb--3 {
  width: 300px; height: 300px;
  top: 30%; right: 30%;
  background: rgba(200, 140, 0, 0.05);
  animation: floatOrb 15s ease-in-out infinite;
}

.hero__particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/*=============== HERO CONTENT ===============*/
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
  gap: 0.7rem;
  padding: 0 0 0 8dvw;
}

.hero__tag {
  font-family: akira;
  font-size: .8rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 160, 60, 0.7);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 3.3s; opacity: 0;
}

.hero__title {
  font-family: bebas;
  font-size: clamp(4rem, 8vw, 10rem);
  line-height: 0.88;
  color: #ffffff;
  animation: fadeUp 1s ease forwards;
  animation-delay: 3.5s; opacity: 0;
}

.hero__title span {
  display: block;
  background: linear-gradient(
    90deg,
    #ffd700, #f5a623, #c8790a, #f5a623, #ffd700
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s linear infinite;
}

.hero__meta {
  display: flex; align-items: center; gap: 0.8rem;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 3.7s; opacity: 0;
}

.hero__year {
  font-family: akira; font-size: 2rem;
  letter-spacing: 0.15em;
  color: rgba(220, 175, 60, 0.85);
}

.hero__sep {
  color: rgba(200, 150, 0, 0.25); font-size: 0.8rem;
}

@media screen and (max-width: 1150px) {
  .hero__sep { display: none; }
}

.hero__motto {
  font-family: akira; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(180, 140, 40, 0.65);
}

.hero__date {
  font-family: akira; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200, 160, 60, 0.7);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 3.9s; opacity: 0;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 8dvw;
  font-family: akira; font-size: 0.9rem;
  color: rgba(200, 160, 60, 0.3);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

/*=============== HERO EMBLEM ===============*/
.hero__emblem-wrap {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: flex; align-items: center; justify-content: center;
  width: clamp(240px, 32vw, 420px);
  height: clamp(240px, 32vw, 420px);
  animation: fadeIn 1s ease forwards;
  animation-delay: 3.5s; opacity: 0;
}

.hero__emblem {
  width: 72%; height: 72%;
  object-fit: contain;
  opacity: 0.75;
  animation: float 6s ease-in-out infinite;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 40px rgba(200, 150, 0, 0.3));
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
}

.hero__ring--1 {
  width: 100%; height: 100%;
  border: 0.5px solid rgba(200, 150, 0, 0.2);
  animation: spin 18s linear infinite;
}

.hero__ring--2 {
  width: 125%; height: 125%;
  border: 0.5px solid rgba(200, 150, 0, 0.1);
  animation: spinReverse 28s linear infinite;
}

.hero__ring--3 {
  width: 155%; height: 155%;
  border: 0.5px solid rgba(200, 150, 0, 0.05);
  animation: spin 45s linear infinite;
}

/*=============== COUNTDOWN ===============*/
.countdown__wrapper {
  display: flex; align-items: center;
  gap: 1rem;
  background: rgba(255, 200, 0, 0.03);
  border: 0.5px solid rgba(200, 150, 0, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1.8rem;
  animation: fadeUp 0.8s ease forwards, borderGlow 3s ease-in-out infinite;
  animation-delay: 4.1s, 0s;
  opacity: 0;
}

.countdown__item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.1rem;
  min-width: 2.8rem;
}

.countdown__num {
  font-family: bebas;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1; color: #ffffff;
}

.countdown__label {
  font-family: akira; font-size: 0.35rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.4);
}

.countdown__sep {
  font-family: bebas;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  color: rgba(200, 150, 0, 0.2);
  margin-bottom: 1rem;
}

/*=============== SECTIONS ===============*/
.section__eyebrow {
  font-family: akira; font-size: 0.5rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.5);
}

.section__title {
  font-family: bebas;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9; color: #ffffff;
}

.section__title span {
  background: linear-gradient(90deg, #ffd700, #f5a623, #c8790a, #f5a623, #ffd700);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s linear infinite;
  font-size: ;
}

.section__body {
  font-family: akira; font-size: .69rem;
  line-height: 2.2; letter-spacing: 0.06em;
  color: rgba(200, 170, 90, 0.5);
  max-width: 600px;
}

/*=============== ABOUT PREVIEW ===============*/
.about-preview {
  min-height: 100vh; width: 100dvw;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 4dvw;
  background: linear-gradient(180deg, #0a0700 0%, #0f0a00 50%, #0a0700 100%);
  text-align: center; gap: 1.5rem;
  position: relative; overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 120, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: floatOrbSlow 10s ease-in-out infinite;
}

.stat-row {
  display: flex; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
  margin-top: 0.5rem;
}

.stat-card {
  background: rgba(255, 200, 0, 0.03);
  border: 0.5px solid rgba(200, 150, 0, 0.12);
  border-radius: 12px;
  padding: 1.8rem 2.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  min-width: 130px;
  animation: borderGlow 4s ease-in-out infinite;
}

.stat-card:hover {
  border-color: rgba(200, 150, 0, 0.35);
  background: rgba(255, 200, 0, 0.05);
  transform: translateY(-5px);
}

.stat-card__num {
  font-family: bebas;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem); line-height: 1;
  background: linear-gradient(180deg, #ffd700, #c8790a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-family: akira; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.45);
}

.about-preview__links {
  display: flex; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
}

.pill-btn {
  font-family: akira; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 2rem; border-radius: 999px;
  color: #0a0700;
  background: linear-gradient(135deg, #d4a820, #f5c842);
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(200, 160, 0, 0.2);
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(200, 160, 0, 0.45);
}

.pill-btn--outline {
  background: transparent;
  color: rgba(200, 160, 60, 0.65);
  border: 0.5px solid rgba(200, 150, 0, 0.3);
  box-shadow: none;
}

.pill-btn--outline:hover {
  background: rgba(200, 150, 0, 0.06);
  box-shadow: 0 0 20px rgba(200, 150, 0, 0.15);
}

.gallery-preview {
  width: 100dvw;
  padding: 6rem 4dvw;
  background: #0a0700;
  text-align: center;
}

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid rgba(200, 150, 0, 0.15);
  box-shadow: 0 0 60px rgba(180, 120, 0, 0.1);
}

.gallery-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 7, 0, 0.6);
  border: 0.5px solid rgba(200, 150, 0, 0.25);
  color: rgba(200, 160, 60, 0.8);
  font-size: 1.2rem;
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}

.gallery-arrow:hover {
  background: rgba(200, 150, 0, 0.15);
  border-color: rgba(200, 150, 0, 0.5);
  color: #ffd700;
}

.gallery-arrow--left { left: 1rem; }
.gallery-arrow--right { right: 1rem; }

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem;
  z-index: 10;
}

.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(200, 160, 60, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.gallery-dot.active {
  background: rgba(200, 160, 60, 0.9);
  transform: scale(1.3);
}

@media screen and (max-width: 1150px) {
  .gallery-preview { padding: 4rem 1.5rem; }
  .gallery-slider { aspect-ratio: 4/3; }
  .gallery-arrow { width: 2.2rem; height: 2.2rem; font-size: 1rem; }
}

/*=============== SECRETARIAT PAGE ===============*/
#sec1 {
  height: 100vh; width: 100dvw;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #0f0a00 0%, #0a0700 70%);
  gap: 0;
}

#sec1 .sec1__silent {
  width: clamp(140px, 20vw, 240px); opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(200, 150, 0, 0.2));
  animation: float 3s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

#sec1 h3 {
  font-family: bebas;
  font-size: clamp(3.5rem, 8vw, 10rem);
  line-height: 1; text-align: center;
  margin: 0 0 3rem 0; color: #ffffff; display: block;
}

#sec1 .sec1__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: akira; font-size: 0.55rem; letter-spacing: 0.1em;
  color: #0a0700;
  background: linear-gradient(135deg, #d4a820, #f5c842);
  padding: 0.9rem 2.5rem; border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(200, 150, 0, 0.25);
}

#sec1 .sec1__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(200, 150, 0, 0.5);
}

/*=============== ABOUT PAGE ===============*/
#about1 {
  height: 100vh; max-height: 100vh; width: 100dvw;
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #0f0a00 0%, #0a0700 70%);
  gap: 0; position: relative;
}

.about__heading {
  font-family: bebas;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1; text-align: center; margin-bottom: 0.4rem;
  color: #ffffff; cursor: default;
  display: inline-block; position: relative; z-index: 1;
}

.about__sub {
  font-family: akira; font-size: 0.48rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.45);
  margin-bottom: 3rem; text-align: center;
  position: relative; z-index: 1;
}

.about__buttons {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
  position: relative; z-index: 1;
}

.about__btn {
  font-family: akira; font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; padding: 0.85rem 3rem; border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  background: linear-gradient(135deg, #d4a820, #f5c842);
  color: #0a0700; border: none;
  text-decoration: none; display: inline-flex; align-items: center;
  box-shadow: 0 0 20px rgba(200, 150, 0, 0.2);
}

.about__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(200, 150, 0, 0.45);
}

.about__btn--outline {
  background: transparent;
  color: rgba(200, 160, 60, 0.65);
  border: 0.5px solid rgba(200, 150, 0, 0.3);
  box-shadow: none;
}

.about__btn--outline:hover { background: rgba(200, 150, 0, 0.06); }

/*=============== ABOUT INNER PAGES ===============*/
#about-page {
  min-height: 100vh; width: 100dvw;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #0f0a00 0%, #0a0700 70%);
  padding: 8rem 2rem 4rem;
}

.about-page__content {
  max-width: 700px; width: 100%;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.about-page__tag {
  font-family: akira; font-size: 0.48rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.45);
}

.about-page__title {
  font-family: bebas;
  font-size: clamp(3rem, 7vw, 6rem); line-height: 1;
  color: #ffffff;
}

.about-page__motto {
  font-family: akira; font-size: 0.52rem;
  font-style: italic; letter-spacing: 0.1em;
  color: rgba(180, 140, 40, 0.45);
}

.about-page__divider {
  width: 50px; height: 0.5px;
  background: linear-gradient(90deg, rgba(200, 150, 0, 0.5), transparent);
}

.about-page__body {
  font-family: akira; font-size: 0.52rem;
  line-height: 2.2; letter-spacing: 0.05em;
  color: rgba(200, 170, 80, 0.5);
  white-space: pre-line;
  max-height: 60vh; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 150, 0, 0.2) transparent;
}

.about-page__body--italic {
  font-style: italic; color: rgba(180, 140, 40, 0.35);
}

.about-page__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: akira; font-size: 0.48rem; letter-spacing: 0.15em;
  color: rgba(200, 155, 40, 0.5);
  margin-top: 0.5rem; transition: color 0.2s;
}

.about-page__btn:hover { color: #d4a820; }

.popup__overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup__overlay.active {
  opacity: 1; pointer-events: all;
}

.popup__box {
  background: rgba(15, 10, 0, 0.97);
  border: 0.5px solid rgba(200, 150, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  max-width: 580px; width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.popup__overlay.active .popup__box {
  transform: translateY(0);
}

.popup__close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none;
  color: rgba(200, 160, 80, 0.4);
  font-size: 1.1rem; cursor: pointer;
  transition: color 0.2s;
}

.popup__close:hover { color: #d4a820; }

.popup__title {
  font-family: bebas;
  font-size: 2.2rem; letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.popup__text {} 
  font-family: akira;
  font-size: 0.7rem;line-height: 2;
  color: rgba(200, 170, 80, 0.5);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1150px) {
  .popup__box { padding: 2rem 1.5rem; }
  .popup__title { font-size: 1.6rem; }
}

/*=============== MOBILE ===============*/
@media screen and (max-width: 1150px) {

  .navbar {
    top: 0.7rem; left: 1rem; right: 1rem;
    transform: none; border-radius: 999px;
    padding: 0.35rem 0.5rem;
    justify-content: space-between; width: auto;
  }

  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    height: 100svh;
  }

  .hero__emblem-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(240px, 72vw, 340px);
    height: clamp(240px, 72vw, 340px);
    z-index: 1; margin: 0; opacity: 1;
  }

  .hero__emblem {
    width: 70%; height: 70%;
    opacity: 0.18;
    filter: drop-shadow(0 0 20px rgba(200, 150, 0, 0.15));
  }

  .hero__ring--1 { border-color: rgba(200, 150, 0, 0.1); }
  .hero__ring--2 { border-color: rgba(200, 150, 0, 0.06); }
  .hero__ring--3 { border-color: rgba(200, 150, 0, 0.03); }

  .hero__content {
    position: relative; z-index: 2;
    align-items: center; text-align: center;
    padding: 0 1.5rem; gap: 0.5rem;
  }

  .hero__tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(200, 160, 60, 0.8);
  }

  .hero__title { font-size: clamp(3rem, 14vw, 6rem); }

  .hero__meta { flex-direction: column; gap: 0.25rem; }

  .hero__year {
    font-size: 0.8rem;
    color: rgba(220, 175, 60, 0.95);
  }

  .hero__motto {
    font-size: 0.5rem;
    color: rgba(180, 140, 40, 0.7);
  }

  .hero__date {
    font-size: 0.6rem;
    color: rgba(200, 160, 60, 0.75);
  }

  .hero__scroll {
    left: 50%;
    transform: translateX(-50%);
  }

  .countdown__wrapper { padding: 0.7rem 1.2rem; gap: 0.5rem; }
  .countdown__num { font-size: clamp(1.5rem, 8vw, 2.5rem); }
  .countdown__sep { font-size: clamp(1.5rem, 8vw, 2.5rem); }

  .about-preview { padding: 5rem 1.5rem; }
  .stat-row { gap: 0.7rem; }
  .stat-card { padding: 1.2rem 1.5rem; min-width: 90px; }
  .stat-card__num { font-size: clamp(1.8rem, 7vw, 2.8rem); }


  #sec1 .sec1__silent { width: clamp(100px, 28vw, 160px); }
  #sec1 h3 { font-size: clamp(2.5rem, 14vw, 6rem); }

  .about__heading { font-size: clamp(3rem, 16vw, 5.5rem); }
  .about__btn { font-size: 0.52rem; padding: 0.75rem 2rem; width: 80vw; justify-content: center; }
  .about__sub { font-size: 0.48rem; margin-bottom: 2rem; }

  #about-page { padding: 6rem 1.5rem 3rem; align-items: flex-start; }
  .about-page__title { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media screen and (min-width: 1150px) {
  .navbar__toggle { display: none; }
}

/*=============== COMMITTEES PAGE ===============*/
#committees {
  min-height: 100vh; width: 100dvw;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #0f0a00 0%, #0a0700 70%);
  padding: 6rem 2rem;
  gap: 1rem;
}

.committees__heading {
  font-family: bebas;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1; text-align: center;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.committees__sub {
  font-family: akira; font-size: 0.48rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.45);
  margin-bottom: 3rem;
}

.committees__grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.committee-card {
  background: rgba(255, 200, 0, 0.03);
  border: 0.5px solid rgba(200, 150, 0, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  cursor: pointer;
  width: 220px;
  transition: transform 0.2s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  animation: borderGlow 4s ease-in-out infinite;
}

.committee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 0, 0.4);
  background: rgba(255, 200, 0, 0.06);
  box-shadow: 0 0 40px rgba(180, 120, 0, 0.12);
}

.committee-card__logo {
  width: 5rem; height: 5rem;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(200, 150, 0, 0.2));
}

.committee-card__title {
  font-family: bebas;
  font-size: 1.8rem; letter-spacing: 0.08em;
  background: linear-gradient(180deg, #ffffff, #d4a020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.committee-card__full {
  font-family: akira; font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.45);
  text-align: center;
  line-height: 1.8;
}

.popup__committee-tag {
  font-family: akira; font-size: 0.45rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200, 155, 40, 0.5);
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 1150px) {
  .committees__grid { gap: 1rem; }
  .committee-card { width: 160px; padding: 1.8rem 1.2rem; }
  .committee-card__logo { width: 3.5rem; height: 3.5rem; }
  .committee-card__title { font-size: 1.4rem; }
}

/*=============== FOOTER ===============*/
.footer {
  width: 100dvw;
  background: #070500;
  border-top: 0.5px solid rgba(200, 150, 0, 0.1);
  padding: 2rem 8dvw 1.5rem;
}

.footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(200, 150, 0, 0.2));
}

.footer__school {
  font-family: akira;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(220, 180, 80, 0.8);
}

.footer__school-link {
  font-family: akira;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(200, 150, 0, 0.5);
  transition: color 0.2s;
}

.footer__school-link:hover { color: #d4a820; }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links-title {
  font-family: akira;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 155, 40, 0.4);
  margin-bottom: 0.2rem;
}

.footer__link {
  font-family: akira;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 160, 70, 0.6);
  transition: color 0.2s;
}

.footer__link:hover { color: #d4a820; }

.footer__bottom {
  border-top: 0.5px solid rgba(200, 150, 0, 0.08);
  padding-top: 1rem;
}

.footer__made {
  font-family: akira;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(180, 140, 50, 0.4);
}

.footer__dev {
  color: rgba(200, 160, 60, 0.7);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__dev:hover { color: #d4a820; }

@media screen and (max-width: 1150px) {
  .footer { padding: 2rem 1.5rem 1.5rem; }
  .footer__main { flex-direction: column; gap: 1.5rem; }
}