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

html {
  scroll-behavior: smooth;
}

:root{
  --primary: #c78b92;
  --primary-dark: #a46c73;
  --accent: #f3d6cf;
  --bg: #fff8f7;
  --text-main: #1c1717;
  --text-muted: #6b5c5c;
  --border-soft: #f0ddda;
  --whatsapp: #25D366;
  --fab-chat-gap: 64px; /* keeps floating CTA above chat widgets */
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1120px; margin: 0 auto; }

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 0.9rem 0;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.promo-icon {
  font-size: 1.3rem;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(15deg); }
}

.promo-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.promo-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.promo-close:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) rotate(90deg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* ------------ Header / Nav ------------ */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,248,247,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav { display:flex; justify-content:space-between; align-items:center; padding:0.9rem 0; }
.logo { 
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 140ms ease;
}
.logo:hover {
  transform: scale(1.02);
}

nav.nav-links { display:flex; gap:1.5rem; font-size:0.95rem; align-items:center; }
nav.nav-links a { color:var(--text-main); position:relative; }
nav.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-0.2rem; width:0; height:2px; background:var(--primary); transition:width 0.25s ease;
}
nav.nav-links a:hover::after { width:100%; }

.nav-actions { display:flex; align-items:center; gap:0.8rem; }
.nav-cta { padding:0.6rem 1.2rem; border-radius:999px; background:var(--primary); color:#fff; font-size:0.95rem; font-weight:600; box-shadow:0 4px 10px rgba(0,0,0,0.05); border:none; min-height:48px; min-width:48px; }
.nav-cta:hover { background:var(--primary-dark); }

.mobile-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

.hamburger { display:none; width:36px; height:28px; flex-direction:column; justify-content:space-between; cursor:pointer; background:transparent; border:none; padding:0; }
.hamburger span { display:block; height:3px; background:var(--text-main); border-radius:2px; }

/* hide mobile menu by default (prevent duplicate nav on desktop) */
#mobileMenu {
  display: none;
}

/* small-screen: show mobile menu when toggled */
@media (max-width: 640px) {
  #mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(255,248,247,0.98);
    backdrop-filter: blur(10px);
    padding: 4rem 1.5rem 1.5rem;
    border-left: 1px solid var(--border-soft);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  #mobileMenu.show { 
    display: block;
    transform: translateX(0);
  }
  #mobileMenu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-soft);
    transition: all 0.2s ease;
    line-height: 1.3;
  }
  #mobileMenu a:hover {
    color: var(--primary);
    padding-left: 0.35rem;
  }
}

/* ------------ Hero ------------ */
.hero { padding:5rem 0 4.5rem; background: linear-gradient(135deg, var(--bg) 0%, rgba(243,214,207,0.2) 100%); }
.hero-grid { display:grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); gap:4rem; align-items:center; }
.hero-kicker { font-size:0.85rem; text-transform:uppercase; letter-spacing:0.18em; color:var(--primary-dark); margin-bottom:0.8rem; font-weight: 600; }
.hero-title { font-size:3rem; line-height:1.15; margin-bottom:1.2rem; color:var(--text-main); font-weight: 700; }
.hero-highlight { color:var(--primary-dark); font-weight: 600; }
.hero-subtitle { color:var(--text-muted); max-width:32rem; margin-bottom:1.8rem; font-size: 1.05rem; line-height: 1.7; }
.hero-cta-wrap { display:flex; gap:1rem; margin-bottom:2rem; flex-wrap: wrap; }
.hero-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 1rem; }
.hero-badge { 
  padding: 0.6rem 0.9rem; 
  background: #fff; 
  border-radius: 10px; 
  font-size: 0.85rem; 
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-primary { 
  padding:0.85rem 1.7rem; 
  border-radius:999px; 
  background:var(--primary); 
  color:#fff; 
  font-weight:600; 
  border:none; 
  cursor:pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(199,139,146,0.2);
  min-height: 48px;
  min-width: 48px;
}
.btn-primary:hover { 
  background:var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(199,139,146,0.3);
}
.btn-ghost { 
  padding:0.8rem 1.6rem; 
  border-radius:999px; 
  border:2px solid var(--primary); 
  background:#fff; 
  color:var(--primary); 
  cursor:pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 48px;
}
.btn-ghost:hover { 
  background:var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199,139,146,0.2);
}

