/* ================= GLOBAL RESET & ROOT ================= */
:root {
  --gold: #f5902f;
  --gradient: linear-gradient(135deg, #f2673a, #fda60e);
  --black: #0b0b0b;
  --white: #ffffff;
  --text: #d8d8d8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #080808;
  color: white;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ================= HERO ================= */
.event-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-inline: 70px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.35); */
  z-index: 2;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgb(6 6 6 / 61%), rgb(0 0 0 / 0%));
}

/* ================= FULL VIDEO MODE ================= */
.event-hero.full-video-active .hero-overlay,
.event-hero.full-video-active .hero-gradient-overlay {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.event-hero.full-video-active .navbar {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.event-hero.full-video-active .hero-video {
  filter: brightness(1);
}

.event-hero.full-video-active .hero-video-controls {
  z-index: 999;
}

/* ================= NAVBAR ================= */
.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 120px;
}

.logo span {
  color: white;
  font-size: 18px;
  transform: translateY(22px);
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
}

/* ================= HERO CONTENT ================= */
.event-hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1059px;
}

.event-hero-content.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: 0.5s ease;
}

.event-date {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: white;
  margin-bottom: 15px;
  font-size: 14px;
}

.event-hero-content h1 {
  font-size: 96px;
  line-height: 0.95;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
}

.event-hero-content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-subtitle {
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.sponsor-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  padding: 16px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.sponsor-strip span {
  /* color: white; */
  font-size: 14px;
  font-weight: 600;
}

.sponsor-strip img {
  width: 100px;
}

.event-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.event-stat {
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  min-width: 160px;
}

.event-stat h4 {
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--gold);
}

.event-stat span {
  color: #ddd;
  font-size: 13px;
}

.hero-btn {
  display: inline-block;
  width: fit-content;
  margin-top: 42px;
  padding: 18px 42px;
  border-radius: 60px;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  transition: 0.4s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

/* ================= CONTENT ================= */
.event-content {
  padding: 120px 80px;
  max-width: 1250px;
  margin: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(212, 162, 76, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.event-content h2 {
  font-size: 58px;
  margin-bottom: 30px;
  line-height: 1.1;
}

.event-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 24px;
}

/* ================= GALLERY ================= */
.story-section {
  padding: 120px 80px;
}

.story-section h2 {
  font-size: 58px;
  margin-bottom: 60px;
  max-width: 760px;
}

.masonry-gallery {
  columns: 3 320px;
  column-gap: 24px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 24px;
  break-inside: avoid;
}

.story-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.story-card:hover img {
  transform: scale(1.03);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 34, 34, 0.65), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 32px;
}

.story-overlay span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}

.story-overlay h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}

.story-overlay p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 15px;
}

/* ================= REELS ================= */
.reels-section {
  padding: 120px 80px;
  text-align: center;
}

.reels-section h2 {
  font-size: 58px;
  margin-bottom: 70px;
}

.instagram-reels-grid {
  display: flex;
  justify-content: center;
}

.instagram-media {
  min-width: 340px !important;
  max-width: 360px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

/* ================= DETAILS ================= */
.event-details-panel {
  padding: 120px 80px;
}

.details-card {
  border-radius: 32px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.details-card h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.detail-item {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.detail-item span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-item h4 {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 600;
}

/* ================= CTA ================= */
.tag-section {
  position: relative;
  overflow: hidden;
  padding: 140px 20px;
  text-align: center;
  background: #050505;
}

.tag-section h3 {
  font-size: 58px;
  margin-bottom: 20px;
}

.tag-section p {
  max-width: 760px;
  margin: auto;
  font-size: 20px;
  line-height: 1.9;
  color: #c8c8c8;
}

/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  padding: 60px 80px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact-btn {
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  transition: 0.3s;
}

.footer-contact-btn:hover {
  transform: translateY(-3px);
}

.contact-info p {
  color: #333;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--gold);
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.2s;
}

.social-icons a:hover {
  transform: scale(1.05);
  background: #f5902f;
}

.footer-bottom {
  margin-top: 20px;
}

.footer-bottom p {
  color: #333;
}

/* ================= VIDEO CONTROLS ================= */
.hero-video-controls {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-video-controls button {
  border: none;
  cursor: pointer;
}

#soundToggleBtn,
#exitFullVideoBtn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 18px;
  transition: 0.2s;
}

#soundToggleBtn:hover,
#exitFullVideoBtn:hover {
  background: rgba(255, 255, 255, 0.25);
}

#watchFullBtn {
  padding: 18px 30px;
  border-radius: 60px;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 14px;
  transition: 0.3s;
}

#watchFullBtn:hover {
  transform: scale(1.02);
}

#exitFullVideoBtn {
  opacity: 0;
  visibility: hidden;
}

#exitFullVideoBtn.show {
  opacity: 1;
  visibility: visible;
}

/* ================= RESPONSIVE (preserved from original) ================= */
@media (max-width: 992px) {
  .event-hero {
    padding-inline: 40px;
  }
  .event-content,
  .story-section,
  .reels-section,
  .event-details-panel,
  .footer {
    padding-inline: 40px;
  }
  .event-hero-content h1 {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .event-hero {
    padding-inline: 24px;
  }
  .event-hero-content h1 {
    font-size: 52px;
  }
  .event-subtitle {
    font-size: 17px;
  }
  .event-content,
  .story-section,
  .reels-section,
  .event-details-panel,
  .tag-section {
    padding: 90px 24px;
  }
  .event-content h2,
  .story-section h2,
  .reels-section h2,
  .tag-section h3 {
    font-size: 40px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .details-card {
    padding: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .event-hero-content h1 {
    font-size: 40px;
  }
  .story-overlay {
    padding: 22px;
  }
  .story-overlay h3 {
    font-size: 24px;
  }
  .instagram-media {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .hero-video-controls {
    right: 20px;
    left: 20px;
    bottom: 20px;
  }
  .nav-menu {
    gap: 4px;
  }
  .nav-link {
    padding: 6px 12px;
    font-size: 12px;
  }
  .logo span {
    font-size: 12px;
    transform: translateY(14px);
  }
}

/* GSTA specific subtle enhancements (no style conflict) */
.gsta-hero .hero-video {
  filter: brightness(0.5);
}

/* ================= HERO CAROUSEL ================= */
.hero-carousel-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Carousel Controls */
.hero-carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--gold);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Remove old video controls */
.hero-video-controls {
  display: none;
}

/* Adjust hero content positioning */
.event-hero-content {
  position: relative;
  z-index: 10;
}

/* Ensure navbar stays above carousel */
.navbar {
  z-index: 20;
}

/* Responsive adjustments for carousel controls */
@media (max-width: 768px) {
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .carousel-dots {
    gap: 8px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dot.active {
    width: 20px;
  }
  
  .hero-carousel-controls {
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .carousel-nav-btn {
    width: 36px;
    height: 36px;
  }
}