* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html,
body {
  overscroll-behavior: none;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
  
  background: linear-gradient(to bottom,  #ff6fa8 35%, #ff9fc3 65%, #ffd6e6 100%),
  url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
}

.brand-nav a:last-child {

  padding: 10px 20px;
  border-radius: 25px;
}


/* HEADER */
.hero,
.card,
.event-card,
.team-card,
.about-box {
  transform: translateZ(0);
  will-change: transform;
}


.logo-text {
  margin: 40px
}


.logo img {
  margin-top: 10px;
  padding-left: 10px;
  height: 46px;
  /* adjust as needed */
  width: auto;
  display: block;
  cursor: pointer;
}

.brand-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff2f7d;
}

.brand-sub {
  font-size: 18px;
  letter-spacing: 4px;
  color: #555;
  margin-left: 100px;
}

/* NAV */

.top-nav {
  position: absolute;
  top: 35px;
  right: 40px;
  z-index: 9999;
}

.top-nav a {
  color: #ff2f7d;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  background: white;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(233, 30, 99, .45);
}

/* HERO — FULL IMAGE  */

.hero {
  background:
    linear-gradient(rgba(255, 47, 125, .25), rgba(255, 47, 125, .25)),
    url("images/banner.png");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: scroll;
  /* FULL IMAGE */

  aspect-ratio: 16/9;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ff6fa8);
  pointer-events: none;
}


.hero-content h1 {
  font-size: 60px
}

.hero-content p {
  margin: 15px 0;
  font-size: 18px
}

.year-overlay {
  font-family: 'Poppins', sans-serif;
  position: absolute;
  right: 120px;
  bottom: 125px;
  font-size: 52px;
  color: #c2185b;
}

.scroll-section {
  padding: 120px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.card{
width:180px;
height:120px;
border-radius:20px;

display:flex;
align-items:center;
justify-content:center;

font-weight:600;
color:white;
text-shadow:0 2px 10px black;

background-size:cover;
background-position:center;

box-shadow:0 8px 18px rgba(0,0,0,.15);

cursor:default;
pointer-events:none;

opacity:0;
transform:scale(.7);
transition:.5s ease;

position:relative;
}

.card.show {
  opacity: 1;
  transform: scale(1);
}

.manymore {
  margin-top: 30px;
  font-size: 40px;
  opacity: 0;
  transform: scale(.9);
  transition: .6s ease;
}

.manymore.show {
  opacity: 1;
  transform: scale(1);
}

.title {
  font-size: 42px;
  margin-bottom: 20px
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}


.card::after{
content:"";
position:absolute;
inset:0;
border-radius:20px;
border:1px solid rgba(255,255,255,.25);
pointer-events:none;
}

.card.show {
  opacity: 1;
  transform: scale(1);
}

.leader {
  background-image: url("images/leader.png");
}

.mentor {
  background-image: url("images/mentor.png");
}

.caregiver {
  background-image: url("images/caregiver.png");
}

.homemaker {
  background-image: url("images/homemaker.png");
}

.creator {
  background-image: url("images/creator.png");
}

.mother {
  background-image: url("images/mother.png");
}

.visionary {
  background-image: url("images/visionary.png");
}

.manymore {
  margin-top: 30px;
  font-size: 40px;
  opacity: 0;
  transform: scale(.9);
  transition: .4s ease;
}

.manymore.show {
  opacity: 1;
  transform: scale(1);
}

/* MOBILE GAP FIX */
@media(max-width:600px) {

  .hero {
    aspect-ratio: auto;
    min-height: auto;
  }

  .hero::after {
    height: 60px;
  }

  .scroll-section {
    height: 90vh;
  }

  .sticky {
    position: relative;
    height: auto;
  }

}

.events-section {
  padding: 80px 20px;
  text-align: center;
  color: #c2185b;
}

.events-title {
  font-size: 40px;
  margin-bottom: 40px;
}

.events-container{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

.event-card{
width:100%;
border-radius:20px;
overflow:hidden;
text-decoration:none;
color:#333;
background:white;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
transition:.4s ease;
}
.date-badge{
display:inline-block;
background:#ffe3ef;
color:#c2185b;
padding:4px 12px;
font-size:12px;
border-radius:20px;
margin-bottom:10px;
font-weight:600;
}
@media(max-width:768px){

.events-container{
grid-template-columns:1fr;
}

}
.event-card:hover {
  transform: translateY(-8px);
}

.event-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.event-content {
  padding: 20px;
}

.event-content h3 {
  color: #ff2f7d;
  margin-bottom: 10px;
}

.event-content p {
  color: #666;
  margin-bottom: 15px;
}

.event-content span {
  font-weight: 600;
  color: #ff2f7d;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media(max-width:768px) {

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

  .manymore {
    font-size: 26px;
  }

  .events-container {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    height: 120px;
  }
}

.top-nav {
  position: absolute;
  top: 35px;
  right: 40px;
  z-index: 9999;
}

.top-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff2f7d;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, white, white);
  box-shadow: 0 12px 30px rgba(233, 30, 99, .45);
  cursor: pointer;
  transition: .3s ease;
}