.hero-card { 
  background: linear-gradient(135deg,#fff,#fbe1db); 
  border-radius:24px; 
  padding:2.2rem 1.8rem; 
  box-shadow:0 16px 48px rgba(0,0,0,0.1); 
  position:relative; 
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.4s ease;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
}
.hero-card-badge { 
  position:absolute; 
  top:1.5rem; 
  right:1.5rem; 
  padding:0.4rem 0.85rem; 
  border-radius:999px; 
  background:rgba(255,255,255,0.9); 
  font-size:0.75rem; 
  font-weight:600; 
  color:var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero-card-tag { 
  font-size: 0.8rem; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  color: var(--primary-dark); 
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero-card-title { 
  font-size: 1.4rem; 
  font-weight: 700; 
  color: var(--text-main); 
  margin-bottom: 0.8rem;
}
.hero-card-text { 
  color: var(--text-muted); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  margin-bottom: 1.2rem;
}
.hero-card-rows { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem;
}
.hero-card-rows > div { 
  padding: 0.6rem 0.8rem; 
  background: rgba(255,255,255,0.6); 
  border-radius: 8px; 
  font-size: 0.9rem;
}
.hero-card-rows strong { 
  color: var(--primary-dark); 
  font-weight: 600;
}
.hero-card-rows span { 
  color: var(--text-muted);
}

/* ------------ Section base ------------ */
section { padding:5rem 0; }
.section-heading { text-align:center; margin-bottom:3rem; }
.section-kicker { 
  font-size:0.85rem; 
  text-transform:uppercase; 
  letter-spacing:0.18em; 
  color:var(--primary-dark); 
  margin-bottom:0.6rem;
  font-weight: 600;
}
.section-title { 
  font-size:2rem; 
  margin-bottom:0.6rem; 
  color:var(--text-main);
  font-weight: 700;
}
.section-subtitle { 
  font-size:1rem; 
  color:var(--text-muted); 
  max-width:36rem; 
  margin:0.5rem auto 0;
  line-height: 1.7;
}

/* ------------ Services / Cards ------------ */
.services-grid { display:grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap:1.6rem; }
.service-card { 
  background:#fff; 
  border-radius:20px; 
  padding:1.8rem 1.5rem; 
  border:1px solid var(--border-soft); 
  display:flex; 
  flex-direction:column; 
  justify-content:space-between; 
  height:100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.service-card:last-child {
  grid-column: 2 / 5;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.service-name { 
  font-size:1.1rem; 
  font-weight:700; 
  margin-bottom:0.5rem; 
  color:var(--text-main); 
}
.service-tagline { 
  font-size:0.9rem; 
  color:var(--text-muted); 
  margin-bottom:1rem;
  line-height: 1.5;
}
.service-meta { 
  font-size:0.85rem; 
  color:var(--text-muted); 
  margin-bottom:0.5rem;
}
.service-note { 
  font-size:0.85rem; 
  color:var(--text-muted); 
  margin-top:0.8rem;
  line-height: 1.6;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-soft);
}

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:last-child { grid-column: auto; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .service-card { padding: 1.5rem 1.2rem; }
  .service-card:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.3rem 1.1rem; }
  .service-card:last-child { grid-column: auto; }
  .service-name { font-size: 1rem; }
  .service-tagline { font-size: 0.85rem; }
  .service-meta { font-size: 0.8rem; }
  .service-note { font-size: 0.8rem; }
}

/* ------------ About / Meet ------------ */
.about-grid { display:grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap:2.5rem; align-items:center; }
.about-text p { margin-bottom:0.9rem; color:var(--text-muted); font-size:0.95rem; }
.about-highlights { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:0.8rem; margin-top:0.7rem; }
.about-highlight { padding:0.7rem 0.8rem; border-radius:12px; background:#fff; border:1px solid var(--border-soft); font-size:0.85rem; color:var(--text-main); }
.about-card { background:#fff; border-radius:18px; padding:1.4rem 1.3rem; border:1px solid var(--border-soft); }
.about-name { font-family: "Great Vibes", cursive; font-size: 2rem; color: var(--primary-dark); margin-bottom: 0.4rem; }
.about-role { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.about-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-dark); margin-bottom: 0.3rem; }
.about-note { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-top: 1rem; }

/* ------------ Gallery ------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  justify-content: center;   /* center the whole grid inside its container */
  justify-items: center;     /* center each grid cell horizontally */
  align-items: center;       /* center each grid cell vertically */
  margin: 0 auto;            /* ensure grid is centered in container */
  max-width: 1380px;         /* optional: constrain grid width for large screens */
}

.gallery-item {
  width: 100%;
  max-width: 820px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#f7d9d2,#f0c7bf);
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Fallback for browsers without aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
  .gallery-item { padding-top: 75%; }
  .gallery-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
}

/* Responsive: fewer columns on smaller screens */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { max-width: 100%; }
}

.gallery-label { position:absolute; left:0.7rem; bottom:0.7rem; padding:0.25rem 0.6rem; border-radius:999px; background:rgba(255,255,255,0.9); font-size:0.75rem; color:var(--text-main); }

/* center pricing content and make the price grid narrower on wide screens */
.pricing-section .container {
  max-width: 920px; /* adjust to taste */
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* centers headings and subtitle */
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  justify-items: center; /* center each price-item inside its grid cell */
  margin-top: 1rem;
}

/* make each price card a consistent width and center its contents */
.price-item {
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
}

/* Larger, more prominent before/after button */
.ba-button {
  display: inline-block;
  padding: 1rem 1.6rem;        /* bigger click area */
  font-size: 1.05rem;         /* larger text */
  font-weight: 700;           /* stronger weight */
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
  min-width: 260px;           /* ensures consistent width */
  text-align: center;
}

/* subtle hover/tap feedback */
.ba-button:hover,
.ba-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  outline: none;
}

/* responsive: keep it large but fit small screens */
@media (max-width: 640px) {
  .ba-button {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}

/* ------------ Testimonials ------------ */
.testimonials { 
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(243,214,207,0.1)); 
  border-top:1px solid var(--border-soft); 
  border-bottom:1px solid var(--border-soft); 
}
.testimonials-grid { 
  display:grid; 
  grid-template-columns: repeat(3, minmax(0,1fr)); 
  gap:1.6rem; 
}
.testimonial-card { 
  background:#fff; 
  border-radius:18px; 
  padding:1.8rem 1.5rem; 
  border:1px solid var(--border-soft); 
  font-size:0.95rem; 
  color:var(--text-muted);
  line-height: 1.7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.testimonial-name { 
  margin-top:1rem; 
  font-weight:700; 
  color:var(--primary-dark); 
  font-size:0.9rem; 
}

/* ------------ Lash Mapping ------------ */
.lash-mapping-section { padding:3.5rem 0; background: linear-gradient(135deg, rgba(199,139,146,0.04), rgba(243,214,207,0.08)); }
.mapping-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:1.6rem; margin-top:2rem; }
.mapping-card { background:#fff; border-radius:16px; overflow:hidden; border:1px solid var(--border-soft); transition: all 0.3s ease; display:flex; flex-direction:column; }
.mapping-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(199,139,146,0.12); border-color: var(--primary); }
.mapping-img { width:100%; height:160px; object-fit:cover; display:block; }
.mapping-card-content { padding:2rem 1.6rem; flex:1; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; }
.mapping-card h3 { font-size:1.3rem; font-weight:600; color:var(--text-main); margin-bottom:1rem; margin-top:0; line-height:1.3; }
.mapping-card p { font-size:1rem; color:var(--text-muted); line-height:1.6; margin:0; }
.mapping-note { text-align:center; color:var(--text-muted); font-size:0.9rem; margin-top:2rem; max-width:500px; margin-left:auto; margin-right:auto; }

/* Mobile responsive for mapping */
@media (max-width: 900px) {
  .mapping-grid { grid-template-columns: repeat(2, 1fr); gap:1.2rem; }
  .mapping-card h3 { font-size:1.15rem; margin-bottom:0.8rem; }
  .mapping-card p { font-size:0.9rem; }
  .mapping-card-content { padding:1.5rem 1.2rem; }
}

@media (max-width: 600px) {
  .mapping-grid { grid-template-columns: 1fr; gap:1rem; }
  .mapping-img { height:140px; }
  .mapping-card-content { padding:1.4rem 1rem; }
  .mapping-card h3 { font-size:1.1rem; margin-bottom:0.6rem; }
  .mapping-card p { font-size:0.85rem; }
}

/* ------------ Booking / Contact ------------ */
.booking-grid { display:grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap:2rem; align-items:start; }
.booking-card { background:#fff; border-radius:18px; padding:1.6rem 1.4rem; border:1px solid var(--border-soft); }
.booking-list { list-style:none; font-size:0.9rem; color:var(--text-muted); margin-bottom:1rem; }
.booking-note { font-size:0.8rem; color:var(--text-muted); margin-top:0.6rem; }
.contact-details { font-size:0.9rem; color:var(--text-muted); display:grid; gap:0.5rem; }

/* Deposit Link Button */
.deposit-link-btn { display:inline-block; padding:0.7rem 1.4rem; background:var(--primary); color:#fff; border-radius:999px; font-size:0.9rem; font-weight:600; text-decoration:none; transition:all 0.3s ease; box-shadow:0 4px 12px rgba(199,139,146,0.2); }
.deposit-link-btn:hover { background:var(--primary-dark); transform:translateY(-2px); box-shadow:0 6px 16px rgba(199,139,146,0.3); }

/* Aftercare Styles */
.aftercare-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap:1.6rem; margin:2rem 0; }
.aftercare-card { background:#fff8f7; border:1px solid var(--border-soft); border-radius:14px; padding:1.5rem; }
.aftercare-card h3 { font-size:1.15rem; font-weight:600; color:var(--primary-dark); margin-bottom:1rem; }
.aftercare-card ul { list-style:none; padding:0; }
.aftercare-card li { font-size:0.9rem; color:var(--text-muted); padding:0.4rem 0; border-bottom:1px solid rgba(0,0,0,0.05); }
.aftercare-card li:last-child { border-bottom:none; }

.aftercare-faq { background: linear-gradient(135deg, rgba(199,139,146,0.04), rgba(243,214,207,0.08)); padding:2rem; border-radius:16px; margin:2.5rem 0; }
.aftercare-faq h2 { font-size:1.5rem; color:var(--text-main); margin-bottom:1.5rem; }
.faq-item { margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--border-soft); }
.faq-item:last-child { border-bottom:none; }
.faq-item h4 { font-size:1rem; font-weight:600; color:var(--text-main); margin-bottom:0.5rem; }
.faq-item p { font-size:0.9rem; color:var(--text-muted); line-height:1.6; margin:0; }

/* Contact Form */
.contact-form { background:#fff8f7; border:1px solid var(--border-soft); border-radius:14px; padding:1.6rem; margin:1.5rem 0; }
.contact-form h4 { font-size:1.1rem; font-weight:600; color:var(--text-main); margin-bottom:1rem; }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; font-size:0.9rem; font-weight:500; color:var(--text-main); margin-bottom:0.4rem; }
.form-group input, .form-group textarea { width:100%; padding:0.7rem; border:1px solid var(--border-soft); border-radius:8px; font-size:0.9rem; font-family:inherit; }
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(199,139,146,0.1); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit { background:var(--primary); color:#fff; border:none; padding:0.8rem 1.6rem; border-radius:999px; font-weight:600; cursor:pointer; transition:all 0.3s ease; }
.form-submit:hover { background:var(--primary-dark); transform:translateY(-2px); }

/* Deposit Details Page */
.deposit-details { background: linear-gradient(135deg, rgba(199,139,146,0.06), rgba(243,214,207,0.1)); border:1px solid var(--primary); border-radius:12px; padding:1.5rem 1.3rem; margin:1.5rem 0; }
.deposit-details h4 { font-size:1.1rem; font-weight:600; color:var(--primary-dark); margin:0 0 0.8rem 0; }
.deposit-details p { font-size:0.9rem; color:var(--text-muted); margin:0 0 1rem 0; line-height:1.6; }
.payment-info { background:#fff; border-radius:8px; padding:1.2rem 1.3rem; font-size:0.9rem; color:var(--text-main); margin-top:0.8rem; }
.payment-info div { margin-bottom:0.5rem; line-height:1.6; }

/* ------------ Footer / Utilities ------------ */
/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 10000;
  transition: width 0.2s ease;
}

/* ------------ Footer / Utilities ------------ */
footer { 
  padding:2.5rem 0 3rem; 
  font-size:0.85rem; 
  color:var(--text-muted); 
  text-align:center;
  background: linear-gradient(135deg, rgba(243,214,207,0.1), var(--bg));
  border-top: 1px solid var(--border-soft);
}

.footer-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.footer-address {
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
}

.footer-address strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-weight: 600;
}

.policy-bar {
  background: linear-gradient(135deg, rgba(243,214,207,0.2), rgba(199,139,146,0.08));
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.policy-bar strong { color: var(--primary-dark); }

@media (max-width: 640px) {
  .policy-bar { padding: 0.85rem 1rem; font-size: 0.875rem; border-radius: 10px; }
}

.rebook-banner {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(199,139,146,0.08));
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  text-align: center;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin: 1.5rem 0;
}

.sticky-book-button { 
  position:fixed; 
  right:1.5rem; 
  bottom:calc(1.5rem + env(safe-area-inset-bottom, 0px)); 
  background:var(--whatsapp); 
  color:#fff; 
  padding:1rem 1.4rem; 
  border-radius:999px; 
  z-index:999; 
  box-shadow:0 8px 24px rgba(37,211,102,0.3); 
  font-weight:700;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

.sticky-book-button.show {
  opacity: 1;
  transform: translateY(0);
}

.sticky-book-button:hover {
  background: #20BA5A;
  transform: translateY(-4px);
  box-shadow:0 12px 32px rgba(37,211,102,0.4);
}

/* ------------ Lightbox ------------ */
.lightbox { 
  display:none; 
  position:fixed; 
  inset:0; 
  background:rgba(0,0,0,0.9); 
  align-items:center; 
  justify-content:center; 
  z-index:10000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox img { 
  max-width:92%; 
  max-height:92%; 
  border-radius:12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn { 
  position:absolute; 
  top:2rem; 
  right:2rem; 
  font-size:2.5rem; 
  color:#fff; 
  cursor:pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ------------ Responsive ------------ */
@media (max-width:900px) {
  .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .services-grid, .gallery-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width:640px) {
  nav.nav-links { display:none; }
  .mobile-toggle { display:flex; align-items: center; justify-content: center; }
  .hamburger { display:flex; }
  .gallery-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size:2rem; }
  .hero { padding: 3rem 0; }
  section { padding: 3.5rem 0; }
  .hero-grid { gap: 2rem; }
  .hero-card { margin-top: 2rem; }
  .sticky-book-button {
    right: 0.85rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px) + var(--fab-chat-gap));
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    min-width: 200px;
  }
}

/* small utilities */
.ba-button-container { text-align:center; margin:1.2rem 0; }
.ba-button { background:var(--primary); color:#fff; padding:0.7rem 1rem; border-radius:999px; display:inline-block; }

/* center the before/after button and keep it tidy */
.ba-button-container {
  text-align: center;
  margin: 1.6rem 0;
}

.ba-button {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Larger, more prominent before/after button */
.ba-button {
  display: inline-block;
  padding: 1rem 1.6rem;        /* bigger click area */
  font-size: 1.35rem;         /* larger text */
  font-weight: 700;           /* stronger weight */
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
  min-width: 380px;           /* ensures consistent width */
  text-align: center;
}

/* subtle hover/tap feedback */
.ba-button:hover,
.ba-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  outline: none;
}

/* responsive: keep it large but fit small screens */
@media (max-width: 640px) {
  .ba-button {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}


/* ------------ Meet Diana ------------ */
.meet-grid {
  display: grid;
  grid-template-columns: 360px 1fr; /* fixed image column, flexible text column */
  gap: 2rem;
  align-items: center;
}

.meet-photo img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: auto !important;
}

.meet-photo img {
  width: 520px;          /* bigger on desktop */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* signature font for the artist name */
.artist-name {
  font-family: "Great Vibes", cursive;
  font-size: 48px;
  line-height: 1;
  color: #222;
  margin: 0 0 6px;
  letter-spacing: 0.6px;
}

/* responsive adjustments */
@media (max-width: 900px) {
  .meet-photo img { width: 420px; }
  .artist-name { font-size: 40px; }
}
@media (max-width: 600px) {
  .meet-photo img { width: 100%; max-width: 340px; margin: 0 auto; }
  .artist-name { font-size: 32px; text-align: center; }
}

/* ------------ WhatsApp Button ------------ */
.whatsapp-btn {
  background: var(--whatsapp);
  color: #ffffff;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
  transition: all 0.3s ease;
  border: none;
  min-height: 52px;
  min-width: 48px;
  touch-action: manipulation;
}

.whatsapp-btn::before {
  content: '💬';
  font-size: 1.2em;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
  outline: none;
}

/* specific sizing for sticky button */
.sticky-book-button.whatsapp-btn {
  padding: 1rem 1.4rem;
  min-width: 240px;
  text-align: center;
  font-size: 0.95rem;
}

/* Ghost button style for secondary CTAs */
.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ------------ Breadcrumb Navigation ------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 140ms ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ------------ Contact Form Styling ------------ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199, 139, 146, 0.1);
}

.form-submit {
  padding: 0.9rem 1.4rem;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 140ms ease;
  align-self: flex-start;
}

.form-submit:hover,
.form-submit:focus {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 139, 146, 0.2);
  outline: none;
}

/* ------------ Mobile Menu Animation ------------ */
#mobileToggle {
  position: relative;
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 180ms ease;
  border-radius: 8px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#mobileToggle[aria-expanded="true"] {
  transform: rotate(90deg);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 1);
}

