/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Prata&family=Inter:wght@300;400;600&family=DM+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* add cisi style */
footer#footerWrapper {
  display: none;
}

/* --- 1. VARIABLES & RESET --- */
:root {
  --bg-void: #080808;
  --gold-antique: #c5a059;
  --gold-highlight: #e6c785;
  --text-white: #e0e0e0;
  --text-muted: #999999;
  --glass-bg: rgba(20, 20, 20, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-void);
  color: var(--text-white);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}


/* --- 2. LAYOUT STRUCTURE --- */
.main-wrapper {
  display: grid;
  grid-template-columns: 1fr 100px;
  min-height: 100vh;
}

.content-area {
  width: 100%;
  /* width: 100vw; */
}

/* Sticky Right Sidebar */
.sidebar-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  z-index: 200;
}

.nav-link {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin: 20px 0;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--gold-antique);
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
  transform: rotate(180deg) scale(1.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold-antique);
  border-radius: 50%;
}

/* --- 3. HERO SECTION (FULL SCREEN) --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* FULL BACKGROUND VIDEO WRAPPER */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Filter to make video match theme */
  /* filter: grayscale(100%) contrast(1.1) brightness(0.6);  */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, #080808 100%);
  z-index: 1;
}

/* --- THE GLASSMORPHISM BLOCK --- */
.glass-panel {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1400px;
  min-height: 600px;
  padding: 40px;

  /* Glass Effect */
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin: 20px;
  width: calc(100% - 40px);

  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-col-left {
  text-align: left;
  padding-right: 40px;
  z-index: 2;
}

.hero-col-center {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Subtler grid lines inside the glass */
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-col-right {
  padding-left: 40px;
  text-align: left;
  z-index: 2;
}

/* --- 4. TYPOGRAPHY & BUTTONS --- */
.big-gothic {
  /* font-family: 'UnifrakturMaguntia', cursive; */
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  color: var(--text-white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 1);
  font-weight: 500;
}

.title-prefix {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-antique);
  display: block;
  margin-bottom: 15px;
  opacity: 0.8;
}

.main-title {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.title-line {
  font-weight: 400;
  color: #fff;
  display: block;
}

.awards-line {
  font-size: clamp(3.5rem, 8.5vw, 6.2rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.ceremony-line {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  line-height: 0.9;
}

.year-display {
  font-size: clamp(5rem, 13vw, 10.5rem);
  font-weight: 400;
  color: #fff;
  display: block;
  margin-top: 5px;
  letter-spacing: -5px;
}

.sub-gothic {
  font-family: "UnifrakturMaguntia", cursive;
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.accent-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-antique);
  display: block;
  margin-bottom: 30px;
  font-weight: 600;
}

.section-title {
  margin-bottom: 20px;
  line-height: 1.2;
}

p.description {
  color: #ccc;
  /* font-size: 0.9rem; 
            line-height: 1.8; */
  max-width: 350px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.formal {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.7), 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid var(--gold-antique);
  color: var(--gold-antique);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.3);
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.btn:hover {
  background: var(--gold-antique);
  color: #000;
}

#faqBtn:hover {
  background: #999 !important;
  color: #000 !important;
}

/* --- 5. THE CENTER TROPHY --- */
.trophy-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trophy-img {
  max-height: 90%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.8));
  animation: floatTrophy 8s ease-in-out infinite;
}

.shard {
  position: absolute;
  background: linear-gradient(135deg, var(--gold-antique), #5c4618);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.8;
  animation: orbitShard 12s linear infinite;
}

.s1 {
  width: 15px;
  height: 20px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.s2 {
  width: 10px;
  height: 10px;
  bottom: 30%;
  right: 30%;
  animation-delay: -4s;
}

.s3 {
  width: 20px;
  height: 30px;
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}

/* The glow is now contained inside the glass block */
.center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
}

@keyframes floatTrophy {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes orbitShard {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-50px) rotate(360deg);
    opacity: 0.5;
  }
}

/* --- 6. CONTENT SECTIONS --- */
.section {
  padding: 100px 5vw;
  /* border-bottom: 1px solid rgba(255,255,255,0.05); */
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(197, 160, 89, 0.05);
  /* Ensure sections have bg color over fixed background if needed */
  /* Re-add grid pattern for non-hero sections */
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.4s;
  border: 1px solid #222;
}

.gallery-grid img:hover {
  filter: grayscale(0%);
  border-color: var(--gold-antique);
}

@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    display: none;
  }

  .glass-panel {
    width: 95%;
    height: auto;
    padding: 20px;
    margin: 20px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-col-left,
  .hero-col-right {
    text-align: center;
    padding: 0;
  }

  .hero-col-left {
    order: 1;
  }

  .hero-col-center {
    order: 2;
    height: 300px;
    border: none;
  }

  .hero-col-right {
    order: 3;
  }
}

