/* ============================================
   KENAFI LASHES STUDIO — style.css
   Theme: Dark & Gold Luxury
============================================ */

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

:root {
  --gold-1: #BF953F;
  --gold-2: #FCF6BA;
  --gold-3: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
  --dark-1: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --text-light: #f0ead6;
  --text-muted: #7a6a4a;
  --transition: 0.4s ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-1);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(191,149,63,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: var(--gold-1);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-1);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold-1);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- GOLD DIVIDER ---- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 24px auto;
}

/* ============================================
   HEADER
============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(191,149,63,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1; }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

#nav ul { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-1);
  transition: var(--transition);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold-1); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold-gradient);
  padding: 10px 20px;
  transition: var(--transition);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(191,149,63,0.3); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-1);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240,234,214,0.65);
  margin-bottom: 48px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-1), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

/* ============================================
   ABOUT
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow,
.about-text .section-title { text-align: left; }
.about-text .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }

.about-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.about-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.feature-icon { color: var(--gold-1); font-size: 0.75rem; flex-shrink: 0; }

.about-images { position: relative; }

.about-img-main { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 44%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--dark-1);
  box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(191,149,63,0.08);
}

.service-card {
  background: var(--dark-2);
  padding: 48px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover { background: var(--dark-3); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--gold-1); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-prices {
  border-top: 1px solid rgba(191,149,63,0.12);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.price-item span:first-child { color: var(--text-muted); font-weight: 300; }

.price-item .price {
  font-family: var(--font-serif);
  font-size: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span { font-size: 1.8rem; color: var(--gold-1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-more { text-align: center; }

/* ============================================
   PRICES
============================================ */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Center last two items when 5 total */
.prices-grid .price-card:nth-child(4) { grid-column: 1; }
.prices-grid .price-card:nth-child(5) { grid-column: 2; }

.price-card {
  overflow: hidden;
  border: 1px solid rgba(191,149,63,0.1);
  transition: var(--transition);
  cursor: pointer;
}

.price-card img { width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.price-card:hover { border-color: var(--gold-1); box-shadow: 0 0 30px rgba(191,149,63,0.15); }
.price-card:hover img { transform: scale(1.02); }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(191,149,63,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-1);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-item h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
  transition: var(--transition);
}

.contact-item a:hover { color: var(--gold-1); }

.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(191,149,63,0.15);
  padding: 56px 44px;
  text-align: center;
}

.logo-big {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-3);
  line-height: 1;
  margin-bottom: 4px;
}

.logo-big-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.contact-hours h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-hours p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

/* ============================================
   FOOTER
============================================ */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(191,149,63,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 56px;
}

.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--gold-3);
  line-height: 1;
  margin-bottom: 2px;
}

.footer-logo-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(191,149,63,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover { border-color: var(--gold-1); color: var(--gold-1); }

.footer-links h4,
.footer-contact-col h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text-light); }

.footer-contact-col p {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 6px;
}

.footer-contact-col a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-col a:hover { color: var(--gold-1); }

/* PEO */
.footer-peo {
  border-top: 1px solid rgba(191,149,63,0.08);
  padding: 28px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.peo-logos { display: flex; gap: 8px; flex-shrink: 0; }

.peo-badge {
  width: 48px;
  height: 36px;
  border: 1px solid rgba(191,149,63,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.peo-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.peo-text strong { color: rgba(240,234,214,0.7); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(191,149,63,0.05);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.73rem; color: var(--text-muted); font-weight: 300; }
.footer-bottom strong { color: var(--gold-1); }

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid rgba(191,149,63,0.3);
  color: var(--gold-1);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold-1); color: #0a0a0a; }

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

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

/* ============================================
   RESPONSIVE — TABLET
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid .price-card:nth-child(4),
  .prices-grid .price-card:nth-child(5) { grid-column: auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================
   RESPONSIVE — MOBILE
============================================ */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Mobile Nav */
  #nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  #nav.open { right: 0; }

  #nav ul { flex-direction: column; gap: 28px; text-align: center; }
  .nav-link { font-size: 0.95rem; letter-spacing: 3px; }
  .nav-cta { font-size: 0.85rem; padding: 14px 36px; }

  .menu-toggle { display: flex; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Prices */
  .prices-grid { grid-template-columns: 1fr; }
  .prices-grid .price-card:nth-child(4),
  .prices-grid .price-card:nth-child(5) { grid-column: auto; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; padding: 56px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-peo { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .service-card { padding: 36px 24px; }
  .contact-card { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