#mobileToggle[aria-expanded="true"]::before {
  content: '✕';
  position: absolute;
  font-size: 28px;
}

#mobileToggle[aria-expanded="false"]::before {
  content: '☰';
  position: absolute;
  font-size: 24px;
}

/* ------------ Promo Banner ------------ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 0.8rem 0;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
}

.promo-icon {
  font-size: 1.2rem;
}

.promo-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.promo-text strong {
  font-weight: 700;
}

.promo-close {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: transform 140ms ease;
  line-height: 1;
}

.promo-close:hover {
  transform: scale(1.2);
}

/* ------------ Referral Program Section ------------ */
.referral-section {
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
  padding: 4rem 0;
}

.referral-card {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(199, 139, 146, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.referral-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.referral-title {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.referral-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.referral-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.referral-benefit {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(243, 214, 207, 0.5) 100%);
  border-radius: 12px;
  border: 1.5px solid var(--border-soft);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.referral-benefit h3 {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.referral-benefit p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 0;
}

.referral-benefit strong {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.referral-divider {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.referral-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.referral-btn {
  display: inline-block;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .promo-banner-content {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0 2rem;
  }
  
  .promo-text {
    font-size: 0.85rem;
  }
  
  .promo-close {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .referral-card {
    padding: 2rem 1.5rem;
  }
  
  .referral-title {
    font-size: 1.5rem;
  }
  
  .referral-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .referral-divider {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  
  .referral-benefit {
    min-width: auto;
    width: 100%;
  }
}

/* ------------ FAQ Section ------------ */
.faq-section {
  background: linear-gradient(135deg, rgba(243,214,207,0.15) 0%, var(--bg) 100%);
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(243,214,207,0.2));
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}

.faq-cta p {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* Mobile responsive for FAQ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .faq-item {
    padding: 1.5rem 1.3rem;
  }
  
  .faq-question {
    font-size: 1.05rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
}

/* make BA button larger and centered */
.ba-button.whatsapp-btn {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
  min-width: 260px;
}

/* mobile adjustments */
@media (max-width: 640px) {
  .ba-button.whatsapp-btn { min-width: 180px; padding: 0.9rem 1.2rem; }
  .sticky-book-button.whatsapp-btn { min-width: 160px; padding: 0.8rem 1rem; }
}

/* Two-column desktop gallery with larger photos */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on desktop */
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1500px;         /* overall gallery width; increase to make images wider */
  margin: 0 auto 1.5rem;
  grid-auto-rows: 720px;     /* height of each row; increase for taller images */
  padding: 0 1rem;
}

.ba-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills and crops while keeping center */
  object-position: center;
  display: block;
  border-radius: 12px;
}

/* Tablet breakpoint keeps two columns but reduces height */
@media (max-width: 900px) {
  .ba-gallery {
    grid-auto-rows: 420px;
    max-width: 900px;
  }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .ba-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.7rem;
    padding: 0 0.6rem;
  }
  .ba-gallery img {
    height: auto;
    object-fit: contain;
    border-radius: 10px;
  }
}

/* Center the page title */
.page-title {
  text-align: center;
  font-size: 2rem;           /* adjust size to taste */
  font-weight: 700;
  margin: 1.2rem 0 1.0rem;
  line-height: 1.1;
  color: #222;
}

/* Floating Back button centered at bottom */
.back-button {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;              /* distance from bottom of viewport */
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.1rem;
  background: #25D366;       /* match your WhatsApp green or change */
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  opacity: 0.98;
}

/* Hover and active states */
.back-button:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,0.22); }
.back-button:active { transform: translateX(-50%) translateY(0); }

/* Small-screen adjustments so it doesn't block content */
@media (max-width: 520px) {
  .back-button {
    bottom: 14px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
}

/* Optional: add a subtle entrance animation */
@keyframes floatIn {
  from { transform: translateX(-50%) translateY(12px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 0.98; }
}
.back-button { animation: floatIn 420ms cubic-bezier(.2,.9,.2,1); }

/* Bigger logo containers */
.social-logo {
  width: 72px;               /* bigger square */
  height: 72px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;          /* subtle card background */
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition: transform .14s ease, box-shadow .14s ease;
  text-decoration: none;
}

/* Scale the SVG inside */
.social-logo svg {
  width: 36px;
  height: 36px;
  display: block;
  /* keep fill as currentColor so color below applies */
}

/* Facebook: blue icon on white rounded card */
.social-logo.fb {
  color: #1877F2;            /* Facebook blue applied to SVG via currentColor */
  background: #ffffff;
}

/* Instagram: white icon on Instagram gradient background */
.social-logo.ig {
  color: #ffffff;            /* SVG becomes white */
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

/* Hover effect */
.social-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* Slightly smaller on small screens */
@media (max-width: 640px) {
  .social-logo { width: 56px; height: 56px; border-radius: 10px; }
  .social-logo svg { width: 26px; height: 26px; }
}

/* container */
.details-logos { display:flex; gap:18px; justify-content:center; align-items:center; margin-top:auto; }

/* bigger logo containers */
.social-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,0.10);
  transition:transform .14s ease, box-shadow .14s ease;
  overflow:hidden;
}

/* SVG sizing and color binding */
.social-logo svg { width:40px; height:40px; display:block; }

/* Ensure SVG paths use currentColor even if they have inline fills */
.social-logo svg,
.social-logo svg path,
.social-logo svg g { fill: currentColor !important; }

/* Facebook: blue icon on white card */
.social-logo.fb {
  color: #1877F2;        /* icon color */
  background: #ffffff;   /* card background */
}

/* Instagram: white icon on gradient card */
.social-logo.ig {
  color: #ffffff; 
  background: linear-gradient(135deg,#f58529 0%,#dd2a7b 50%,#8134af 100%);
}

/* Hover */
.social-logo:hover { transform: translateY(-6px); box-shadow:0 20px 44px rgba(0,0,0,0.16); }

/* Mobile */
@media (max-width:640px) {
  .social-logo { width:64px; height:64px; border-radius:10px; }
  .social-logo svg { width:32px; height:32px; }
}

/* default: hide mobile nav */
.site-nav { display: none; }

/* when JS toggles .is-open, show it */
.site-nav.is-open { display: block; }

/* ensure hamburger is visible and clickable */
.hamburger { z-index: 9999; position: relative; cursor: pointer; }

/* mobile-only layout */
@media (min-width: 900px) {
  .site-nav { display: flex !important; } /* desktop shows nav normally */
}

  .site-header { position: relative; z-index: 1200; }
  .site-header { position: relative; z-index: 1200; }
 /* Ensure header is on top and nav visible on desktop */
.site-header { position: relative; z-index: 1200; }

/* Force desktop nav visible */
@media (min-width: 900px) {
  .site-nav { display: flex !important; opacity: 1 !important; visibility: visible !important; }
  .hamburger { display: none; } /* hide hamburger on desktop if you want */
}

/* Mobile: default hidden, shown when .is-open */
.site-nav { display: none; }
.site-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: #fff; z-index: 1199; }

/* Make sure links are visible */
.site-nav a { color: #222 !important; text-decoration: none; padding: 12px 16px; display: block; }

.ba-gallery { display:grid; grid-template-columns: repeat(2, 1fr); gap:1rem; }

.ba-item { position: relative; overflow: hidden; border-radius:12px; }
.ba-item img { width:100%; height:100%; object-fit:cover; display:block; }

/* caption overlay */
.ba-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;                     /* change to top:14px for top placement */
  background: rgba(0,0,0,0.45);     /* semi-opaque backdrop for contrast */
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem); /* responsive size */
  line-height: 1;
  text-align: center;
  max-width: 92%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
}

/* small screens: slightly smaller caption */
@media (max-width:640px) {
  .ba-caption { bottom: 10px; font-size: 0.95rem; padding:6px 10px; }
}

/* Lightbox overlay */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 1300;
}
#lightbox img { max-width: 92%; max-height: 92%; border-radius: 8px; }
.close-btn { position: absolute; top: 1rem; right: 1rem; font-size: 2rem; color: #fff; cursor: pointer; background: transparent; border: none; }

/* Mobile tuning: stack Meet Diana, tidy gallery, larger touch targets and CTAs */
@media (max-width: 900px) {
  /* Force single-column main flow so content doesn't float right */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Meet section: vertical stack, centered content */
  .meet-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 18px 6px;
  }
  .meet-photo { width: 100%; max-width: 520px; margin: 0 auto; }
  .meet-photo img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 39px rgba(0, 0, 0, 0.06);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 66%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 66%, rgba(0,0,0,0) 100%);
  }
  .meet-content { text-align: center; width:100%; max-width:760px; padding:0 6px; }
  .artist-name { font-size: 50px; margin-bottom: 6px; }
  h2 { font-size: 24px; margin-top: 6px; }

  /* Make feature list single column and readable */
  .features { columns: 1; max-width: 360px; margin: 12px auto 0; text-align:left; padding-left: 0; }
  .features li { margin: 8px 0; }

  /* Gallery: 2 columns for phones in portrait, good spacing */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 12px 6px !important;
  }
  .gallery-item { border-radius: 12px; overflow: hidden; }

  /* Ensure gallery images cover the cell and not stretch awkwardly */
  .gallery-item img { width:100%; height:220px; object-fit:cover; display:block; border-radius:12px; }

  /* BA items smaller and responsive */
  .ba-gallery, .before-after .ba-grid { grid-template-columns: 1fr !important; gap: 14px !important; padding: 12px !important; }

  /* Floating CTA positioning and hit area */
  .floating-cta, .book-floating, .book-btn {
    right: 12px !important;
    bottom: 12px !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12) !important;
  }

  /* Prevent header overlap with first section (if header is sticky) */
  header + section { padding-top: 8px; }

  /* Make lightbox controls a bit larger on mobile */
  .lb-btn { padding: 12px 14px; font-size: 24px; border-radius: 10px; }
}

