:root {
  --orange: #f5902f;
  --gradient: linear-gradient(135deg, #f2673a, #fda60e);
  --black: #0b0b0b;
  --dark: #111;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  position: relative;
}

/* gradient glow blobs */

body::before {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: rgba(245, 144, 47, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 400px;
  height: 400px;
  background: rgba(242, 103, 58, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: -1;
}

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;
}

.event-stats{
  display:flex;
  gap:18px;
  margin-top:35px;
  flex-wrap:wrap;
}

.event-stat{
  padding:18px 24px;
  border-radius:22px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.08);
  min-width:140px;
}

.event-stat h4{
  font-size:28px;
  margin-bottom:6px;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
}

/* ================= NAVBAR ================= */

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

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

.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 {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: 0.3s ease;
}

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

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

.nav-link.active::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 30px;
  background: var(--gradient);
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
}

/* ================= HERO CONTENT ================= */

.event-hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}

.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);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  margin-bottom: 28px;
  font-size: 14px;
}

.event-hero-content h1 {
  font-size: 90px;
  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.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}

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

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

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

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

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(245, 144, 47, 0.35);
}

/* ================= CONTENT ================= */

.event-content {
  padding: 100px 80px;
  max-width: 1250px;
  margin: auto;
}

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

.event-content h3 {
  font-size: 38px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.event-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #444;
}

.event-benefits {
  margin-top: 25px;
  display: grid;
  gap: 18px;
}

.event-benefits li {
  list-style: none;
  padding: 24px;
  border-radius: 20px;
  background: #fafafa;
  font-size: 18px;
  font-weight: 600;
}

/* ================= GALLERY ================= */

/* ================= VIDEO ================= */

/* ================= INSTAGRAM ================= */

.section-label{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 18px;
  border-radius:40px;
  background:#fff3ea;
  color:#f2673a;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

/* ================= QR ================= */

.qr-section {
  padding: 0 80px 100px;
  text-align: center;
}

.qr-image {
  width: 220px;
  margin: auto;
}

.qr-section p {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

/* ================= CTA ================= */

.tag-section{
  position:relative;
  overflow:hidden;
  padding:140px 20px;
  text-align:center;
  background:#0b0b0b;
}

.tag-section::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(245,144,47,0.12);
  filter:blur(120px);
  border-radius:50%;
  top:-250px;
  left:50%;
  transform:translateX(-50%);
}

.tag-section h3 {
  font-size: 52px;
  margin-bottom: 20px;
  color : white;
}

.tag-section p {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.tag-section .hero-btn {
  margin-top: 35px;
}

/* ================= 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-left {
  display: flex;
  flex-direction: column;
}

.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;
}

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

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

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

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

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

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

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .event-hero {
    padding-inline: 40px;
  }

  .event-hero-content h1 {
    font-size: 62px;
  }

  .event-content,
  .qr-section {
    padding-inline: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right,
  .footer-left {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .event-hero {
    padding-inline: 25px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .event-hero-content h1 {
    font-size: 48px;
  }

  .event-subtitle {
    font-size: 18px;
  }

  .event-content h2,
  .tag-section h3 {
    font-size: 36px;
  }

  .event-content h3 {
    font-size: 28px;
  }

  .event-content p {
    font-size: 17px;
  }

  .event-content,
  .qr-section {
    padding-inline: 25px;
  }
}

@media (max-width: 576px) {
  .event-hero-content h1 {
    font-size: 38px;
  }

  .logo {
    flex-direction: column;
    text-align: center;
  }

  .logo span {
    transform: translateY(0);
    margin-top: 5px;
    font-size: 12px;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .sponsor-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-content,
  .qr-section {
    padding-inline: 20px;
  }

  .footer {
    padding: 40px 20px;
  }
}



/* ================= STORY SECTION ================= */

.story-section{
  padding:120px 80px;
  overflow:hidden;
}

.story-section h2{
  font-size:58px;
  margin-bottom:50px;
  max-width:700px;
  line-height:1.1;
}

.story-scroll{
  display:flex;
  gap:28px;
  overflow-x:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
-ms-overflow-style:none;
}

.story-scroll::-webkit-scrollbar{
  height:12px;
   display:none;
}

.story-scroll::-webkit-scrollbar-thumb{
  background:rgba(242,103,58,0.3);
  border-radius:20px;
}

.story-card{
  min-width:420px;
  height:580px;
  border-radius:36px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
  scroll-snap-align:start;
  transition:0.5s ease;
}

.story-card:hover{
  transform:translateY(-10px);
}

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

.story-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to top,
    rgba(0, 0, 0, 0.225),
    rgba(0,0,0,0.1)
  );
}

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