.top-nav a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, .6);
}

.site-footer {
  background: #222;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.site-footer h3 {
  color: #ff2f7d;
  margin-bottom: 10px;
}

.site-footer p {
  color: #ccc;
  line-height: 1.6;
  margin: 6px 0;
}

.footer-contact {
  margin-top: 15px;
  font-weight: 600;
}

.footer-copy {
  margin-top: 20px;
  font-size: 14px;
  opacity: .7;
}

.logo-text {
  text-align: left;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  padding-left: 40px;
  margin: 40px;
}

.brand-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff2f7d;
}

.brand-sub {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-top: -4px;
  color: #555;
  margin-left: 100px;
}

.about-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.about-box {
  max-width: 1300px;
  display: flex;
  align-items: center;
  gap: 40px;

  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .4);
}

/* image */
.about-image img {
  width: 350px;

}

/* text */
.about-text {
  flex: 1;
}

.about-text h2 {
  color: #c2185b;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 12px;
}

@media(max-width:768px) {

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

  .about-image img {
    width: 100%;
    max-width: 350px;
  }

}

.about-box p {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 12px;
}

/* liquid responsive */
@media(max-width:768px) {

  .about-box {
    padding: 30px 20px;
  }

  .about-box h2 {
    font-size: 28px;
  }
}

.team-section {
  padding: 100px 20px;
  text-align: center;
}

.team-title {
  font-size: 40px;
  margin-bottom: 50px;
  color: #c2185b;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.team-card {
  width: 260px;
  padding: 28px 22px;
  border-radius: 25px;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  transition: .4s ease;
}

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

.team-card h3 {
  color: #ff2f7d;
  margin-bottom: 6px;
  font-size: 20px;
}