/* ------------ Eye Shapes Page Styling ------------ */
.eye-shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.eye-shape-card {
  background: #ffffff;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  transition: all 200ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.eye-shape-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(199, 139, 146, 0.15);
  transform: translateY(-4px);
}

.eye-shape-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: var(--bg);
  display: block;
}

.eye-shape-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.eye-shape-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.eye-shape-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.eye-shape-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.eye-shape-details h4 {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.eye-shape-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ------------ Blog Styles ------------ */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.blog-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
}

.blog-section {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.blog-card-image {
  width: 100%;
  height: 280px;
  transition: all 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.blog-category {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  flex-grow: 1;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Blog CTA Section */
.blog-cta-section {
  background: linear-gradient(135deg, rgba(243,214,207,0.15), rgba(199,139,146,0.08));
  padding: 4rem 0;
}

.blog-cta-card {
  background: linear-gradient(135deg, #fff, #fbe1db);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.6);
}

.blog-cta-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.blog-cta-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

/* Blog Article Pages */
.blog-article-hero {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(243,214,207,0.3) 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-soft);
}

.blog-article-header {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-article-category {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-article-excerpt {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
}

.blog-article-content {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.blog-article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 2rem 0 0.8rem;
}

.blog-article-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.blog-article-content ul,
.blog-article-content ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.blog-article-content li {
  margin-bottom: 0.6rem;
}

.blog-article-content strong {
  color: var(--text-main);
  font-weight: 700;
}

.blog-article-content em {
  color: var(--primary);
  font-style: italic;
}

.blog-article-highlight {
  background: linear-gradient(135deg, rgba(243,214,207,0.2), rgba(199,139,146,0.1));
  border-left: 4px solid var(--primary);
  padding: 1.5rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.blog-back-link:hover {
  color: var(--primary-dark);
  transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-hero-title {
    font-size: 2rem;
  }

  .blog-article-title {
    font-size: 1.8rem;
  }

  .blog-article-content {
    padding: 2rem 0;
  }

  .blog-cta-card {
    padding: 2rem 1.5rem;
  }

  .blog-cta-card h2 {
    font-size: 1.4rem;
  }
}


.eye-shape-details li {
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.eye-shape-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.eye-shape-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.mapping-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.suggestion-tag {
  background: linear-gradient(135deg, var(--accent) 0%, rgba(243, 214, 207, 0.7) 100%);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-soft);
}

/* Responsive for eye shapes grid */
@media (max-width: 900px) {
  .eye-shapes-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .eye-shapes-grid {
    grid-template-columns: 1fr;
  }

  .eye-shape-card {
    padding: 1.5rem;
  }

  .eye-shape-icon {
    font-size: 2.5rem;
  }

  .eye-shape-card h3 {
    font-size: 1.2rem;
  }

/* Narrow phones */
@media (max-width: 420px) {
  .artist-name { font-size: 32px; }
  h2 { font-size: 20px; }
  .gallery-item img { height: 180px; }
  .meet-photo img { border-radius: 14px; }
  .ba-wrapper { aspect-ratio: 1 / 1 !important; border-radius: 12px !important; }
  .ba-handle { width: 42px; height: 42px; margin-left: -21px; }
  .ba-handle-knob { width: 26px; height: 26px; }
  .floating-cta, .book-floating, .book-btn { right: 10px; bottom: 10px; padding: 10px 14px; font-size: 14px; }
}

