/* Root variables and global styles */
:root {
  --clr-primary: #35b5e5;
  --clr-secondary: #66d695;
  --clr-accent: #0aa2a8;
  --clr-dark: #05142e;
  --clr-light: #f8faff;
  --clr-text: #0a1f33;
  --radius: 1rem;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: var(--clr-light);
  color: var(--clr-text);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
}

.hero-title, .section-title {
    background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1 {
  font-size: clamp(3.6rem, 6vw + 1rem, 7rem);
}

h2 {
  font-size: clamp(2.8rem, 3vw + 1rem, 5rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(2rem, 2.2vw + 0.8rem, 3.2rem);
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.section-description {
  max-width: 70ch;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(1.6rem, 1.5vw + 0.8rem, 2.2rem);
}

.inspirational-text {
  font-size: clamp(1.8rem, 1.8vw + 0.8rem, 2.4rem);
  font-style: italic;
  margin: 2rem auto 4rem;
  line-height: 1.6;
  color: var(--clr-dark);
  max-width: 60ch;
}

/* Container */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.4rem 2.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn.primary {
  background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #ffffff;
}
.btn.primary:hover {
  filter: brightness(1.1);
}

.btn.outline {
  background-color: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
}
.btn.outline:hover {
  background-color: var(--clr-primary);
  color: #ffffff;
}

.btn.large {
  font-size: 2rem;
  padding: 1.6rem 3rem;
}

.btn.small {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 5rem;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--clr-dark);
  font-weight: 500;
  font-size: 1.6rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--clr-primary);
}

.donate-btn {
  margin-left: 2rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-toggle .bar {
  width: 2.5rem;
  height: 0.3rem;
  background-color: var(--clr-dark);
  border-radius: 1rem;
}

/* Navbar re-order for tablets & mobiles */
@media (max-width: 992px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .btn-small.gala-cta {
    display: none;
  }
  /* Responsive logo size */
  .logo img { height: clamp(3.2rem, 6vw, 4.8rem); max-width: 48vw; width: auto; }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: whitesmoke;
  color: var(--clr-text);
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(4rem, 5vw + 2rem, 7rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.8rem, 2vw + 0.8rem, 2.8rem);
  margin-bottom: 3rem;
  max-width: 80%;
  margin-inline: auto;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.hero-buttons .btn {
  font-size: 2.2rem;
}

.hero-note {
    position: absolute;
    bottom: 10rem;
    font-size: 1.4rem;
    max-width: 100ch;
    left: 50%;
    transform: translateX(-50%);
    text-align: center; /* centered text */
}

/* Ensure hero-note keeps centered X translation while animating */
.hero-note.animate {
  transform: translate(-50%, 30px); /* preserve X center and add Y offset */
}
.hero-note.animate.is-visible {
  transform: translate(-50%, 0);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator span {
  display: block;
  width: 0.8rem;
  height: 3rem;
  border-radius: 0.4rem;
  border: 2px solid var(--clr-dark);
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--clr-dark);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% {
    top: 0.5rem;
    opacity: 1;
  }
  50% {
    top: 1.5rem;
    opacity: 0;
  }
  100% {
    top: 0.5rem;
    opacity: 1;
  }
}

/* Section Layout */
.section {
  padding: 10rem 0;
}

/* Gala Section */
.gala-section {
  background-color: var(--clr-light);
}
.gala-header {
  text-align: center;
  margin-bottom: 5rem;
}
.gala-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.gala-info h2 {
  margin-bottom: 2rem;
}
.gala-info .event-details,
.gala-info .gala-includes {
  list-style: none;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.7;
}
.gala-info li {
  margin-bottom: 1rem;
}
.gala-info h3 {
  margin-top: 3rem;
  font-size: 2.4rem;
}
.gala-images {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gala-images img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

/* About Us Section */
.about-us-section {
  background-color: var(--clr-light);
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

.founder-card, .video-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-card .founder-image {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  flex-shrink: 0;
}

.founder-card .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h3, .video-card h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-member-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.team-member-card h4 {
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2.5rem;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hide desktop thumbnail on mobile/tablet */
@media (max-width: 992px) {
  .video-thumbnail-desktop {
    display: none;
  }
}

/* Video Modal Trigger - Desktop Only */
@media (min-width: 993px) {
  .video-wrapper iframe.video-iframe-mobile {
    display: none;
  }

  .video-thumbnail-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #000;
  }

  .video-thumbnail-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .video-thumbnail-desktop:hover img {
    transform: scale(1.05);
  }

  .play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
  }

  .video-thumbnail-desktop:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .play-button-overlay svg {
    width: 80px;
    height: 80px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
  }

  .video-thumbnail-desktop:hover .play-button-overlay svg {
    transform: scale(1.1);
  }
}

/* Modal Styles (Applies globally, but triggered by desktop-only JS) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 20, 46, 0.85); /* --clr-dark with alpha */
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: transparent;
  width: 90%;
  max-width: 960px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -45px;
  right: -5px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}
.modal-close:hover {
    transform: scale(1.1);
}

#modal-video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

#modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Raffle Modal Specific Content Styles */
#raffle-modal-content {
  background-color: var(--clr-light); /* Match section background */
  padding: 4rem;
  border-radius: var(--radius);
  max-height: 90vh; /* Prevent it from being too tall */
  overflow-y: auto; /* Allow scrolling if content overflows */
}

@media (max-width: 992px) {
  #raffle-modal-content {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  #raffle-modal-content .raffle-grid-new {
    display: block; /* Stack on mobile */
  }
  #raffle-modal-content {
    padding: 1.5rem;
  }
}

