/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent-gradient: linear-gradient(98.31deg, #C2977C 0%, #FFFFFF 66.28%, #C2977C 132.57%);
  --font: 'Montserrat', sans-serif;
  --page-px: 14%;
}

html, body {
  font-family: var(--font);
  background: #0a0a0a url('../images/bgImg.png') repeat;
  background-size: auto;
  color: #fff;
}

/* ─── NAVBAR ────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  padding: 16px var(--page-px);
  gap: 0;
}

/* LOGO */
.logo img {
  height: 120px;
  width: 118px;
  object-fit: contain;
  display: block;
}

/* NAV LINKS — pushed to the right with margin-left auto */
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* JOIN COMMUNITY BUTTON */
.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  background: var(--accent-gradient);
  color: #111;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-left: 28px;
}

.btn-join:hover { opacity: 0.88; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* HERO BACKGROUND IMAGE
   ▸ Replace assets/images/hero.svg with your photo (e.g. hero.jpg, hero.webp)
   ▸ Recommended: 1600×900 px or larger, landscape orientation */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(102, 102, 102, 0) -16.04%, rgba(0, 0, 0, 0.8) 70.11%);
}


/* HERO TEXT CONTENT — right-aligned, matching screenshot */
.hero-content {
  position: relative;
  z-index: 3;
  margin-left: 55%;
  margin-right: var(--page-px);
  max-width: 480px;
  text-align: left;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 30px;
  font-weight: 500;
  /* letter-spacing: 3px; */
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
/* All slides overlap each other */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

/* Only active slide visible */
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Content should remain above image */
.hero-slide .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slide 3 brand text */
.hero-brand-name {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* sparkle page button */
.btn-sparkle {
  background: #C7D9FF;
  color: #111;
  border: none;
}

/* parv page — pink theme */
.hero-title--parv {
  color: #EC4899;
  font-size: 90px;
  line-height: 1;
  margin-top: 14px;
  margin-bottom: 8px;
}

/* parv subtitle — tighter to the title */
.hero-title--parv + .hero-subtitle {
  margin-bottom: 0;
}

/* parv hero block — title group + tags with gap */
.parv-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 24px;
}

.parv-title-group .hero-title--parv {
  margin: 0 0 -12px;
  /* line-height: 0.8; */
}

.parv-tags .hero-tagline--parv {
  margin: 0;
}

.hero-tagline--parv {
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
}

.btn-parv {
  background: #EC4899;
  color: #000000;
  border: none;
}

/* shared base for all .btn variants */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.88; }

/* gradient fill button */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #111;
  border: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* outline/ghost button ("Our Story") */
.btn-story {
  background: transparent;
  color: #fff;
  border: 1px solid #FFFFFF;
}

/* ─── STATS BAR ─────────────────────────────────────── */
.stats {
  display: flex;
  justify-content: center;
  gap: 55px;
  padding: 60px var(--page-px) 48px;
  position: relative;
  margin-top: 0;
  z-index: 10;
}

.stat-card {
  flex: 1;
  width: 300px;
  height: 183px;
  background: rgba(58, 58, 58, 0.4);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.stat-num {
  font-size: 60px;
  font-weight: 400;
  color: #FFE54F;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

/* sparkle page — blue stat number */
.stat-num--blue {
  color: #C7D9FF;
}

/* parv page — pink stat number */
.stat-num--pink {
  color: #EC4899;
}

/* parv quote section */
.parv-quote-section {
  padding: 80px var(--page-px) 40px;
  text-align: center;
}

/* parv experience section */
.about-tag.about-tag--pink {
  color: #EC4899;
}

.about-bullets li .bullet-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-bullets li .bullet-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
  text-transform: uppercase;
}

.about-bullets li {
  align-items: flex-start;
}

/* parv experience — heading + child text (Figma spec) */
.parv-exp .about-bullets li .bullet-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;            /* 130% */
  letter-spacing: -0.06em;     /* -6% */
  vertical-align: middle;
  font-variant: small-caps;
  text-transform: none;        /* small-caps ko effective karne ke liye */
}

.parv-exp .about-bullets li .bullet-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.3;            /* 130% */
  letter-spacing: -0.06em;     /* -6% */
  vertical-align: middle;
  font-variant: small-caps;
  text-transform: none;
}

/* parv experience — section layout */
.parv-exp {
  padding: 80px var(--page-px);
}

.parv-exp .about-title {
  margin-bottom: 40px;
  max-width: 660px;
}

.parv-exp-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.parv-exp-row .about-bullets {
  flex: 1;
  min-width: 0;
}

