@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
 
/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --navy-light: #1a2540;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f2e8;
  --white: #ffffff;
  --text-muted: #8a9bbf;
  --border: rgba(201,168,76,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}
 
/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
 
/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}
.gold-line.left { margin: 0 0 1.5rem; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.d-none { display: none; }
.mt-4 { margin-top: 1.5rem; }
 
/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,14,26,0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: padding 0.3s;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em; text-decoration: none;
}
.nav-logo span { font-weight: 300; color: var(--cream); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.4rem; border: 1px solid var(--gold);
  color: var(--gold); background: transparent; font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; }
 
/* Mobile nav drawer */
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:201;
  background:var(--navy); flex-direction:column;
  align-items:center; justify-content:center; gap:2rem;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:var(--font-display); font-size:2rem; font-weight:300;
  color:var(--white); text-decoration:none; transition:color 0.3s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-close {
  position:absolute; top:1.5rem; right:5%;
  background:none; border:none; color:var(--gold); font-size:2rem; cursor:pointer;
}
 
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ 
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&q=80') center/cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.62) 50%, rgba(10,14,26,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem; max-width: 920px;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; color: var(--white); letter-spacing: -0.01em;
}
.hero-title strong {
  font-weight: 700; color: var(--gold-light); display: block;
  font-style: italic; text-shadow: 0 0 50px rgba(201,168,76,0.3);
}
.hero-subtitle {
  font-size: clamp(0.82rem, 2vw, 0.96rem); font-weight: 300;
  letter-spacing: 0.1em; color: rgba(247,242,232,0.72);
  max-width: 560px; margin: 1.5rem auto 2.8rem; line-height: 1.9;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border: none;
  cursor: pointer; transition: all 0.35s; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.5); }
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ab8d27, #b29800);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-video:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,13,13,0.762);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: bold;
}
.play-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold); flex-shrink: 0;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--text-muted);
  text-transform: uppercase; animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
*/

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg-video {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-video video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.074) 0%, rgba(10, 14, 26, 0.184) 50%, rgba(10, 14, 26, 0.156) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem; max-width: 920px;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.1; color: rgba(255, 255, 255, 0.72); letter-spacing: -0.01em;
}
.hero-title strong {
  font-weight: 700; color: var(--gold-light); display: block;
  font-style: italic; text-shadow: 0 0 50px rgba(201,168,76,0.3);
}
.hero-subtitle {
  font-size: clamp(0.82rem, 2vw, 0.96rem); font-weight: 300;
  letter-spacing: 0.1em; color: rgba(247,242,232,0.72);
  max-width: 560px; margin: 1.5rem auto 2.8rem; line-height: 1.9;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border: none;
  cursor: pointer; transition: all 0.35s; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.5); }
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ab8d27, #b29800);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-video:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,13,13,0.762);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: bold;
}
.play-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold); flex-shrink: 0;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--text-muted);
  text-transform: uppercase; animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
 

/* ===== WINNERS GRID ===== */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 20px;
}

/* Standard winner card */
.winner-card {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1372 / 948;
}

.winner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.winner-card:hover .winner-img {
  transform: scale(1.05);
}

/* 1372×1080 wide cards */
.winner-card--wide {
  grid-column: span 1;
  aspect-ratio: 1372 / 1080;
}