/* Raffle Modal Specific Layout Adjustments */
#raffle-modal .modal-content {
  max-width: 1100px; /* Make modal wider */
}

#raffle-modal #raffle-modal-content {
  padding: 3rem; /* Reduce padding to make it less tall */
}

#raffle-modal .raffle-title {
  font-size: clamp(2.8rem, 4vw + 1rem, 5rem); /* Slightly smaller title */
  margin-bottom: 2rem;
}

#raffle-modal .raffle-info-card,
#raffle-modal .raffle-gallery-card {
  padding: 3rem; /* Reduce card padding */
}

#raffle-modal .main-car img {
  transform: translateY(0); /* Remove the negative transform to reduce height */
}

/* Raffle Section */
.raffle-section {
  background: var(--clr-light);
}

/* Title overrides for raffle */
.raffle-title {
  text-align: center;
  font-size: clamp(3.2rem, 4vw + 1rem, 6rem);
  margin-bottom: 2.4rem;
}

.raffle-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: stretch;
}

.raffle-info-card,
.raffle-gallery-card {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* Left card: How it Works */
.info-card-title {
  text-align: center;
  color: var(--clr-secondary);
  font-size: clamp(2.2rem, 2vw + 1rem, 3.2rem);
  margin-bottom: 1.2rem;
}

.raffle-info-card {
  align-items: center;
  gap: 2.4rem;
  background: linear-gradient(180deg, rgba(53,181,229,0.05), rgba(102,214,149,0.05));
}

.raffle-info-card .raffle-points {
  list-style: none;
  margin: 0.5rem 0 2rem;
  font-size: clamp(1.6rem, 1.2vw + 0.8rem, 1.9rem);
  line-height: 1.8;
  padding-left: 0;
  align-self: stretch;
}

.raffle-info-card .raffle-points li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.8rem;
}

.raffle-info-card .raffle-points li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--clr-secondary);
  font-size: 2.2rem;
}

/* Big CTA button */
.raffle-cta {
  width: 100%;
  text-align: center;
  padding: clamp(1.6rem, 2vw, 3rem) clamp(2rem, 3vw, 4rem);
  font-weight: 800;
  font-size: clamp(2.2rem, 2.5vw + 1rem, 4rem);
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  letter-spacing: 0.02em;
}
.raffle-cta:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* Donation note */
.raffle-donation-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--clr-primary);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

/* Right card: gallery */
.raffle-gallery-card { justify-content: space-between; }
.raffle-gallery-card .main-car img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  transform: translateY(-2rem);
}

/* Center Mercedes image inside its card */
.raffle-gallery-card .main-car {
  display: flex;
  justify-content: center;
  align-items: center;
}
.raffle-gallery-card .main-car img {
  display: block;
  margin: 0 auto;
}

.raffle-gallery-card .thumbnail-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  justify-content: center;
}

.raffle-gallery-card .thumbnail-row img {
  width: 9rem;
  height: 6rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  cursor: pointer;
}
.raffle-gallery-card .thumbnail-row img:hover { transform: scale(1.05); }

.raffle-gallery-card .raffle-caption {
  font-size: 1.2rem;
  color: #8aa0b2;
  text-align: center;
  margin-top: 1.2rem;
}

/* Footer */
.footer {
  position: relative;
  background-color: var(--clr-dark);
  color: #c9d6e1;
  padding: 6rem 0 3rem;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 8px;
  background-image: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  opacity: 0.9;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3.2rem;
  margin-bottom: 2.4rem;
  justify-items: start;
  align-items: start;
}
.footer-logo {
  height: 6.4rem;
  width: auto;
  margin-bottom: 1.6rem;
}
.footer-column {
  text-align: left;
}
.footer-column h4 {
  color: var(--clr-secondary);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 0.9rem;
}
.footer-column a {
  color: #cfe0ea;
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}
.footer-column a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(53, 181, 229, 0.35);
}
/* Override inline right alignment in the last column */
.footer .footer-content .footer-column {
  align-items: flex-start !important;
}
/* Ensure CTA button inside footer columns is left-aligned */
.footer-column .btn-small.gala-cta {
  align-self: flex-start !important;
}
.footer-bottom {
  text-align: center;
  font-size: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.8rem;
}
.footer .btn {
  margin-top: 1rem;
  padding: 1rem 1.8rem;
  font-size: 1.4rem;
}
/* Add spacing below the 'Site Developed by Denzo Studios Pro 2025' text */
.footer-column p:last-child {
  margin-top: 1.6rem;
  font-size: 1.2rem; /* Reduced font size */
}
.footer-column p a {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer { padding: 4.5rem 0 2.4rem; }
  .footer-content { gap: 2.2rem; }
  .footer-logo { height: 5.4rem; }
}

