/* ═══════════════════════════════════════════════════════════
   mamajota™ — Restored Home Page CSS (Light Theme)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero (Restored Original Layout) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #EEF3FB 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #FDEEF5 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-logo-wrapper {
  margin-bottom: 24px;
  max-width: 300px;
  width: 100%;
}
.hero-logo-wrapper img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid #F5BDCF;
  white-space: nowrap;
}
.hero-badge span { 
  width: 6px; height: 6px; 
  border-radius: 50%; 
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.hero-title .blue {
  color: var(--blue);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Right City Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.city-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.city-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.city-card-text {
  flex: 1;
}
.city-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.city-phase {
  font-size: 15.5px;
  color: var(--muted);
}
.city-badge {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-live { background: #EEF8F0; color: #22863A; border: 1px solid #C3E8CC; }
.badge-soon { background: var(--blue-light); color: var(--blue); border: 1px solid #C5D6F0; }
.badge-upcoming { background: var(--pink-light); color: var(--pink); border: 1px solid #F5BDCF; }

/* ── Concept Section (Slide 2) ── */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.concept-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(27, 58, 122, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(27, 58, 122, 0.03);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s, border-color 0.3s;
}
.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27, 58, 122, 0.06);
  border-color: rgba(27, 58, 122, 0.18);
}
.concept-card-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.concept-card-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 17.5px;
}
.card-shop .concept-card-icon { background: #F2EEFA; }
.card-learn .concept-card-icon { background: #FDF2EE; }
.card-play .concept-card-icon { background: #FDF2EE; }
.card-b2b .concept-card-icon { background: #F2EEFA; }

.concept-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.concept-card-body {
  padding: 0;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.concept-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.concept-card-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, color 0.2s;
}
.concept-card-link:hover {
  color: var(--pink);
  transform: translateX(4px);
}

/* ── Zone Teaser Block ── */
.home-zones-teaser {
  background: var(--blue);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-zones-teaser::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214,63,120,0.15) 0%, transparent 70%);
  top: -250px;
  left: -200px;
  pointer-events: none;
}
.home-zones-teaser .section-title {
  color: #fff;
}
.teaser-zones-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.teaser-zone-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.teaser-zone-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--pink-mid);
}

/* ── Partners (Slide 4) ── */
.home-partners {
  background: var(--off);
  padding: 72px 24px;
}
.partners-slider-wrap {
  margin-top: 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.partners-slider {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.partners-slider:hover {
  animation-play-state: paused;
}
.partner-logos-chunk {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
}
.partner-logo-img {
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.partner-logo-img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* --- Brand Logo Optical Alignment (Visually Balanced Sizing) --- */
.partner-logo-img[alt="Sony"] { height: 18px; }
.partner-logo-img[alt="BMW"] { height: 32px; }
.partner-logo-img[alt="Audi"] { height: 24px; }
.partner-logo-img[alt="HP"] { height: 30px; }
.partner-logo-img[alt="Samsung"] { height: 22px; }
.partner-logo-img[alt="Porsche"] { height: 30px; }
.partner-logo-img[alt="Tata Group"] { height: 32px; }
.partner-logo-img[alt="Pepsi"] { height: 32px; }

/* Wide or script logos scaled larger to be readable */
.partner-logo-img[alt="LG"] { height: 48px; }
.partner-logo-img[alt="Godrej"] { height: 44px; }
.partner-logo-img[alt="Cadbury"] { height: 46px; }
.partner-logo-img[alt="Mahindra"] { height: 44px; }

/* ── Event Glimpses Grid (Slide 5) ── */
.home-glimpses {
  background: var(--white);
}
.glimpses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.glimpse-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  background: var(--off);
}
.glimpse-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.glimpse-card:hover img {
  transform: scale(1.08);
}
.glimpse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 33, 63, 0.8) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.glimpse-card:hover .glimpse-overlay {
  opacity: 1;
}
.glimpse-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Responsive Home ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-badge {
    white-space: normal;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    max-width: 100%;
  }
  .invitation-pass {
    max-width: 460px;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .glimpses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .glimpses-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Luxury Entry Pass / Invitation Card ── */
.invitation-pass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 48px rgba(27, 58, 122, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}
.invitation-pass:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: 0 30px 60px rgba(27, 58, 122, 0.12);
}
.pass-glow {
  position: absolute;
  top: -20%; right: -20%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(214, 63, 120, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.pass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(27, 58, 122, 0.15);
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.pass-logo {
  max-height: 84px;
  width: auto;
}
.pass-badge {
  background: linear-gradient(135deg, var(--pink) 0%, #A22353 100%);
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(214, 63, 120, 0.2);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  display: inline-block;
}
a.pass-badge:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 14px rgba(214, 63, 120, 0.35);
  background: linear-gradient(135deg, #B8305E 0%, #8A1B43 100%);
}
.pass-title {
  font-size: 16.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 4px;
}
.pass-sub {
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pass-details-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pass-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.pass-detail-icon {
  font-size: 17.5px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}

/* ── Live Countdown Clock ── */
.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 8px;
}
.countdown-item {
  position: relative;
  background: linear-gradient(to bottom, #FFFFFF 0%, #F4F6F9 49%, #E2E6EE 51%, #EDF0F6 100%);
  border: 1px solid rgba(27, 58, 122, 0.15);
  box-shadow: 0 6px 16px rgba(27, 58, 122, 0.06);
  border-radius: 12px;
  padding: 14px 4px 10px;
  text-align: center;
  overflow: hidden;
}
.countdown-item::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(27, 58, 122, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: 2;
}
.countdown-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.countdown-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

/* Mobile Responsiveness & Optimization overrides for Invitation Pass */
@media (max-width: 480px) {
  .invitation-pass {
    padding: 24px 16px;
    border-radius: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .pass-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(27, 58, 122, 0.15);
  }
  .pass-logo {
    max-height: 72px;
    margin: 0 auto;
  }
  .pass-badge {
    display: inline-block;
    width: auto;
    text-align: center;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: 100px;
    white-space: nowrap;
  }
  .pass-detail-item {
    font-size: 13.5px;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  .pass-detail-icon {
    font-size: 15px;
    width: 26px;
    height: 26px;
    margin-top: 1px;
  }
  .countdown-clock {
    gap: 8px;
    margin-top: 6px;
  }
  .countdown-item {
    padding: 10px 2px 8px;
    border-radius: 8px;
  }
  .countdown-number {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
  .countdown-label {
    font-size: 10px;
    letter-spacing: 0.02em;
    margin-top: 1px;
  }
}