/* ── IMAGE SLIDER ─────────────────────────────────── */
.slider-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.slider-track-wrapper::before,
.slider-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.slider-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a1628, transparent);
}
.slider-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a1628, transparent);
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: autoSlide 35s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slide-item {
  flex-shrink: 0;
  width: 320px;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.slide-item:hover {
  transform: scale(1.05);
  border-color: rgba(212,175,55,0.8);
  box-shadow: 0 8px 30px rgba(212,175,55,0.2);
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes autoSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ───────────────────────────────────── */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .slide-item {
    width: 270px;
    height: 180px;
  }

  .slider-track {
    gap: 1.2rem;
    animation-duration: 35s;
  }

  .slider-track-wrapper::before,
  .slider-track-wrapper::after {
    width: 70px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .slide-item {
    width: 220px;
    height: 150px;
    border-radius: 10px;
  }

  .slider-track {
    gap: 1rem;
    animation-duration: 35s;
  }

  .slider-track-wrapper::before,
  .slider-track-wrapper::after {
    width: 50px;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .slide-item {
    width: 220px;
    height: 150px;
    border-radius: 8px;
  }

  .slider-track {
    gap: 0.85rem;
    animation-duration: 35s;
  }

  .slider-track-wrapper::before,
  .slider-track-wrapper::after {
    width: 30px;
  }
}

/* Small mobile */
@media (max-width: 360px) {
  .slide-item {
    width: 185px;
    height: 125px;
    border-radius: 7px;
  }

  .slider-track {
    gap: 0.7rem;
    animation-duration: 20s;
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Desktop (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .winner-card--wide {
    grid-column: span 1;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 30px 16px;
  }
  .winner-card--wide {
    grid-column: span 1;
  }
}

/* Mobile (max 575px) */
@media (max-width: 575px) {
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 12px;
  }
  .winner-card {
    border-radius: 6px;
  }
  .winner-card--wide {
    grid-column: span 1;
  }
}

/* Very Small Mobile (max 375px) */
@media (max-width: 375px) {
  .winners-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 16px 10px;
  }
  .winner-card--wide {
    grid-column: span 1;
  }
}
 
 
/* ══════════════════════════════════════════
   VIDEO POPUP (Hero)
══════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center; align-items: center;
  z-index: 9999;
}
.lightbox.active { display: flex; }
 
.video-popup { position: relative; width: 80%; max-width: 900px; }
 
#videoFrame {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
}
 
.close-btn-modern {
  position: absolute; top: -18px; right: -18px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: white; font-size: 22px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.25s ease; z-index: 10000;
}
.close-btn-modern:hover { transform: scale(1.08); background: rgba(255,215,0,0.9); color: black; }
.close-btn-modern:active { transform: scale(0.96); }
 
/* YouTube Lightbox */
.lightbox-inner { width: 100%; max-width: 900px; position: relative; }
.lightbox-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.lb-close {
  position: absolute; top: -2.5rem; right: 0;
  color: var(--cream); background: none; border: none;
  font-size: 1.8rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.lb-close:hover { opacity: 1; color: var(--gold); }
 
/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
section { padding: 7rem 5%; position: relative; }
.section-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 0.87rem; color: var(--text-muted);
  max-width: 600px; line-height: 1.9; font-weight: 300;
}
 
/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about { background: var(--navy-mid); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--navy-light); border: 1px solid var(--border); overflow: hidden;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85; transition: transform 0.6s, opacity 0.4s;
}
.about-img-frame:hover img { transform: scale(1.04); opacity: 1; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; color: var(--navy);
}
.about-badge .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.pillar {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.1rem 1.4rem; border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04); transition: background 0.3s;
}
.pillar:hover { background: rgba(201,168,76,0.1); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar-title { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.pillar-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; font-weight: 300; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.stat-card {
  padding: 1.4rem; border: 1px solid var(--border);
  background: rgba(201,168,76,0.03); transition: background 0.3s;
}
.stat-card:hover { background: rgba(201,168,76,0.07); }
.stat-card .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-card .t { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
 
/* ══════════════════════════════════════════
   CATEGORIES — 12 items in 4-column grid
══════════════════════════════════════════ */
#categories { background: var(--navy); }
.categories-grid {
  max-width: 1300px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border);
}
.cat-card {
  background: var(--navy); padding: 2.4rem 1.8rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  cursor: default; position: relative; overflow: hidden; transition: background 0.4s;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to bottom, rgba(201,168,76,0.13), transparent);
  transition: height 0.4s;
}
.cat-card:hover::before { height: 100%; }
.cat-card:hover { background: var(--navy-light); }
.cat-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.28);
}
.cat-icon {
  width: 80px; height: 80px;
  margin: 0 auto 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; transition: transform 0.3s;
}
.cat-card:hover .cat-icon { transform: scale(1.15) translateY(-4px); }
.cat-icon-img { width: 100%; height: 100%; object-fit: contain; }
.cat-num { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.3rem; font-weight: 600; }
.cat-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 0.6rem; }
.cat-desc { font-size: 0.71rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.cat-line { width: 0; height: 1px; background: var(--gold); margin-top: 0.9rem; transition: width 0.4s; }
.cat-card:hover .cat-line { width: 36px; }
 
/* ══════════════════════════════════════════
   EVENT HIGHLIGHTS
══════════════════════════════════════════ */
#highlights { background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%); }
.highlights-inner { max-width: 1200px; margin: 0 auto; }
.event-banner {
  width: 100%; border-radius: 16px; overflow: hidden;
  padding: 1rem; box-sizing: border-box;
  background: var(--navy-light); border: 1px solid var(--border);
  margin-top: 4rem;
}
.event-image {
  width: 100%; height: 480px; object-fit: cover; object-position: center;
  border-radius: 12px; margin-bottom: 1rem;
  display: block; flex-shrink: 0;
}
.event-content {
  display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.event-date-block { min-width: 100px; text-align: center; }
.event-date-block .month { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.event-date-block .day { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.event-date-block .year { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; }
.event-divider { width: 1px; height: 80px; background: var(--border); }
.event-venue { flex: 1; }
.event-venue h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); }
.event-venue p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 300; }
.event-venue p span { color: var(--gold); }
.highlights-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.hl-card {
  padding: 2rem 1.5rem; border: 1px solid var(--border);
  background: rgba(26,37,64,0.4); transition: all 0.35s; cursor: default;
}
.hl-card:hover { background: rgba(201,168,76,0.06); border-color: var(--gold); transform: translateY(-4px); }
.hl-icon { font-size: 2rem; margin-bottom: 1rem; }
.hl-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.hl-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.hl-sub { font-size: 0.73rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 300; }
 
/* Apply Button */
.apply-btn {
  display: inline-block;
  margin-top: 1rem; padding: 12px 24px;
  background: #d4af37; color: #000;
  text-decoration: none; border-radius: 8px; font-weight: 600;
  transition: background-color 0.3s;
}
.apply-btn:hover { background-color: #ffb700; }
 
/* ══════════════════════════════════════════
   PHOTO GALLERY
══════════════════════════════════════════ */
.photo-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 50px;
  padding: 0 5%;
}
.photo-gallery .gallery-item {
  overflow: hidden; border-radius: 18px;
  position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  cursor: default; aspect-ratio: auto;
}
.photo-gallery .gallery-item img {
  width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s ease;
  display: block;
}
.photo-gallery .gallery-item:hover img { transform: scale(1.08); }
 
/* ══════════════════════════════════════════
   VIDEO GALLERY
══════════════════════════════════════════ */
#gallery { background: var(--navy); }
.gallery-grid {
  max-width: 1400px; margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding: 10px;
}
.gallery-grid .gallery-item {
  position: relative; cursor: pointer; overflow: hidden;
  border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/9; background: var(--navy-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
}
.gallery-grid .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 36px rgba(201,168,76,0.25);
}
.gallery-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-grid .gallery-item:hover .gallery-thumb { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,14,26,0.45); display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-grid .gallery-item:hover .gallery-overlay { opacity: 1; }
.play-btn-gal {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--navy);
  margin-bottom: 12px; transition: transform 0.3s;
}
.gallery-grid .gallery-item:hover .play-btn-gal { transform: scale(1.1); }
.gallery-caption { color: var(--cream); font-size: 0.78rem; text-align: center; padding: 0 10px; letter-spacing: 0.05em; }
 