/* Media Queries */
@media (max-width: 992px) {
  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .navbar .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .donate-btn {
    display: none;
  }
  /* Grids become single-column */
  .gala-body,
  .raffle-grid-new,
  .about-us-grid {
    grid-template-columns: 1fr;
  }
  .raffle-grid-new {
    gap: 2.2rem;
  }
  .gala-images {
    grid-template-areas:
      'top-img'
      'bottom-img'
      'map-img';
  }
  /* Raffle: ensure comfortable spacing and prevent image overflow */
  .raffle-info-card,
  .raffle-gallery-card { padding: 2rem; }
  .raffle-cta { font-size: clamp(1.8rem, 3.5vw, 2.4rem); padding: 1.2rem 1.6rem; }
  .raffle-gallery-card .main-car img { transform: none; max-height: clamp(200px, 40vh, 360px); }

  /* Center content in specific cards on tablets/mobiles */
  .founder-card {
    text-align: center;
  }
  .gala-details-card {
    align-items: center;
  }
  .gala-details-header {
    width: 100%;
    justify-content: center;
  }
  .gala-details-info, .gala-includes-card {
    text-align: center;
    width: 100%;
  }
  .gala-details-divider {
    width: 90%;
  }
}

@media (max-width: 768px) {
  /* Hero: make note flow and button fully responsive */
  .hero-note {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 3rem auto 0; /* moved up a bit from 1.6rem */
    padding: 0 1.6rem;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    max-width: 60ch;
    text-align: center;
    line-height: 1.35; /* ensure compact spacing without overlap */
  }
  .hero-content .gala-cta {
    width: auto;
    max-width: 85%;
    display: inline-block;
    margin: 0 auto;
  }
}