.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:12px;
  letter-spacing:1px;
  font-weight:700;
}

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

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



/* ================= REELS ================= */

.reels-section{
  padding:120px 80px;
  text-align:center;
  position:relative;
}

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



/* ================= INSTAGRAM REELS ================= */

.instagram-reels-grid{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-top:60px;
}

.instagram-media{
  min-width:320px !important;
  max-width:340px !important;
  width:100% !important;
  border-radius:28px !important;
  overflow:hidden !important;
  box-shadow:0 20px 60px rgba(0,0,0,0.12) !important;
  transition:0.4s ease;
}

.instagram-media:hover{
  transform:translateY(-8px);
}


/* ================= TIMELINE ================= */

.timeline-section{
  padding:120px 80px;
  background:#0b0b0b;
  position:relative;
}

.timeline-section h2{
  font-size:58px;
  color:white;
  margin-bottom:60px;
}

.timeline-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.timeline-item{
  padding:40px;
  border-radius:30px;
  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.06);
}

.timeline-item span{
  color:#f5902f;
  font-weight:800;
  font-size:14px;
  letter-spacing:1px;
}

.timeline-item h3{
  color:white;
  font-size:30px;
  margin:18px 0;
}

.timeline-item p{
  color:rgba(255,255,255,0.75);
  line-height:1.8;
}



@media(max-width:992px){

  .timeline-wrapper{
    grid-template-columns:1fr;
  }

  .story-card{
    min-width:340px;
    height:500px;
  }

}

@media(max-width:768px){

  .story-section,
  .timeline-section,
  .reels-section{
    padding:90px 25px;
  }

  .story-section h2,
  .timeline-section h2,
  .reels-section h2{
    font-size:38px;
  }

  .story-card{
    min-width:88%;
  }

}

/* ================= HERO CINEMATIC VIDEO ================= */

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

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
filter:brightness(0.72);
}

.hero-video{
  z-index:1;
  filter:brightness(0.72);
}

/* FULL VIDEO MODE */

.event-hero.full-video-active .hero-overlay,
.event-hero.full-video-active .hero-gradient-overlay{
  opacity:0;
  visibility:hidden;
}

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

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


.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,
    rgba(0,0,0,0.88) 5%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* HERO CONTENT */

.event-hero-content{
  position:relative;
  z-index:6;
  transition:0.5s ease;
}

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

/* 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;
  transition:0.35s ease;
}

/* SOUND */

#soundToggleBtn{
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(14px);
  color:white;
  font-size:18px;
}

/* WATCH BUTTON */

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

/* EXIT BUTTON */

#exitFullVideoBtn{
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(14px);
  color:white;
  font-size:18px;

  opacity:0;
  visibility:hidden;
}

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

#watchFullBtn:hover,
#soundToggleBtn:hover,
#exitFullVideoBtn:hover{
  transform:translateY(-4px);
}

/* FULL VIDEO MODE */

.event-hero.full-video-active .hero-overlay,
.event-hero.full-video-active .hero-gradient-overlay{
  opacity:0;
  visibility:hidden;
}

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

/* RESPONSIVE */

@media(max-width:768px){

  .hero-video-controls{
    right:20px;
    bottom:20px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  #watchFullBtn{
    padding:14px 22px;
    font-size:12px;
  }

}


/* ================= LARGE TABLETS ================= */

@media (max-width: 1024px){

  .event-hero{
    padding-inline:40px;
  }

  .event-hero-content h1{
    font-size:72px;
  }

  .event-content,
  .story-section,
  .reels-section,
  .tag-section,
  .footer{
    padding-left:40px;
    padding-right:40px;
  }

  .story-card{
    min-width:360px;
    height:500px;
  }

  .instagram-media{
    min-width:280px !important;
  }

}


/* ================= TABLET ================= */

