/* =============================================
   Salon Nova – Friseur & Barbershop – styles.css
   Mobile-first, no AOS, no Lenis
============================================= */

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

:root {
  --black: #1a1a1a;
  --black-mid: #2d2d2d;
  --rose-gold: #c9747a;
  --rose-gold-light: #e0969c;
  --rose-gold-pale: #f5e4e5;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,26,26,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,116,122,0.2);
}
.logo { color: var(--white); font-size: 1.15rem; font-weight: 900; letter-spacing: 0.12em; }
.logo span { color: var(--rose-gold); }
.nav-cta {
  background: var(--rose-gold); color: var(--white); text-decoration: none;
  padding: 9px 20px; border-radius: 6px; font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--rose-gold-light); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,116,122,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 680px; position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  border: 1px solid rgba(201,116,122,0.5);
  color: var(--rose-gold);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  margin-bottom: 38px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-primary {
  background: var(--rose-gold); color: var(--white); text-decoration: none;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--rose-gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white); text-decoration: none;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.35); transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

/* ── Section commons ── */
section { padding: 88px 0; }
.section-label {
  display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px;
}
section h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin-bottom: 48px; }

/* ── Services ── */
.services { background: var(--gray-light); }
.services-grid { display: grid; gap: 24px; }
.service-category {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.cat-header {
  padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
}
.cat-header.damen { background: linear-gradient(135deg, #c9747a 0%, #a85560 100%); }
.cat-header.herren { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }
.cat-header.barbershop { background: linear-gradient(135deg, #3d2b2b 0%, #2d1a1a 100%); }
.cat-icon { font-size: 1.8rem; }
.cat-header h3 { color: var(--white); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.05em; flex: 1; }
.cat-price {
  background: rgba(255,255,255,0.2); color: var(--white);
  padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 700;
}
.price-list { list-style: none; padding: 8px 0; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 28px; font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:last-child { font-weight: 700; color: var(--rose-gold); }

/* ── Team ── */
.team { background: var(--white); }
.team-grid { display: grid; gap: 28px; }
.team-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 32px 28px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; color: var(--white);
  margin: 0 auto 20px;
}
.team-avatar.female { background: linear-gradient(135deg, var(--rose-gold) 0%, #a85560 100%); }
.team-avatar.male { background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%); border: 3px solid var(--rose-gold); }
.team-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.team-title { color: var(--rose-gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.team-bio { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.team-skills span {
  background: var(--rose-gold-pale); color: var(--rose-gold);
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
}

/* ── Trust ── */
.trust { background: var(--black); }
.trust .section-label { color: var(--rose-gold); }
.trust h2 { color: var(--white); }
.trust-grid { display: grid; gap: 20px; }
.trust-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,116,122,0.2);
  border-radius: var(--radius); padding: 28px 24px;
}
.trust-icon { font-size: 2rem; margin-bottom: 14px; }
.trust-item h3 { color: var(--rose-gold); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.trust-item p { color: rgba(255,255,255,0.68); font-size: 0.9rem; }

/* ── Testimonials ── */
.testimonials { background: var(--gray-light); }
.testi-grid { display: grid; gap: 22px; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 3px solid var(--rose-gold);
}
.stars { color: var(--rose-gold); font-size: 1rem; margin-bottom: 14px; }
.testi-card p { color: var(--text-muted); font-size: 0.94rem; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold) 0%, #a85560 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center; padding: 88px 24px;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px; }
.cta-address { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ── Footer ── */
.footer { background: #0f0f0f; padding: 24px 0; text-align: center; }
.footer p { color: rgba(255,255,255,0.40); font-size: 0.83rem; }
.footer a { color: rgba(201,116,122,0.7); text-decoration: none; }
.footer a:hover { color: var(--rose-gold); }

/* ── Responsive: Tablet ── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: Desktop ── */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