.cisiLogoFooter {
  z-index: 1500;
  width: 150px;
  padding-bottom: 20px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.numbering {
  font-size: 0.75rem;
}

/* --- 7. VENUE & MAP --- */
.venue-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.venue-details-card {
  /* background: rgba(10,10,10,0.6);  */
  background: #111;
  border: 1px solid #222;
  padding: 40px;
  backdrop-filter: blur(5px);
  height: 500px;
}

/* MAP CONTAINER */
.map-container {
  width: 100%;
  height: 300px;
  margin: 30px 0;
  border: 1px solid var(--gold-dark);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

/* The Dark Mode Map */
iframe.dark-map {
  width: 100%;
  height: 100%;
  border: 0;
  /* Inverts colors to make map dark, then desaturates to keep it monochrome */
  filter: grayscale(100%) invert(92%) contrast(0.83);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.map-container:hover iframe.dark-map {
  opacity: 0.9;
}

/* THE GOLD LOCATION PIN */
.pin-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Translate -50% X to center, -100% Y so the bottom tip touches the center point */
  transform: translate(-50%, -100%);
  z-index: 10;
  pointer-events: none;
  /* Let clicks pass through to map */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SVG Pin Styling */
.gold-pin {
  width: 40px;
  height: 40px;
  fill: var(--gold-antique);
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.8));
  animation: bouncePin 2s infinite ease-in-out;
}

/* Pulse Animation on the "ground" */
.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  background: rgba(197, 160, 89, 0.6);
  border-radius: 50%;
  animation: pulseWave 2s infinite;
  z-index: -1;
}

@keyframes bouncePin {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseWave {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translateX(-50%) scale(5);
    opacity: 0;
  }
}

.station-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.station-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #080808;
  border: 1px solid #333;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: #fff;
  transition: 0.3s;
}

.station-badge:hover {
  border-color: var(--gold-antique);
  transform: translateY(-2px);
}

.station-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: transparent;
  position: relative;
}

.station-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  right: -6px;
  height: 4px;
  background: var(--gold-antique);
  transform: translateY(-50%);
}

/* --- 8. SLIDER & GALLERY --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid #333;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(80%) contrast(1.1);  */
  transition: 0.5s;
}

.slider-wrapper:hover .slide img {
  filter: grayscale(0%);
}

.slider-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000;
  display: flex;
  border-top: 1px solid var(--gold-antique);
  border-left: 1px solid var(--gold-antique);
}

.slider-btn {
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  color: var(--gold-antique);
  font-size: 1.5rem;
  cursor: pointer;
  border-right: 1px solid #333;
  transition: 0.2s;
}

.slider-btn:last-child {
  border-right: none;
}

.slider-btn:hover {
  background: var(--gold-antique);
  color: #000;
}

.video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--gold-antique);
  background: #000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1400px;
  margin: 40px auto 0;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  border: 1px solid #222;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s;
}

.gallery-item:hover img {
  filter: grayscale(0%) scale(1.05);
}

/* --- 9. FAQ & INFO BOXES --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  /* Prevents stretching */
}

details {
  background: rgba(20, 20, 20, 0.6);
  margin-bottom: 10px;
  padding: 20px;
  border-left: 2px solid transparent;
  transition: 0.3s;
}

details[open] {
  border-left: 2px solid var(--gold-antique);
  background: rgba(197, 160, 89, 0.05);
}

details p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

summary {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.info-box {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.4) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  transition: 0.3s;
}

.info-box:hover {
  border-color: var(--gold-antique);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    display: none;
  }

  .hero-section {
    padding: 80px 0;
    height: auto;
    min-height: 100vh;
  }

  .glass-pane {
    width: 95%;
    margin: 20px auto;
    padding: 30px 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .awards-line {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    letter-spacing: 0.025em;
  }

  .ceremony-line {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .main-title .year-display {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }
}

#venue p.description {
  font-size: 15px;
  width: 85%;
  max-width: unset;
}

#venue .section-title,
#info .section-title,
#video .section-title {
  font-size: 3rem;
}

/* --- 7. POLAROID SCATTER GALLERY (Gold Brick Wall) --- */

/* Specific Background for this section */
#gallery {
  /* Using a Brick Wall texture from Unsplash + Gold/Black Overlay */
  background: linear-gradient(rgb(0 0 0 / 65%), rgb(5 5 5 / 92%)),
    url(/cisiweb2/image/awards26/wall.jpg);
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  box-shadow: inset 0 0 150px #000;
}

.section#gallery {
  padding: 150px 5vw;
}

.scatter-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-title-block {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  background: radial-gradient(circle, rgba(5, 5, 5, 0.9) 0%, transparent 80%);
  padding: 60px;
}

.polaroid-item {
  position: absolute;
  width: 260px;
  background: #fdfdfd;
  padding: 12px 12px 50px 12px;
  /* Deeper shadow to simulate being "on a wall" */
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.7);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  z-index: 1;
}

/* THE "SCOTCH TAPE" EFFECT */
.polaroid-item::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 49%;
  transform: translateX(-50%) rotate(-1deg);
  width: 35px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.25);
  /* Semi-transparent white */
  backdrop-filter: blur(2px);
  /* Blurs what's under the tape */
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.polaroid-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  border: 1px solid #ddd;
  display: block;
  transition: filter 0.3s;
}