.parv-exp-row .parv-exp-img-wrap {
  flex: 1;
  min-width: 0;
}

/* parv experience — bullet cards */
.parv-exp .about-bullets {
  gap: 20px;
}

.parv-exp .about-bullets li {
  align-items: center;
  gap: 40px;
  height: 160px;
  max-width: 660px;
  padding: 0 40px;
  border-radius: 20px;
  border: 1px solid #EC4899;
  background: rgba(58, 58, 58, 0.4);
}

/* parv experience — grey icon wrap (fixed 60×60, never deforms) */
.parv-exp .bullet-bg {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  flex-shrink: 0;
}

.parv-exp .bullet-bg img {
  display: block;
  object-fit: contain;
}

/* per-icon sizes (Figma spec) */
.parv-exp .about-bullets li:nth-child(1) .bullet-bg img { width: 30px;    height: 30px; }
.parv-exp .about-bullets li:nth-child(2) .bullet-bg img { width: 22px;    height: 22px; }
.parv-exp .about-bullets li:nth-child(3) .bullet-bg img { width: 22.52px; height: 22.52px; }
.parv-exp .about-bullets li:nth-child(4) .bullet-bg img { width: 24px;    height: 24px; }

/* parv experience image + badges */
.parv-exp-img-wrap {
  position: relative;
}

.parv-exp-img {
  width: 100%;
  height: 660px;
  border-radius: 30px;
  object-fit: cover;
}

.parv-exp-badge {
  position: absolute;
  top: -50px;
  right: 24px;
  background: #3A3A3A;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 28px 40px;
  text-align: left;
}

/* badge text — Figma spec (24px → thoda less = 18px) */
.parv-exp-badge-title,
.parv-exp-badge-sub,
.parv-exp-badge-pink {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1;              /* 100% */
  letter-spacing: -0.06em;     /* -6% */
  vertical-align: middle;
  font-variant: small-caps;
  text-transform: none;
}

.parv-exp-badge-title {
  color: #fff;
}

.parv-exp-badge-sub {
  color: #fff;
}

.parv-exp-badge-pink {
  color: #EC4899;
  margin-top: 4px;
}

.about-badge.parv-exp-est {
  position: absolute;
  bottom: -20px;
  left: 30px;
  transform: none;
  font-size: 14px;
  padding: 10px 22px;
}