.team-card span {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* mobile liquid layout */
@media(max-width:768px) {

  .team-title {
    font-size: 30px;
  }

  .team-card {
    width: 90%;
  }
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px) {

  /* HERO TEXT CENTER + NO CUT */
  .hero {
    min-height: auto;
    padding: 140px 15px 60px;
    background-size: contain;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .year-overlay {
    position: static;
    margin-top: 10px;
    font-size: 32px;
  }

  /* REMOVE STICKY HEIGHT ISSUE */
  .scroll-section {
    height: auto !important;
    padding: 60px 10px;
  }

  .sticky {
    position: relative;
    height: auto;
  }

  /* MANY MORE ALWAYS VISIBLE */
  .manymore {
    opacity: 1 !important;
    transform: scale(1) !important;
    font-size: 22px;
    margin: 25px 0;
  }

  /* EVENTS STACK */
  .events-container {
    flex-direction: column;
  }

  /* TEAM STACK */
  .team-container {
    flex-direction: column;
  }

  .team-card {
    width: 100%;
  }

}

/* ===== MOBILE: 3 / 3 / 1 GRID ===== */
@media(max-width:768px) {

  .cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
  }

  /* equal card size */
  .card {
    width: 100% !important;
    height: 110px !important;
    font-size: 14px;
    aspect-ratio: 1/1.2;
  }

  /* center last lonely card */
  .cards .card:last-child {
    grid-column: 2;
  }
}

/* ================= MOBILE + TAB HERO SPLIT ================= */
@media(max-width:768px) {

  .hero {
    background-size: 100% auto;
    background-position: center top;
    aspect-ratio: auto;
    padding-top: 260px;
    padding-bottom: 40px;
    background-color: #fe8ebb;
  }

  /* content becomes separate block */
  .hero-content {
    background: #ff5a9c;
    padding: 30px 15px;
    margin-top: 20px;
  }

  /* text sizing */
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* move 2026 inside block */
  .year-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    font-size: 30px;
    opacity: .6;
  }

  /* remove fade */
  .hero::after {
    display: none;
  }

  /* center button */

  .top-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
  }
}

/* ===== MOBILE TEXT + BUTTON SCALE DOWN ===== */
@media(max-width:768px) {

  /* Headline */
  .hero-content h1 {
    font-size: 22px !important;
    line-height: 1.25;
  }

  /* Paragraphs */
  .hero-content p {
    font-size: 13px !important;
  }

  .logo-text {
    margin: 5px
  }

  /* 2026 */
  .year-overlay {
    color: #660c30;
    font-size: 26px !important;
  }

  /* Explore Events button */
  .top-nav a {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(233, 30, 99, .35);
  }

  .hero-content {
    padding: 22px 12px !important;
  }

  .brand-main {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff2f7d;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: 4px;
    color: #555;
    margin-left: 80px;
  }

  .hero::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(255, 111, 168, 0),
        #ff6fa8);
    z-index: 2;
    pointer-events: none;
  }


}


/* ================= BRAND HEADER ================= */

.brand-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;

  /* BRIDGE COLOR between navy & pink */
  background: linear-gradient(to right, #6b2140, #6b2140);

  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.brand-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-header .logo img {
  height: 45px;
}

.brand-nav .nav-btn {
  position: relative;
  color: white;
  padding: 10px 22px;

  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.brand-nav .nav-btn:hover {
  color: #ffd6e6;
  transform: translateY(-2px);
}

a {
  transition: 0.3s ease;
}


/* ================= PARTNERS SECTION ================= */

.partners-section {
  padding: 100px 20px;
  text-align: center;
}

.partners-title {
  font-size: 32px;
  margin-bottom: 60px;
  color: #c2185b;
  font-weight: 600;
}

/* Horizontal logo strip */
.partners-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
}


/* Clean minimal look */
.partner-item {
  text-align: center;
  transition: 0.3s ease;
}

/* Logo style */
.partner-item img{
  height:75px;
  width:auto;
  max-width:150px;
  object-fit:contain;

  filter:grayscale(80%);
  opacity:0.85;

  transition:.3s ease;
}

.partner-item:hover img{
  filter:grayscale(0%);
  opacity:1;
  transform:scale(1.05);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partner-item span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #6b2140;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.gifting-logos{
display:flex;
justify-content:center;
align-items:center;
gap: 1px;
margin-bottom:10px;
}

.gifting-logos img{
height:70px;
width:auto;
}

@media(max-width:768px) {

  .partners-bar {
    gap: 40px;
  }

  .partner-item img {
    height: 55px;
  }

}

/* event details */
.event-info {
  padding: 80px 20px;
  text-align: center;
}

.event-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.event-info-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-box {
  width: 230px;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.info-box i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #e91e63;
  /* professional pink accent */
}

.info-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-box p {
  font-size: 15px;
  color: #555;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* cta */
.register-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.register-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.register-section p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.register-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #e91e63;
  color: #e91e63;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: #e91e63;
  color: white;
  transform: translateY(-2px);
}

.register-btn {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, .5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }
}

