/* ===== VELVET — Salón de Belleza | Demo LuKami-Studio ===== */

:root {
  --bg: #0f0b12;
  --bg-soft: #17111c;
  --surface: #1e1622;
  --text: #f5f0f2;
  --text-muted: #b3a6ae;
  --gold: #d4af6a;
  --fuchsia: #ff3d8a;
  --gradient: linear-gradient(135deg, var(--fuchsia) 0%, var(--gold) 100%);
  --line: rgba(245, 240, 242, 0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 16px;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section { padding: 6rem 0; }
.section-head { max-width: 620px; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.section-head p { color: var(--text-muted); margin-top: 1rem; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #140a10; }
.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-outline { border-color: rgba(245,240,242,0.3); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-demo-disabled { opacity: 0.5; cursor: not-allowed; }
.btn-demo-disabled:hover { transform: none; }

.demo-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem; font-style: italic; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.4rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: rgba(15, 11, 18, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--fuchsia); }
.nav-links { display: flex; align-items: center; gap: 2.4rem; font-size: 0.9rem; font-weight: 600; }
.nav-links a:not(.btn) { color: var(--text-muted); transition: color 0.2s ease; }
.nav-links a:not(.btn):hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
  padding: 0.4rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 190;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-family: var(--font-display);
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,11,18,0.96) 0%, rgba(15,11,18,0.75) 45%, rgba(15,11,18,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding-top: 4rem; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 480px; margin-bottom: 2.3rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 2.6rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-meta-item span { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.hero-meta-item small { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(212,175,106,0.4);
  border-radius: var(--radius);
  margin: 14px;
  pointer-events: none;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,175,106,0.4); }
.service-img { aspect-ratio: 3/4; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 1.4rem 1.3rem 1.6rem; }
.service-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.9rem; }
.service-price { color: var(--gold); font-weight: 700; font-family: var(--font-display); font-size: 1.15rem; }
.service-from { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== GALLERY ===== */
.gallery-grid { columns: 4 220px; column-gap: 1.1rem; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,11,18,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,6,10,0.95);
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.8rem; right: 2rem; font-size: 2rem; color: var(--text); background: none; border: none; cursor: pointer; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: var(--text);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.process-step { text-align: center; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #140a10;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 1.2rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testimonial-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem; }
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,61,138,0.16);
  color: var(--fuchsia);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { color: var(--text-muted); font-size: 0.78rem; }

/* ===== BOOKING / RESERVA ===== */
.reserva {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 5rem 3rem;
}
.reserva-bg {
  position: absolute; inset: 0;
  background-image: url('../img/reserva-bg.jpg');
  background-size: cover;
  background-position: center;
}
.reserva-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,11,18,0.92) 0%, rgba(255,61,138,0.35) 100%);
}
.reserva-content { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; }
.reserva h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.reserva p { color: var(--text-muted); margin: 1.1rem 0 2rem; }

.booking-card {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  max-width: 560px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; margin-bottom: 0.5rem; color: var(--text-muted); }
.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

/* ===== FOOTER ===== */
footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 1rem; display: block; }
.footer-logo span { color: var(--fuchsia); }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.85rem; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.demo-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(212,175,106,0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}
.made-by-lukami {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.made-by-lukami img { border-radius: 4px; display: block; }
.made-by-lukami:hover { color: var(--text); border-color: rgba(212,175,106,0.4); }

/* ===== ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ===== ANCHOR OFFSET (one-page nav) ===== */
section[id] { scroll-margin-top: 90px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 420px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid, .process-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reserva { padding: 3.2rem 1.6rem; }
  .booking-card { padding: 1.6rem; }
  .hero-meta { gap: 1.6rem; }
}