/* HANDWRITTEN CAPTION FONT */
.polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Caveat", cursive;
  /* Handwritten font */
  color: #222;
  font-size: 1.6rem;
  /* Larger for readability */
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1;
}

/* Active/Hover: Color only, NO rotation/scale change */
.polaroid-item.auto-active {
  z-index: 50;
  box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.8);
}

.polaroid-item.auto-active img {
  filter: grayscale(0%);
}

.polaroid-item:hover {
  z-index: 100;
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.9);
}

.polaroid-item:hover img {
  filter: grayscale(0%);
}

/* Random Positions */
/* --- 6 POSITIONS (3 Top, 3 Bottom) --- */
/* Top Left */
.pos-1 {
  top: 3%;
  left: -1%;
  transform: rotate(-6deg);
}

/* Top Center */
.pos-2 {
  top: -34px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
}

/* Top Right */
.pos-3 {
  top: 4%;
  right: -4%;
  transform: rotate(6deg);
}

/* Bottom Left */
.pos-4 {
  bottom: 4%;
  left: 5%;
  transform: rotate(4deg);
}

/* Bottom Center */
.pos-5 {
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
}

/* Bottom Right */
.pos-6 {
  bottom: 10%;
  right: 5%;
  transform: rotate(-5deg);
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border: 2px solid var(--gold-antique);
  box-shadow: 0 0 50px rgba(197, 160, 89, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--gold-antique);
  font-size: 3rem;
  cursor: pointer;
  font-family: sans-serif;
  line-height: 0.5;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.info-box {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.4) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  transition: 0.3s;
}

.info-box:hover {
  border-color: var(--gold-antique);
  transform: translateY(-5px);
}

.accent-text.date{
margin-bottom: 10px;
}

@keyframes floatTrophy {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.trophy-wrapper img {
  animation: floatTrophy 8s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    display: none;
  }

  .hero-grid,
  .venue-wrapper,
  .split-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .hero-col-center {
    width: 100%;
    height: 300px;
    border: none;
    padding: 20px 0;
  }

  .hero-col-left,
  .hero-col-right {
    text-align: center;
  }

  .slider-wrapper {
    height: 400px;
  }

  .awards-line {
    font-size: 3.2rem;
    letter-spacing: 0.025em;
  }

  .ceremony-line {
    font-size: 2.4rem;
  }

  .main-title .year-display {
    font-size: 5.2rem;
  }

  .scatter-wrapper {
    height: auto;
    flex-direction: column;
    padding-top: 50px;
  }

  .center-title-block {
    margin-bottom: 40px;
  }

  .polaroid-item {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: rotate(0deg) !important;
    margin-bottom: 30px;
    width: 90%;
    max-width: 350px;
  }

  /* Hide tape on mobile grid for cleaner look, or keep it */
  .polaroid-item::before {
    display: none;
  }

  .pos-5 {
    margin-left: 0;
    opacity: 1;
  }
}

#info .info-box p.description {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

#fullscreenContainer {
  display: none;
}

summary span {
  color: #c5a04c;
}

#intro .hero-col-left .accent-text {
  font-size: 1.7rem;
}

/* --- 6. VIDEO HIGHLIGHTS SECTION (New) --- */
#video {
  text-align: center;
  /* background-color: #080808; */
}

.video-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--gold-antique);
  box-shadow: 0 0 50px rgba(197, 160, 89, 0.1);
  position: relative;
  /* padding-bottom: 56.25%;  */
  /* 16:9 Aspect Ratio */
  /* height: 0; */
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1500px) {
  .awards-line {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  }

  .ceremony-line {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .main-title .year-display {
    font-size: clamp(4rem, 11vw, 7.5rem);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    width: 100%;
    height: 100%;
    align-items: center;
  }

  .venue-details-card,
  .slider-wrapper {
    height: 570px;
  }
}

@media (max-width: 1280px) {
  .main-title {
    text-align: center;
  }

  .awards-line {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
  }

  .ceremony-line {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  }

  .main-title .year-display {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main-title {
    font-family: "Poppins", sans-serif;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 40px 0;
    height: auto;
    min-height: 100vh;
  }

  .glass-pane {
    margin-top: 100px;
    margin-bottom: 20px;
    padding: 25px 15px;
    width: 95%;
  }

  .awards-line {
    font-size: 2.4rem;
  }

  .ceremony-line {
    font-size: 1.8rem;
  }

  .main-title .year-display {
    font-size: clamp(3.5rem, 17vw, 4.8rem);
    letter-spacing: -2px;
  }

  .venue-details-card {
    height: auto;
    padding: 30px 20px;
  }

  .faq-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 180px;
  }
  #intro .cisiLogoFooter {
    width: 100px;
  }
  .content-area {
  width: 100vw;
}
.venue-details-card{
    text-align: center;
}
#venue p.description{
    width: 100%;

}
.hero-grid, .venue-wrapper, .split-grid{
    text-align: center;
}
.station-grid {
    flex-direction: column;
    align-items: center;
}
.hero-col-right div{
    justify-content: center;
}
}