@media (max-width: 768px){

  /* HERO */

  .event-hero{
    padding-inline:24px;
    padding-top:20px;
    min-height:100svh;
  }

  .event-hero-content{
    max-width:100%;
    padding-top:100px;
    padding-bottom:80px;
  }

  .event-hero-content h1{
    font-size:52px;
    line-height:1;
  }

  .event-subtitle{
    font-size:17px;
    line-height:1.7;
  }

  .event-date{
    font-size:12px;
    padding:8px 14px;
  }

  /* NAVBAR */

  .navbar{
    gap:18px;
  }

  .nav-menu{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
  }

  .nav-link{
    padding:8px 12px;
    font-size:12px;
  }

  .logo img{
    width:95px;
  }

  .logo span{
    font-size:12px;
  }

  /* HERO BUTTONS */

  .hero-btn{
    width:100%;
    text-align:center;
    padding:16px 20px;
  }

  /* STATS */

  .event-stats{
    width:100%;
    gap:12px;
  }

  .event-stat{
    flex:1;
    min-width:unset;
    padding:16px;
    border-radius:18px;
  }

  .event-stat h4{
    font-size:22px;
  }

  .event-stat span{
    font-size:11px;
  }

  /* VIDEO CONTROLS */

  .hero-video-controls{
    right:20px;
    left:20px;
    bottom:20px;
    justify-content:space-between;
    gap:10px;
  }

  #watchFullBtn{
    flex:1;
    font-size:11px;
    padding:14px 16px;
  }

  #soundToggleBtn,
  #exitFullVideoBtn{
    width:50px;
    height:50px;
    flex-shrink:0;
  }

  /* CONTENT */

  .event-content,
  .story-section,
  .reels-section,
  .tag-section{
    padding:80px 24px;
  }

  .event-content h2,
  .story-section h2,
  .reels-section h2,
  .tag-section h3{
    font-size:40px;
    line-height:1.1;
  }

  .event-content h3{
    font-size:28px;
  }

  .event-content p{
    font-size:16px;
    line-height:1.8;
  }

}



/* ================= MOBILE ================= */

@media (max-width: 576px){

  /* HERO */

  .event-hero{
    padding-inline:18px;
  }

  .event-hero-content{
    padding-top:120px;
  }

  .event-hero-content h1{
    font-size:40px;
  }

  .event-subtitle{
    font-size:15px;
  }

  /* NAV */

  .navbar{
    align-items:flex-start;
  }

  .nav-menu{
    justify-content:flex-start;
  }

  /* SPONSOR */

  .sponsor-strip{
    width:100%;
    padding:14px 18px;
    gap:14px;
  }

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

  /* STORY SECTION */

  .story-scroll{
    gap:18px;
    padding-bottom:5px;
  }

  .story-card{
    min-width:88%;
    height:420px;
    border-radius:24px;
  }

  .story-overlay{
    padding:22px;
  }

  .story-overlay h3{
    font-size:24px;
  }

  .story-overlay p{
    font-size:14px;
    line-height:1.6;
  }

  .story-overlay span{
    font-size:10px;
    padding:6px 12px;
  }

  /* REELS */

  .instagram-reels-grid{
    gap:20px;
    margin-top:40px;
  }

  .instagram-media{
    min-width:100% !important;
    max-width:100% !important;
    border-radius:22px !important;
  }

  /* TAG SECTION */

  .tag-section{
    padding:100px 20px;
  }

  .tag-section h3{
    font-size:38px;
  }

  .tag-section p{
    font-size:16px;
  }

  /* FOOTER */

  .footer{
    padding:50px 20px 30px;
  }

  .footer-container{
    gap:30px;
  }

  .footer-right{
    align-items:flex-start;
  }

  .contact-info p{
    font-size:14px;
  }

  .social-icons{
    justify-content:flex-start;
  }

}



/* ================= SMALL MOBILE ================= */

@media (max-width: 400px){

  .event-hero-content h1{
    font-size:34px;
  }

  .event-subtitle{
    font-size:14px;
  }

  .event-stat{
    padding:14px;
  }

  .event-stat h4{
    font-size:18px;
  }

  .event-content h2,
  .story-section h2,
  .reels-section h2,
  .tag-section h3{
    font-size:32px;
  }

  .story-card{
    height:380px;
  }

  #watchFullBtn{
    font-size:10px;
    padding:12px;
  }

}