.parv-quote {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── FEATURES (sparkle) ────────────────────────────── */
.features {
  padding: 60px var(--page-px) 80px;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-tag {
  font-size: 20px;
  font-weight: 500;
  color: #C7D9FF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.features-title {
  font-size: 54px;
  font-weight: 500;
  text-transform: uppercase;
}

.features-grid {
  display: flex;
  gap: 32px;
}

.feature {
  flex: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(0deg, rgba(217, 217, 217, 0.2), rgba(217, 217, 217, 0.2)),
              linear-gradient(0deg, #3A3A3A, #3A3A3A);
}

.feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feature-name {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── RECENT MEETS (sparkle) ────────────────────────── */
.meets {
  padding: 60px var(--page-px) 80px;
}

.meets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.meets-title {
  font-size: 54px;
  font-weight: 500;
  text-transform: uppercase;
}

.meets-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 560px;
}

.meets-desc {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.meets-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.meets-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.meets-arrow--active {
  background: #C7D9FF;
  color: #111;
  border-color: #C7D9FF;
}

.meets-arrow:hover { opacity: 0.8; }

.meets-viewport {
  overflow: hidden;
}

.meets-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.meets-cards .meet-card {
  flex: 0 0 calc((100% - 24px) / 2);
  max-width: none;
}

.comm-sub-label.comm-sub-label--blue {
  color: #C7D9FF;
}

.meet-date {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* parv gallery — EVENINGS TO REMEMBER */
.gallery-tag--pink { color: #EC4899; }

.meets-arrows--center {
  justify-content: center;
  margin-top: 40px;
}

.meets--gallery .meets-arrow--active {
  background: #EC4899;
  color: #fff;
  border-color: #EC4899;
}

.meets--gallery .gallery-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 0.8;            /* 80% */
  letter-spacing: -0.06em;     /* -6% */
  text-align: center;
  vertical-align: middle;
  font-variant: small-caps;
  color: rgba(236, 72, 153, 1);
}

.meets--gallery .gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;     /* -6% */
  text-align: center;
  vertical-align: middle;
  font-variant: small-caps;
}

/* gap between heading and carousel */
.meets--gallery .gallery-header {
  margin-bottom: 72px;
}

/* smaller white card titles */
.meets--gallery .comm-card-title {
  font-size: 24px;
  line-height: 1.35;
}
/* Full screen modal */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.event-modal.active {
  display: flex;
}

/* Blur background */
.event-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Only image box in center */
.event-modal-content {
  position: relative;
  z-index: 2;
  width: min(900px, 78vw);
  max-height: 85vh;
}

/* Image */
.event-gallery {
  width: 100%;
  height: 75vh;
  max-height: 700px;
  border-radius: 14px;
  overflow: hidden;
  /* background: #111; */
}

.event-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Close button: full body top-right */
.event-close {
  position: fixed;
  top: 25px;
  right: 30px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111;
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.event-close:hover {
  transform: rotate(90deg);
}

/* Previous / Next: body left-right */
.gallery-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.gallery-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 35px;
}

.gallery-next {
  right: 35px;
}

/* Event title and image count */
.gallery-info {
  padding-top: 14px;
  color: #fff;
  text-align: center;
}

.gallery-info h2 {
  margin: 0 0 5px;
  font-size: 22px;
}

.gallery-info p {
  margin: 0;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .event-modal-content {
    width: 88vw;
  }

  .event-gallery {
    height: 60vh;
  }

  .event-close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 29px;
    display: flex;
    justify-content: center;
  }

  .gallery-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .gallery-info h2 {
    font-size: 17px;
  }
}
/* ─── GALLERY (sparkle) ─────────────────────────────── */
.gallery {
  padding: 60px var(--page-px) 80px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #C7D9FF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.gallery-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.gallery-img {
  object-fit: cover;
  border-radius: 30px;
  display: block;
  height: 446px;
}

/* first 4 images — fixed 456 wide */
.gallery-img--sm,
.gallery-img--lg {
  width: 456px;
}

/* 5th image (bottom-right) — wide 928 */
.gallery-img--xl {
  width: 928px;
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px var(--page-px);
}

/* LEFT */
.about-left {
  flex: 1;
  min-width: 0;
}

.about-tag {
  font-size: 20px;
  font-weight: 500;
  color: #FFE54F;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.bullet-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(0deg, rgba(217, 217, 217, 0.2), rgba(217, 217, 217, 0.2)),
              linear-gradient(0deg, #3A3A3A, #3A3A3A);
}

.bullet-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* RIGHT */
.about-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about-img--top {
  height: 300px;
}

.about-img-bottom-wrap {
  display: flex;
  gap: 16px;
  position: relative;
}

.about-img--bl {
  height: 200px;
  width: 35%;
  flex-shrink: 0;
  align-self: flex-start;
}

.about-img-br-wrap {
  position: relative;
  flex: 1;
}

.about-img--br {
  height: 300px;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 10%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3A3A3A;
  border-radius: 20px;
  padding: 14px 32px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}

.badge-icon {
  width: 26px;
  height: 22px;
  object-fit: contain;
}

/* ─── COMMUNITY ─────────────────────────────────────── */
.community {
  padding: 80px var(--page-px);
}

.community-header {
  text-align: center;
  margin-bottom: 48px;
}

.community-tag {
  font-size: 20px;
  font-weight: 500;
  color: #FFE54F;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.community-title {
  font-size: 54px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 700px;
  margin: 0 auto;
}

.community-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.comm-card {
  flex: 1;
  max-width: 676px;
  height: 624px;
  border-radius: 30px;
  border: 1px solid #979797;
  overflow: hidden;
  position: relative;
}

.comm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comm-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 120px 60px 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.comm-sub-label {
  font-size: 14px;
  font-weight: 600;
  color: #FFE54F;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.comm-card-title {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.comm-card-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 320px;
}

.btn-comm {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.30);
  transition: opacity 0.2s;
}

.btn-comm:hover { opacity: 0.75; }

/* View Event button — white bg (recent meets) */
.meet-card .btn-comm {
  background: #fff;
  color: #111;
  border: none;
  padding: 16px 36px;
}

/* ─── PHILOSOPHY ─────────────────────────────────────── */
.philosophy {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px var(--page-px);
}

.philosophy-left {
  flex: 1;
}

.philosophy-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.philosophy-right {
  flex: 1;
}

.philosophy-title {
  font-size: 54px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.philosophy-desc {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 62px;
}

.philosophy-quote {
  border-left: 2px solid #D9D9D9;
  padding-left: 20px;
}

.quote-text {
  font-size: 40px;
  color: #fff;
  margin-bottom: 6px;
}

.quote-sub {
  font-size: 20px;
  text-transform: uppercase;
}

/* ─── CTA ───────────────────────────────────────────── */
.cta {
  padding: 60px var(--page-px) 100px;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(58, 58, 58, 0.4);
  border-radius: 24px;
  padding: 56px 48px;
}

.cta-title {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-highlight {
  color: #FFE54F;
}

.cta-desc {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 auto 32px;
  max-width: 540px;
}

.cta-btn {
  margin-left: 0;
}

/* sparkle CTA — blue variants */
.cta-highlight--blue {
  color: #C7D9FF;
}

.cta-btn--blue {
  background: #C7D9FF;
  color: #111;
}

/* parv CTA — pink variants */
.cta-highlight--pink {
  color: #EC4899;
}

.cta-btn--pink {
  background: #EC4899;
  color: #111;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  padding: 60px var(--page-px) 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 0 1 320px;
  min-width: 0;
}

.footer-col {
  flex: 0 0 auto;
  min-width: 0;
}

.footer-logo {
  height: 118px;
  width: 118px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  text-transform: uppercase;
  max-width: 280px;
}

.footer-heading {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  position: relative;
  padding-left: 16px;
}

.footer-links li::before {
  content: '·';
  position: absolute;
  left: 0;
    color: rgba(255,255,255,0.55);
}

.footer-links a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.55);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── HAMBURGER ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* X animation */
.hamburger.open {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  z-index: 998;
  background: #111;
  border-left: 1px solid rgba(194,151,124,0.3);
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu ul a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 18px 0;
  transition: color 0.2s;
}

.mobile-menu ul a:hover { color: #C2977C; }

.mobile-join {
  margin-left: 0;
  margin-top: 32px;
  width: 100%;
  text-align: center;
}

/* ─── JOIN THE COMMUNITY CARD ───────────────────────── */
.join-section {
  display: flex;
  justify-content: center;
  padding: 40px var(--page-px) 80px;
}

.join-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 44px;
}

/* close button (top-right) */
.join-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2c2c2c;
  color: #F4DD4E;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s;
}

.join-close:hover { background: #383838; }

/* star badge */
.join-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #2c2c2c;
  color: #F4DD4E;
  font-size: 22px;
  margin-bottom: 24px;
}

.join-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.join-tagline {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #F4DD4E;
  margin-bottom: 28px;
  max-width: 320px;
}

/* form */
.join-form { display: flex; flex-direction: column; gap: 16px; }

.join-row { display: flex; gap: 16px; }
.join-row input { flex: 1; }

.join-form input,
.join-form textarea {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: #242424;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 18px 24px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

.join-form textarea {
  border-radius: 22px;
  resize: vertical;
  min-height: 120px;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.join-form input:focus,
.join-form textarea:focus {
  outline: none;
  border-color: #F4DD4E;
  background: #2a2a2a;
}

/* submit */
.join-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.join-submit {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #1b1b1b;
  background: #F4DD4E;
  border: none;
  border-radius: 10px;
  padding: 14px 26px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.join-submit:hover { opacity: 0.9; }

.join-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #F4DD4E;
  text-align: center;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
/* ═══════════ TABLET (≤1024px) ═══════════ */
@media (max-width: 1024px) {
  :root { --page-px: 6%; }

  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 24px; }

  .about-title,
  .community-title,
  .features-title,
  .meets-title,
  .gallery-title,
  .philosophy-title { font-size: 40px; }

  .stat-num { font-size: 48px; }
  .stat-label { font-size: 16px; }

  /* fixed-size gallery → fluid */
  .gallery-img--sm,
  .gallery-img--lg,
  .gallery-img--xl { width: auto; flex: 1; }
  .gallery-img { height: 280px; }

  .comm-card { height: auto; }
}

/* ═══════════ MOBILE (≤900px) ═══════════ */
@media (max-width: 900px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav .btn-join:not(.mobile-join) { display: none; }
  .hamburger { display: flex; }

  .logo img { height: 80px; width: 80px; }

  .hero { height: auto; min-height: 0; padding: 60px 0; }
  .hero-content { margin: 0 auto; text-align: center; padding: 0 20px; max-width: 100%; }
  .hero-tagline { font-size: 12px; }
  .hero-title { font-size: 44px; }
  .hero-title--parv { font-size: 64px; }
  .parv-quote-section { padding: 48px 20px 24px; }
  .parv-quote { font-size: 24px; }
  .parv-exp { padding: 48px 20px; }
  .parv-exp-row { flex-direction: column; }
  .parv-exp .about-bullets li { height: auto; padding: 22px 24px; }
  .parv-exp-img { height: 360px; }

  /* parv badges — keep inside the image bounds on mobile */
  .parv-exp-badge {
    top: -28px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 12px 16px;
    background-color: rgba(58, 58, 58, 1);
  }
  .parv-exp-badge-title,
  .parv-exp-badge-sub,
  .parv-exp-badge-pink { font-size: 14px; }

  .about-badge.parv-exp-est {
    bottom: -16px;
    left: 16px;
    right: 16px;
    justify-content: center;
    font-size: 13px;
    padding: 9px 16px;
  }
  .hero-subtitle { font-size: 20px; }
  .hero-desc { font-size: 12px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .btn { font-size: 14px; padding: 14px 28px; }
  .btn-join { font-size: 14px; padding: 14px 28px; }
  .btn-comm,
  .meet-card .btn-comm { font-size: 14px; padding: 12px 26px; }
  .meets-arrow { width: 36px; height: 36px; font-size: 16px; }

  .stats { flex-wrap: wrap; gap: 16px; margin-top: 20px; padding: 40px 20px; }
  .stat-card { flex: 1 1 40%; width: auto; height: auto; min-width: 140px; }
  .stat-num { font-size: 40px; }
  .stat-label { font-size: 13px; }

  .about { flex-direction: column; padding: 48px 20px; gap: 40px; }
  .about-tag { font-size: 14px; }
  .about-title { font-size: 30px; }
  .about-desc { font-size: 13px; }
  .about-bullets li { font-size: 13px; }
  .about-img--top,
  .about-img--br { height: auto; }
  .about-img--bl { height: auto; }
  .about-badge { font-size: 16px; padding: 10px 20px; }

  .community { padding: 48px 20px; }
  .community-tag { font-size: 14px; }
  .community-title { font-size: 30px; }
  .community-cards { flex-direction: column; }
  .comm-card-title { font-size: 26px; }

  .philosophy { flex-direction: column; padding: 48px 20px; gap: 40px; }
  .philosophy-title { font-size: 36px; }
  .philosophy-desc { font-size: 12px; }
  .philosophy-img { height: auto; }
  .quote-text { font-size: 26px; }
  .quote-sub { font-size: 13px; }

  .features { padding: 40px 20px 60px; }
  .features-tag { font-size: 14px; }
  .features-title { font-size: 30px; }
  .features-grid { flex-wrap: wrap; gap: 24px; }
  .feature { flex: 1 1 45%; }
  .feature-name { font-size: 20px; }
  .feature-desc { font-size: 13px; }

  .meets { padding: 40px 20px 60px; }
  .meets-header { flex-direction: column; gap: 20px; }
  .meets-header-right { flex-direction: column; align-items: flex-start; }
  .meets-title { font-size: 30px; }
  .meets-desc { font-size: 13px; }
  .meets-cards .meet-card { flex: 0 0 100%; }

  .gallery { padding: 40px 20px 60px; }
  .gallery-tag { font-size: 14px; }
  .gallery-title { font-size: 30px; }
  .gallery-grid { width: 100%; }
  .gallery-row { flex-direction: column; width: 100%; }
  .gallery-img,
  .gallery-img--sm,
  .gallery-img--lg,
  .gallery-img--xl {
    width: 100%;
    height: 220px;
    flex: none;
  }

  .cta { padding: 40px 20px 60px; }
  .cta-card { padding: 40px 24px; }
  .cta-title { font-size: 30px; }
  .cta-desc { font-size: 13px; }

  .footer-heading { font-size: 14px; }
  .footer-links a { font-size: 12px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ═══════════ SMALL PHONE (≤480px) ═══════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }

  .about-title,
  .community-title,
  .features-title,
  .meets-title,
  .gallery-title { font-size: 24px; }
  .philosophy-title { font-size: 28px; }
  .quote-text { font-size: 22px; }
  .cta-title { font-size: 24px; }

  .stat-card { flex: 1 1 100%; }
  .stat-num { font-size: 36px; }

  .feature { flex: 1 1 100%; }

  .comm-card-title { font-size: 22px; }
  .about-badge { font-size: 14px; }

  /* parv badges — tighter for small phones */
  .parv-exp-badge {
    top: -24px;
    right: 8px;
    max-width: calc(100% - 16px);
    padding: 10px 12px;
  }
  .parv-exp-badge-title,
  .parv-exp-badge-sub,
  .parv-exp-badge-pink { font-size: 12px; }

  .about-badge.parv-exp-est {
    left: 10px;
    right: 10px;
    font-size: 11px;
    padding: 8px 12px;
    letter-spacing: 0.5px;
  }
  .parv-exp-est .badge-icon { width: 20px; height: 17px; }

  .btn,
  .btn-join { font-size: 13px; padding: 12px 24px; }
  .btn-comm,
  .meet-card .btn-comm { font-size: 13px; padding: 11px 22px; }
}