/* gallery */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-subtext {
  color: #666;
  margin-bottom: 40px;
}

.gallery-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 images in one row */
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-btn {
  padding: 12px 28px;
  background: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.gallery-btn-outline {
  padding: 12px 28px;
  border: 2px solid #e91e63;
  color: #e91e63;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* tablet */
@media(max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media(max-width:600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .brand-nav .nav-btn {
  position: relative;
  color: white;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UNIFY ALL SECTION HEADINGS ===== */

.events-title,
.event-info h2,
.gallery-section h2,
.register-section h2,
.partners-title,
.team-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

 .countdown{
  display:flex;
  justify-content:center;
  gap:25px;
  margin-top:25px;
  flex-wrap:wrap;
}

.countdown div{
  width:110px;
  height:110px;
  background:white;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  font-weight:600;
  color:#666;
  transition:0.3s ease;
}

.countdown div:hover{
  transform:translateY(-4px);
}

.countdown span{
  font-size:32px;
  font-weight:700;
  color:#e91e63;
}
.register-section h3{
  margin-top:45px;
  font-size:26px;
  color:#c2185b;
  font-weight:600;
}
@media(max-width:768px){

.countdown{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:15px;
justify-items:center;
}

/* make DAYS full row */

.countdown div:first-child{
grid-column:1 / -1;
}

.countdown div{
width:90px;
height:90px;
}

.countdown span{
font-size:22px;
}

}

.initiatives-section{
padding:100px 8%;

}

.initiatives-title{
text-align:center;
font-size:36px;
margin-bottom:70px;
font-weight:700;
color:#c2185b;
}

.initiatives-container{
max-width:1200px;
margin:auto;
display:flex;
flex-direction:column;
gap:70px;
}

/* item layout */

.initiative-item{
display:flex;
align-items:center;
gap:40px;
}

.initiative-item.reverse{
flex-direction:row-reverse;
}

/* polaroid image */

.initiative-img{
position:relative;
background:white;
padding:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transform:rotate(-3deg);
}

.initiative-img img{
width:200px;
display:block;
}

/* tape */

.tape{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
width:60px;
height:20px;
background:#ffd1e3;
opacity:0.9;
border-radius:4px;
}

/* torn paper card */

.initiative-paper{
position:relative;
background:#fff6fa;
padding:30px;
max-width:500px;

clip-path: polygon(
0% 6%, 5% 0%, 95% 0%, 100% 6%,
100% 94%, 95% 100%, 5% 100%, 0% 94%
);

box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* number */

.initiative-number{
position:absolute;
top:0px;
left: 15px;
font-size:60px;
font-weight:700;
color:#ff4b8b;
opacity:0.25;
pointer-events:none;
}

/* title */

.initiative-paper h3{
margin-bottom:10px;
color:#333;
}

/* text */

.initiative-paper p{
color:#555;
line-height:1.6;
}

/* tag */

.initiative-tag{
display:inline-block;
margin-top:10px;
background:#ffd6e6;
color:#c2185b;
padding:6px 12px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

/* mobile */

@media(max-width:768px){

.initiative-item,
.initiative-item.reverse{
flex-direction:column;
text-align:center;
}

.initiative-img{
transform:none;
}

.initiative-paper{
max-width:100%;
}

}

/* purpose*/
.purpose-section{
padding:100px 20px;
text-align:center;
}

.purpose-section h2{
font-size:40px;
margin-bottom:20px;
color:#c2185b;
}

.purpose-intro{
max-width:1200px;
margin:auto;
margin-bottom:50px;
color:#555;
line-height:1.7;
}

.purpose-grid{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

.purpose-card{
width:260px;
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:.3s ease;
}

.purpose-card:hover{
transform:translateY(-8px);
}

.purpose-card i{
font-size:28px;
color:#e91e63;
margin-bottom:12px;
}

.purpose-card h3{
margin-bottom:10px;
color:#333;
}

.purpose-card p{
color:#666;
font-size:14px;
}

/*FAQ*/
/* FAQ SECTION */

.faq-section{
padding:100px 20px;
text-align:center;
}

.faq-section h2{
font-size:40px;
margin-bottom:50px;
color:#c2185b;
}

.faq-container{
max-width:1000px;
margin:auto;
display:flex;
flex-direction:column;
gap:18px;
}

/* FAQ CARD */

.faq-item{
background:white;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
overflow:hidden;
transition:0.3s ease;
}

/* QUESTION */

.faq-question{
width:100%;
background:white;
border:none;
padding:20px 25px;
font-size:17px;
font-weight:600;
text-align:left;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
color:#333;
}

/* ICON */

.faq-icon i{
color:#e91e63;
transition:transform 0.3s ease;
}

/* ANSWER */

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
padding:0 25px;
}

.faq-answer p{
padding-bottom:20px;
color:#555;
line-height:1.6;
font-size:15px;
}

/* ROTATE ICON WHEN OPEN */

.faq-item.active .faq-icon i{
transform:rotate(180deg);
}

/* HOVER EFFECT */

.faq-item:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* MOBILE */

@media(max-width:768px){

.faq-section h2{
font-size:32px;
}

.faq-question{
font-size:15px;
padding:18px 20px;
}

}

/*sponsors*/
.sponsors-section{
padding:80px 20px;
text-align:center;
}

.sponsors-section h2{
font-size:32px;
margin-bottom:40px;
color:#c2185b;
}

.sponsors-container{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

.sponsor-card img{
height:70px;
opacity:0.7;
transition:.3s;
}

.sponsor-card img:hover{
opacity:1;
transform:scale(1.05);
}

.confetti{
position:fixed;
top:0;
width:8px;
height:8px;
background:#ff2f7d;
animation:fall 2s linear;
}

@keyframes fall{
to{
transform:translateY(100vh) rotate(360deg);
opacity:0;
}
}


/* remove once registration opens*/
.coming-soon{
margin-top:20px;
display:flex;
justify-content:center;
}

.announcement{
background:#fff;
color:#c2185b;
font-weight:600;
padding:14px 28px;
border-radius:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
font-size:16px;
}

/* LIGHTBOX */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);

display:none;
justify-content:center;
align-items:center;

z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.lightbox-close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.gallery-grid img{
cursor:pointer;
}

.lightbox-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
padding:10px;
user-select:none;
transition:0.3s;
}

.lightbox-arrow:hover{
color:#ff6fa8;
}

.lightbox-arrow.left{
left:30px;
}

.lightbox-arrow.right{
right:30px;
}

/* hamburger*/
/* ================= MOBILE HAMBURGER MENU ================= */

.menu-toggle{
display:none;
font-size:24px;
color:white;
cursor:pointer;
}

/* mobile styles */

@media (max-width:768px){

.menu-toggle{
display:block;
}

/* hide menu */

.brand-nav{
position:absolute;
top:80px;
left:0;
width:100%;
background:#6b2140;

flex-direction:column;
align-items:center;

max-height:0;
overflow:hidden;

transition:max-height 0.3s ease;
}

/* show menu */

.brand-nav.active{
max-height:200px;
}

/* menu items */

.brand-nav .nav-btn{
display:block;
padding:15px;
font-size:16px;
width:100%;
text-align:center;
}

}
/* MOBILE HAMBURGER POSITION FIX */

@media (max-width:768px){

.menu-toggle{
display:block;
font-size:22px;
color:white;
cursor:pointer;

/* move slightly left */
margin-right:15px;
}

.brand-nav{
display:none;
}

.brand-nav.active{
display:flex;
flex-direction:column;
position:absolute;
top:80px;
left:0;
width:100%;
background:#6b2140;
}

}