/* Extra-tight mobile adjustments */
@media (max-width: 600px) {
  /* Ensure thumbnails are compact on small phones */
  .raffle-gallery-card .thumbnail-row img { width: 6rem; height: 4rem; }
  /* Slightly reduce inner paddings */
  .raffle-info-card, .raffle-gallery-card { padding: 1.6rem; }
  /* Make CTA narrower */
  .raffle-cta { font-size: clamp(1.6rem, 4vw, 2rem); padding: 1rem 1.4rem; }
  /* Text sizing inside list */
  .raffle-info-card .raffle-points { font-size: clamp(1.5rem, 3.5vw, 1.7rem); }
  .raffle-info-card .raffle-points li { padding-left: 0; text-align: center; }
  /* Hide checkmarks on mobile */
  .raffle-info-card .raffle-points li::before {
    display: none;
  }
  /* Make Mercedes card a bit taller only on mobiles */
  .raffle-gallery-card {
    min-height: clamp(500px, 60vh, 640px);
  }
  /* Team Section: single card list on mobile */
  .team-grid {
    display: block; /* Override grid display */
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .team-member-card {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .team-member-card:last-child { margin-bottom: 0; }
  .team-member-card:hover {
    transform: none;
  }

  /* Gala Details: stack labels and values on mobile */
  .gala-details-info div strong {
    display: block;
  }
}
@media (max-width: 480px) {
  /* Even tighter for very narrow screens */
  .raffle-info-card, .raffle-gallery-card { padding: 1.2rem; }
  .raffle-cta { font-size: clamp(1.5rem, 5vw, 1.8rem); padding: 0.9rem 1.2rem; }
  .raffle-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  /* Hero button and note */
  .hero-content .gala-cta { width: 100%; max-width: 100%; font-size: clamp(1.4rem, 5vw, 1.8rem); padding: 1rem 1.2rem; }
  .hero_note { font-size: clamp(1.1rem, 3.2vw, 1.3rem); padding: 0 1.2rem; margin-top: 1.2rem; }
}

/* Hero height reduction on mobile phones only */
@media (max-width: 600px) {
  .hero-section { min-height: 80vh; padding-bottom: 8rem; }
}
@media (max-width: 480px) {
  .hero-section { min-height: 72vh; }
}

/* Hero Buy Tickets button responsiveness (scoped) */
.hero-content .gala-cta {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  padding: clamp(1.2rem, 1.4vw, 1.8rem) clamp(1.6rem, 2.8vw, 3rem);
}

/* Animation setup */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-in {
  transition-delay: 0.2s;
}
.animate.slide-in-left {
  transform: translateX(-30px);
  transition-delay: 0.3s;
}
.animate.slide-in-right {
  transform: translateX(30px);
  transition-delay: 0.3s;
}
.animate.is-visible.slide-in-left,
.animate.is-visible.slide-in-right {
  transform: translateX(0);
}
.animate.zoom-in {
  transform: scale(0.9);
  transition-delay: 0.4s;
}
.animate.is-visible.zoom-in {
  transform: scale(1);
}
.animate.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate.is-visible.stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.animate.is-visible.stagger-children > *:nth-child(1) {
  transition-delay: 0.1s;
}
.animate.is-visible.stagger-children > *:nth-child(2) {
  transition-delay: 0.2s;
}
.animate.is-visible.stagger-children > *:nth-child(3) {
  transition-delay: 0.3s;
}
.animate.is-visible.stagger-children > *:nth-child(4) {
  transition-delay: 0.4s;
}
.animate.is-visible.stagger-children > *:nth-child(5) {
  transition-delay: 0.5s;
}
.animate.is-visible.stagger-children > *:nth-child(6) {
  transition-delay: 0.6s;
}
.animate.is-visible.stagger-children > *:nth-child(7) {
  transition-delay: 0.7s;
}
.animate.is-visible.stagger-children > *:nth-child(8) {
  transition-delay: 0.8s;
}
.animate.is-visible.stagger-children > *:nth-child(9) {
  transition-delay: 0.9s;
}
.animate.is-visible.stagger-children > *:nth-child(10) {
  transition-delay: 1s;
}
.animate.is-visible.stagger-children > *:nth-child(11) {
  transition-delay: 1.1s;
}
.animate.is-visible.stagger-children > *:nth-child(12) {
  transition-delay: 1.2s;
}
.animate.is-visible.stagger-children > *:nth-child(13) {
  transition-delay: 1.3s;
}
.animate.is-visible.stagger-children > *:nth-child(14) {
  transition-delay: 1.4s;
}
.animate.is-visible.stagger-children > *:nth-child(15) {
  transition-delay: 1.5s;
}
.animate.is-visible.stagger-children > *:nth-child(16) {
  transition-delay: 1.6s;
}
.animate.is-visible.stagger-children > *:nth-child(17) {
  transition-delay: 1.7s;
}
.animate.is-visible.stagger-children > *:nth-child(18) {
  transition-delay: 1.8s;
}
.animate.is-visible.stagger-children > *:nth-child(19) {
  transition-delay: 1.9s;
}
.animate.is-visible.stagger-children > *:nth-child(20) {
  transition-delay: 2s;
}
.animate.is-visible.stagger-children > *:nth-child(21) {
  transition-delay: 2.1s;
}
.animate.is-visible.stagger-children > *:nth-child(22) {
  transition-delay: 2.2s;
}
.animate.is-visible.stagger-children > *:nth-child(23) {
  transition-delay: 2.3s;
}
.animate.is-visible.stagger-children > *:nth-child(24) {
  transition-delay: 2.4s;
}
.animate.is-visible.stagger-children > *:nth-child(25) {
  transition-delay: 2.5s;
}
.animate.is-visible.stagger-children > *:nth-child(26) {
  transition-delay: 2.6s;
}
.animate.is-visible.stagger-children > *:nth-child(27) {
  transition-delay: 2.7s;
}
.animate.is-visible.stagger-children > *:nth-child(28) {
  transition-delay: 2.8s;
}
.animate.is-visible.stagger-children > *:nth-child(29) {
  transition-delay: 2.9s;
}
.animate.is-visible.stagger-children > *:nth-child(30) {
  transition-delay: 3s;
}
.animate.is-visible.stagger-children > *:nth-child(31) {
  transition-delay: 3.1s;
}
.animate.is-visible.stagger-children > *:nth-child(32) {
  transition-delay: 3.2s;
}
.animate.is-visible.stagger-children > *:nth-child(33) {
  transition-delay: 3.3s;
}
.animate.is-visible.stagger-children > *:nth-child(34) {
  transition-delay: 3.4s;
}
.animate.is-visible.stagger-children > *:nth-child(35) {
  transition-delay: 3.5s;
}
.animate.is-visible.stagger-children > *:nth-child(36) {
  transition-delay: 3.6s;
}
.animate.is-visible.stagger-children > *:nth-child(37) {
  transition-delay: 3.7s;
}
.animate.is-visible.stagger-children > *:nth-child(38) {
  transition-delay: 3.8s;
}
.animate.is-visible.stagger-children > *:nth-child(39) {
  transition-delay: 3.9s;
}
.animate.is-visible.stagger-children > *:nth-child(40) {
  transition-delay: 4s;
}
.animate.is-visible.stagger-children > *:nth-child(41) {
  transition-delay: 4.1s;
}
.animate.is-visible.stagger-children > *:nth-child(42) {
  transition-delay: 4.2s;
}
.animate.is-visible.stagger-children > *:nth-child(43) {
  transition-delay: 4.3s;
}
.animate.is-visible.stagger-children > *:nth-child(44) {
  transition-delay: 4.4s;
}
.animate.is-visible.stagger-children > *:nth-child(45) {
  transition-delay: 4.5s;
}
.animate.is-visible.stagger-children > *:nth-child(46) {
  transition-delay: 4.6s;
}
.animate.is-visible.stagger-children > *:nth-child(47) {
  transition-delay: 4.7s;
}
.animate.is-visible.stagger-children > *:nth-child(48) {
  transition-delay: 4.8s;
}
.animate.is-visible.stagger-children > *:nth-child(49) {
  transition-delay: 4.9s;
}
.animate.is-visible.stagger-children > *:nth-child(50) {
  transition-delay: 5s;
}
.animate.is-visible.stagger-children > *:nth-child(51) {
  transition-delay: 5.1s;
}
.animate.is-visible.stagger-children > *:nth-child(52) {
  transition-delay: 5.2s;
}
.animate.is-visible.stagger-children > *:nth-child(53) {
  transition-delay: 5.3s;
}
.animate.is-visible.stagger-children > *:nth-child(54) {
  transition-delay: 5.4s;
}
.animate.is-visible.stagger-children > *:nth-child(55) {
  transition-delay: 5.5s;
}
.animate.is-visible.stagger-children > *:nth-child(56) {
  transition-delay: 5.6s;
}
.animate.is-visible.stagger-children > *:nth-child(57) {
  transition-delay: 5.7s;
}
.animate.is-visible.stagger-children > *:nth-child(58) {
  transition-delay: 5.8s;
}
.animate.is-visible.stagger-children > *:nth-child(59) {
  transition-delay: 5.9s;
}
.animate.is-visible.stagger-children > *:nth-child(60) {
  transition-delay: 6s;
}
.animate.is-visible.stagger-children > *:nth-child(61) {
  transition-delay: 6.1s;
}
.animate.is-visible.stagger-children > *:nth-child(62) {
  transition-delay: 6.2s;
}
.animate.is-visible.stagger-children > *:nth-child(63) {
  transition-delay: 6.3s;
}
.animate.is-visible.stagger-children > *:nth-child(64) {
  transition-delay: 6.4s;
}
.animate.is-visible.stagger-children > *:nth-child(65) {
  transition-delay: 6.5s;
}
.animate.is-visible.stagger-children > *:nth-child(66) {
  transition-delay: 6.6s;
}
.animate.is-visible.stagger-children > *:nth-child(67) {
  transition-delay: 6.7s;
}
.animate.is-visible.stagger-children > *:nth-child(68) {
  transition-delay: 6.8s;
}
.animate.is-visible.stagger-children > *:nth-child(69) {
  transition-delay: 6.9s;
}
.animate.is-visible.stagger-children > *:nth-child(70) {
  transition-delay: 7s;
}
.animate.is-visible.stagger-children > *:nth-child(71) {
  transition-delay: 7.1s;
}
.animate.is-visible.stagger-children > *:nth-child(72) {
  transition-delay: 7.2s;
}
.animate.is-visible.stagger-children > *:nth-child(73) {
  transition-delay: 7.3s;
}
.animate.is-visible.stagger-children > *:nth-child(74) {
  transition-delay: 7.4s;
}
.animate.is-visible.stagger-children > *:nth-child(75) {
  transition-delay: 7.5s;
}
.animate.is-visible.stagger-children > *:nth-child(76) {
  transition-delay: 7.6s;
}
.animate.is-visible.stagger-children > *:nth-child(77) {
  transition-delay: 7.7s;
}
.animate.is-visible.stagger-children > *:nth-child(78) {
  transition-delay: 7.8s;
}
.animate.is-visible.stagger-children > *:nth-child(79) {
  transition-delay: 7.9s;
}
.animate.is-visible.stagger-children > *:nth-child(80) {
  transition-delay: 8s;
}
.animate.is-visible.stagger-children > *:nth-child(81) {
  transition-delay: 8.1s;
}
.animate.is-visible.stagger-children > *:nth-child(82) {
  transition-delay: 8.2s;
}
.animate.is-visible.stagger-children > *:nth-child(83) {
  transition-delay: 8.3s;
}
.animate.is-visible.stagger-children > *:nth-child(84) {
  transition-delay: 8.4s;
}
.animate.is-visible.stagger-children > *:nth-child(85) {
  transition-delay: 8.5s;
}
.animate.is-visible.stagger-children > *:nth-child(86) {
  transition-delay: 8.6s;
}
.animate.is-visible.stagger-children > *:nth-child(87) {
  transition-delay: 8.7s;
}
.animate.is-visible.stagger-children > *:nth-child(88) {
  transition-delay: 8.8s;
}
.animate.is-visible.stagger-children > *:nth-child(89) {
  transition-delay: 8.9s;
}
.animate.is-visible.stagger-children > *:nth-child(90) {
  transition-delay: 9s;
}
.animate.is-visible.stagger-children > *:nth-child(91) {
  transition-delay: 9.1s;
}
.animate.is-visible.stagger-children > *:nth-child(92) {
  transition-delay: 9.2s;
}
.animate.is-visible.stagger-children > *:nth-child(93) {
  transition-delay: 9.3s;
}
.animate.is-visible.stagger-children > *:nth-child(94) {
  transition-delay: 9.4s;
}
.animate.is-visible.stagger-children > *:nth-child(95) {
  transition-delay: 9.5s;
}
.animate.is-visible.stagger-children > *:nth-child(96) {
  transition-delay: 9.6s;
}
.animate.is-visible.stagger-children > *:nth-child(97) {
  transition-delay: 9.7s;
}
.animate.is-visible.stagger-children > *:nth-child(98) {
  transition-delay: 9.8s;
}
.animate.is-visible.stagger-children > *:nth-child(99) {
  transition-delay: 9.9s;
}
.animate.is-visible.stagger-children > *:nth-child(100) {
  transition-delay: 10s;
}

/* Gala Section Redesign */
.gala-title {
  text-align: center;
  font-size: clamp(3.2rem, 5vw + 1rem, 6rem);
  margin-bottom: 2.2rem;
  background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.gala-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  margin: 4rem 0 2.5rem 0;
}
.gala-details-card {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.gala-details-card { padding: 1.6rem 1.4rem 1.4rem; }
.gala-details-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.gala-details-icon {
  font-size: 2.8rem;
}
.gala-details-title {
  color: var(--clr-dark);
}
.gala-details-info {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.gala-details-link {
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 600;
}
.gala-details-divider {
  border: none;
  border-top: 2px solid #eaf2f7;
  margin: 1.6rem 0;
}
.gala-includes-card {
  background: #eaf8f4;
  border-radius: 1rem;
  padding: 0.8rem 1.2rem;
  margin-bottom: 2.2rem;
}
.gala-includes-card { padding: 0.7rem 1rem; }
.gala-includes-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.gala-includes-list {
  list-style: none;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}
.gala-includes-list li {
  margin-bottom: 0.5rem;
}
.gala-cta {
  width: 100%;
  text-align: center;
  padding: clamp(1.6rem, 2vw, 3rem) clamp(2rem, 3vw, 4rem);
  font-weight: 800;
  font-size: clamp(2.2rem, 2.5vw + 1rem, 3.2rem);
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  letter-spacing: 0.02em;
  margin-top: 1.4rem;
  display: block;
}
.gala-cta:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-small.gala-cta {
  width: auto;
  padding: 0.8rem 2.2rem;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 8px 20px rgba(53,181,229,0.08);
  font-weight: 700;
  border-radius: 999px;
  display: inline-block;
}
.navbar .btn-small.gala-cta {
  align-self: flex-end;
}
.footer-column .btn-small.gala-cta {
  margin-top: 1.2rem;
  align-self: flex-end;
}
.hero-content .gala-cta {
  max-width: 420px;
  margin: 0 auto;
}
.gala-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  aspect-ratio: 1 / 1;
}
.gala-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.2rem;
}
.gala-note {
  text-align: center;
  font-size: 1.5rem;
  color: var(--clr-dark);
  margin-top: 2.8rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .gala-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .gala-map-card { margin-top: 1.2rem; }
}
@media (max-width: 600px) {
  .gala-grid {
    display: flex;
    flex-direction: column;
  }
  .gala-map-card {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .move-mobile {
    order: 2;
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  /* Even tighter for very narrow screens */
  .raffle-info-card, .raffle-gallery-card { padding: 1.2rem; }
  .raffle-cta { font-size: clamp(1.5rem, 5vw, 1.8rem); padding: 0.9rem 1.2rem; }
  .raffle-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  /* Hero button and note */
  .hero-content .gala-cta { width: 100%; max-width: 100%; font-size: clamp(1.4rem, 5vw, 1.8rem); padding: 1rem 1.2rem; }
  .hero_note { font-size: clamp(1.1rem, 3.2vw, 1.3rem); padding: 0 1.2rem; margin-top: 1.2rem; }
}

/* Hero height reduction on mobile phones only */
@media (max-width: 600px) {
  .hero-section { min-height: 80vh; padding-bottom: 8rem; }
}
@media (max-width: 480px) {
  .hero-section { min-height: 72vh; }
}

/* Hero Buy Tickets button responsiveness (scoped) */
.hero-content .gala-cta {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  padding: clamp(1.2rem, 1.4vw, 1.8rem) clamp(1.6rem, 2.8vw, 3rem);
}

/* Animation setup */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-in {
  transition-delay: 0.2s;
}
.animate.slide-in-left {
  transform: translateX(-30px);
  transition-delay: 0.3s;
}
.animate.slide-in-right {
  transform: translateX(30px);
  transition-delay: 0.3s;
}
.animate.is-visible.slide-in-left,
.animate.is-visible.slide-in-right {
  transform: translateX(0);
}
.animate.zoom-in {
  transform: scale(0.9);
  transition-delay: 0.4s;
}
.animate.is-visible.zoom-in {
  transform: scale(1);
}
.animate.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate.is-visible.stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.animate.is-visible.stagger-children > *:nth-child(1) {
  transition-delay: 0.1s;
}
.animate.is-visible.stagger-children > *:nth-child(2) {
  transition-delay: 0.2s;
}
.animate.is-visible.stagger-children > *:nth-child(3) {
  transition-delay: 0.3s;
}
.animate.is-visible.stagger-children > *:nth-child(4) {
  transition-delay: 0.4s;
}
.animate.is-visible.stagger-children > *:nth-child(5) {
  transition-delay: 0.5s;
}
.animate.is-visible.stagger-children > *:nth-child(6) {
  transition-delay: 0.6s;
}
.animate.is-visible.stagger-children > *:nth-child(7) {
  transition-delay: 0.7s;
}
.animate.is-visible.stagger-children > *:nth-child(8) {
  transition-delay: 0.8s;
}
.animate.is-visible.stagger-children > *:nth-child(9) {
  transition-delay: 0.9s;
}
.animate.is-visible.stagger-children > *:nth-child(10) {
  transition-delay: 1s;
}
.animate.is-visible.stagger-children > *:nth-child(11) {
  transition-delay: 1.1s;
}
.animate.is-visible.stagger-children > *:nth-child(12) {
  transition-delay: 1.2s;
}
.animate.is-visible.stagger-children > *:nth-child(13) {
  transition-delay: 1.3s;
}
.animate.is-visible.stagger-children > *:nth-child(14) {
  transition-delay: 1.4s;
}
.animate.is-visible.stagger-children > *:nth-child(15) {
  transition-delay: 1.5s;
}
.animate.is-visible.stagger-children > *:nth-child(16) {
  transition-delay: 1.6s;
}
.animate.is-visible.stagger-children > *:nth-child(17) {
  transition-delay: 1.7s;
}
.animate.is-visible.stagger-children > *:nth-child(18) {
  transition-delay: 1.8s;
}
.animate.is-visible.stagger-children > *:nth-child(19) {
  transition-delay: 1.9s;
}
.animate.is-visible.stagger-children > *:nth-child(20) {
  transition-delay: 2s;
}
.animate.is-visible.stagger-children > *:nth-child(21) {
  transition-delay: 2.1s;
}
.animate.is-visible.stagger-children > *:nth-child(22) {
  transition-delay: 2.2s;
}
.animate.is-visible.stagger-children > *:nth-child(23) {
  transition-delay: 2.3s;
}
.animate.is-visible.stagger-children > *:nth-child(24) {
  transition-delay: 2.4s;
}
.animate.is-visible.stagger-children > *:nth-child(25) {
  transition-delay: 2.5s;
}
.animate.is-visible.stagger-children > *:nth-child(26) {
  transition-delay: 2.6s;
}
.animate.is-visible.stagger-children > *:nth-child(27) {
  transition-delay: 2.7s;
}
.animate.is-visible.stagger-children > *:nth-child(28) {
  transition-delay: 2.8s;
}
.animate.is-visible.stagger-children > *:nth-child(29) {
  transition-delay: 2.9s;
}
.animate.is-visible.stagger-children > *:nth-child(30) {
  transition-delay: 3s;
}
.animate.is-visible.stagger-children > *:nth-child(31) {
  transition-delay: 3.1s;
}
.animate.is-visible.stagger-children > *:nth-child(32) {
  transition-delay: 3.2s;
}
.animate.is-visible.stagger-children > *:nth-child(33) {
  transition-delay: 3.3s;
}
.animate.is-visible.stagger-children > *:nth-child(34) {
  transition-delay: 3.4s;
}
.animate.is-visible.stagger-children > *:nth-child(35) {
  transition-delay: 3.5s;
}
.animate.is-visible.stagger-children > *:nth-child(36) {
  transition-delay: 3.6s;
}
.animate.is-visible.stagger-children > *:nth-child(37) {
  transition-delay: 3.7s;
}
.animate.is-visible.stagger-children > *:nth-child(38) {
  transition-delay: 3.8s;
}
.animate.is-visible.stagger-children > *:nth-child(39) {
  transition-delay: 3.9s;
}
.animate.is-visible.stagger-children > *:nth-child(40) {
  transition-delay: 4s;
}
.animate.is-visible.stagger-children > *:nth-child(41) {
  transition-delay: 4.1s;
}
.animate.is-visible.stagger-children > *:nth-child(42) {
  transition-delay: 4.2s;
}
.animate.is-visible.stagger-children > *:nth-child(43) {
  transition-delay: 4.3s;
}
.animate.is-visible.stagger-children > *:nth-child(44) {
  transition-delay: 4.4s;
}
.animate.is-visible.stagger-children > *:nth-child(45) {
  transition-delay: 4.5s;
}
.animate.is-visible.stagger-children > *:nth-child(46) {
  transition-delay: 4.6s;
}
.animate.is-visible.stagger-children > *:nth-child(47) {
  transition-delay: 4.7s;
}
.animate.is-visible.stagger-children > *:nth-child(48) {
  transition-delay: 4.8s;
}
.animate.is-visible.stagger-children > *:nth-child(49) {
  transition-delay: 4.9s;
}
.animate.is-visible.stagger-children > *:nth-child(50) {
  transition-delay: 5s;
}
.animate.is-visible.stagger-children > *:nth-child(51) {
  transition-delay: 5.1s;
}
.animate.is-visible.stagger-children > *:nth-child(52) {
  transition-delay: 5.2s;
}
.animate.is-visible.stagger-children > *:nth-child(53) {
  transition-delay: 5.3s;
}
.animate.is-visible.stagger-children > *:nth-child(54) {
  transition-delay: 5.4s;
}
.animate.is-visible.stagger-children > *:nth-child(55) {
  transition-delay: 5.5s;
}
.animate.is-visible.stagger-children > *:nth-child(56) {
  transition-delay: 5.6s;
}
.animate.is-visible.stagger-children > *:nth-child(57) {
  transition-delay: 5.7s;
}
.animate.is-visible.stagger-children > *:nth-child(58) {
  transition-delay: 5.8s;
}
.animate.is-visible.stagger-children > *:nth-child(59) {
  transition-delay: 5.9s;
}
.animate.is-visible.stagger-children > *:nth-child(60) {
  transition-delay: 6s;
}
.animate.is-visible.stagger-children > *:nth-child(61) {
  transition-delay: 6.1s;
}
.animate.is-visible.stagger-children > *:nth-child(62) {
  transition-delay: 6.2s;
}
.animate.is-visible.stagger-children > *:nth-child(63) {
  transition-delay: 6.3s;
}
.animate.is-visible.stagger-children > *:nth-child(64) {
  transition-delay: 6.4s;
}
.animate.is-visible.stagger-children > *:nth-child(65) {
  transition-delay: 6.5s;
}
.animate.is-visible.stagger-children > *:nth-child(66) {
  transition-delay: 6.6s;
}
.animate.is-visible.stagger-children > *:nth-child(67) {
  transition-delay: 6.7s;
}
.animate.is-visible.stagger-children > *:nth-child(68) {
  transition-delay: 6.8s;
}
.animate.is-visible.stagger-children > *:nth-child(69) {
  transition-delay: 6.9s;
}
.animate.is-visible.stagger-children > *:nth-child(70) {
  transition-delay: 7s;
}
.animate.is-visible.stagger-children > *:nth-child(71) {
  transition-delay: 7.1s;
}
.animate.is-visible.stagger-children > *:nth-child(72) {
  transition-delay: 7.2s;
}
.animate.is-visible.stagger-children > *:nth-child(73) {
  transition-delay: 7.3s;
}
.animate.is-visible.stagger-children > *:nth-child(74) {
  transition-delay: 7.4s;
}
.animate.is-visible.stagger-children > *:nth-child(75) {
  transition-delay: 7.5s;
}
.animate.is-visible.stagger-children > *:nth-child(76) {
  transition-delay: 7.6s;
}
.animate.is-visible.stagger-children > *:nth-child(77) {
  transition-delay: 7.7s;
}
.animate.is-visible.stagger-children > *:nth-child(78) {
  transition-delay: 7.8s;
}
.animate.is-visible.stagger-children > *:nth-child(79) {
  transition-delay: 7.9s;
}
.animate.is-visible.stagger-children > *:nth-child(80) {
  transition-delay: 8s;
}
.animate.is-visible.stagger-children > *:nth-child(81) {
  transition-delay: 8.1s;
}
.animate.is-visible.stagger-children > *:nth-child(82) {
  transition-delay: 8.2s;
}
.animate.is-visible.stagger-children > *:nth-child(83) {
  transition-delay: 8.3s;
}
.animate.is-visible.stagger-children > *:nth-child(84) {
  transition-delay: 8.4s;
}
.animate.is-visible.stagger-children > *:nth-child(85) {
  transition-delay: 8.5s;
}
.animate.is-visible.stagger-children > *:nth-child(86) {
  transition-delay: 8.6s;
}
.animate.is-visible.stagger-children > *:nth-child(87) {
  transition-delay: 8.7s;
}
.animate.is-visible.stagger-children > *:nth-child(88) {
  transition-delay: 8.8s;
}
.animate.is-visible.stagger-children > *:nth-child(89) {
  transition-delay: 8.9s;
}
.animate.is-visible.stagger-children > *:nth-child(90) {
  transition-delay: 9s;
}
.animate.is-visible.stagger-children > *:nth-child(91) {
  transition-delay: 9.1s;
}
.animate.is-visible.stagger-children > *:nth-child(92) {
  transition-delay: 9.2s;
}
.animate.is-visible.stagger-children > *:nth-child(93) {
  transition-delay: 9.3s;
}
.animate.is-visible.stagger-children > *:nth-child(94) {
  transition-delay: 9.4s;
}
.animate.is-visible.stagger-children > *:nth-child(95) {
  transition-delay: 9.5s;
}
.animate.is-visible.stagger-children > *:nth-child(96) {
  transition-delay: 9.6s;
}
.animate.is-visible.stagger-children > *:nth-child(97) {
  transition-delay: 9.7s;
}
.animate.is-visible.stagger-children > *:nth-child(98) {
  transition-delay: 9.8s;
}
.animate.is-visible.stagger-children > *:nth-child(99) {
  transition-delay: 9.9s;
}
.animate.is-visible.stagger-children > *:nth-child(100) {
  transition-delay: 10s;
}

/* Hero CTA: narrower on mobile, override earlier rules */
@media (max-width: 600px) {
  .hero-content .gala-cta {
    width: auto;
    max-width: 72%;
    display: inline-block;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hero-content .gala-cta {
    max-width: 62%;
  }
}

/* Mobile-specific styles */
@media (max-width: 600px) {
  .hero-note {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 4rem auto 0;
    text-align: center;
    width: calc(100% - 2rem);
  }
}