/* ══════════════════════════════════════════
   WINNERS
══════════════════════════════════════════ */
#winners { background: var(--navy-mid); }
.winners-grid {
  max-width: 1200px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.winner-card { position: relative; overflow: hidden; cursor: default; background: var(--navy-light); }
.winner-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; transition: transform 0.5s ease; filter: grayscale(20%);
}
.winner-card:hover .winner-img { transform: scale(1.06); filter: grayscale(0%); }
.winner-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.97) 40%, rgba(10,14,26,0.35) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.7rem 1.4rem; transform: translateY(40px); opacity: 0.7;
  transition: transform 0.4s ease, opacity 0.4s;
}
.winner-card:hover .winner-hover { transform: translateY(0); opacity: 1; }
.winner-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.winner-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.winner-role { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 300; }
.winner-desc {
  font-size: 0.72rem; color: rgb(255, 208, 0); margin-top: 0.9rem;
  line-height: 1.7; font-weight: 300; border-top: 1px solid var(--border);
  padding-top: 0.8rem; transform: translateY(10px); opacity: 0;
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}
.winner-card:hover .winner-desc { transform: translateY(0); opacity: 1; }
.btn-more {
  padding: 10px 25px; font-size: 16px;
  background-color: var(--gold-light); color: #000000;
  border: none; border-radius: 8px; cursor: pointer;
}
.btn-more:hover { opacity: 0.85; }
 
/* ══════════════════════════════════════════
   NEWSLETTER (commented out but styles kept)
══════════════════════════════════════════ */
#newsletter {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 6rem 5%; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-form { display: flex; margin-top: 2.5rem; border: 1px solid var(--border); }
.newsletter-form input {
  flex: 1; padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.04); border: none; outline: none;
  color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; font-weight: 300;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 1rem 2rem; background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.3s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
 
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: #050810; padding: 5rem 5% 2.5rem; }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; max-width: 280px; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.contact-item { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.78rem; color: var(--text-muted); font-weight: 300; margin-bottom: 0.9rem; }
.contact-item span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); font-weight: 300; }
.footer-bottom span { color: var(--gold); }
 
/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(-8px); }
}
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .winners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 5%; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .event-banner { flex-direction: column; padding: 2rem; }
  .event-divider { display: none; }
  .event-content { flex-direction: column; text-align: center; }
  .event-divider { width: 80%; height: 1px; }
  .event-date-block, .event-venue { width: 100%; }
  .apply-btn { width: 100%; text-align: center; }
  .event-image { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .winners-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 576px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery .gallery-item img { height: 220px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .winners-grid { grid-template-columns: 1fr; }
  .highlights-cards { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .event-image { height: 150px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .section-title { font-size: 1.8rem; }
  .apply-btn { padding: 10px 18px; font-size: 14px; }
}