/*
Theme Name: Anna's Hair & Beauty
Theme URI: https://annashairandbeauty.de
Author: SurIT
Author URI: https://sur-it.de
Description: Custom theme for Anna's Hair & Beauty salon
Version: 1.0.0
*/

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

:root {
  --rose: #C4907D;
  --rose-light: #D4A898;
  --rose-dark: #A87565;
  --cream: #FAF8F6;
  --warm-white: #FFFDFB;
  --dark: #2A2220;
  --mid: #6B5B56;
  --light-mid: #A09490;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--dark); background: var(--warm-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,253,251,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(196,144,125,0.15); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(42,34,32,0.06); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: var(--mid); font-size: 14px; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links .btn-nav { background: var(--rose); color: #fff; padding: 10px 22px; border-radius: 6px; font-weight: 600; transition: background 0.2s; }
.nav-links .btn-nav:hover { background: var(--rose-dark); color: #fff; }
.nav-links .btn-nav.active { color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
@media (max-width: 700px) {
  .hamburger { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; flex-direction: column; background: var(--warm-white); padding: 80px 32px 32px; gap: 24px; transition: right 0.35s ease; box-shadow: -4px 0 30px rgba(0,0,0,0.08); }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 99; }
  .overlay.open { display: block; }
}

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--rose); color: #fff; padding: 14px 36px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 15px; letter-spacing: 0.04em; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 80px 24px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 40px); color: var(--dark); margin-bottom: 40px; line-height: 1.2; }

/* SOCIAL LINK */
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--rose); text-decoration: none; font-size: 14px; font-weight: 500; transition: opacity 0.2s; }
.social-link:hover { opacity: 0.7; }
.social-link svg { width: 20px; height: 20px; fill: var(--rose); }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 40px 24px; text-align: center; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06); }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--rose-light); }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 12px; }
.footer-logo { height: 36px; margin-bottom: 16px; filter: brightness(2) saturate(0.3); opacity: 0.7; }

/* HERO */
.hero { position: relative; width: 100%; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--dark); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: brightness(0.7); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px; max-width: 700px; }
.hero-content h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 7vw, 64px); color: #fff; letter-spacing: 0.01em; line-height: 1.15; margin-bottom: 16px; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 17px; font-weight: 300; margin-bottom: 36px; letter-spacing: 0.02em; }

/* HIGHLIGHTS */
.highlights { background: var(--cream); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.highlight-card { text-align: center; padding: 40px 24px; }
.highlight-icon { width: 48px; height: 48px; margin: 0 auto 20px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; }
.highlight-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.highlight-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.highlight-card p { color: var(--mid); font-size: 14px; line-height: 1.7; }
@media (max-width: 700px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 8px; }
  .highlight-card { padding: 28px 20px; }
}

/* HOURS */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(196,144,125,0.15); font-size: 15px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--mid); }
.hours-note { margin-top: 16px; font-size: 13px; color: var(--light-mid); font-style: italic; }
.hours-cta { background: var(--cream); border-radius: 12px; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.hours-cta h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.hours-cta p { color: var(--mid); font-size: 15px; line-height: 1.7; }
@media (max-width: 700px) {
  .hours-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--warm-white); border-radius: 10px; text-decoration: none; color: var(--dark); transition: box-shadow 0.2s; }
.contact-item:hover { box-shadow: 0 4px 16px rgba(196,144,125,0.15); }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; fill: #fff; }
.contact-text { font-size: 14px; }
.contact-text .label { color: var(--light-mid); font-size: 12px; display: block; margin-bottom: 2px; }

/* ABOUT */
.about-hero { padding: 140px 24px 80px; background: var(--cream); }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; box-shadow: 0 12px 40px rgba(42,34,32,0.1); }
.about-label { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.about-title { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 8px; line-height: 1.15; }
.about-subtitle { font-family: var(--serif); font-size: 20px; color: var(--rose); font-style: italic; margin-bottom: 28px; }
.about-text p { color: var(--mid); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-signature { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--rose); margin-top: 28px; }
@media (max-width: 700px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

/* STATS */
.stats { padding: 64px 24px; background: var(--warm-white); }
.stats-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-number { font-family: var(--serif); font-size: 44px; font-weight: 400; color: var(--rose); line-height: 1; }
.stat-label { font-size: 13px; color: var(--mid); margin-top: 6px; letter-spacing: 0.04em; }
@media (max-width: 500px) {
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* CTA */
.cta { padding: 80px 24px; background: var(--dark); text-align: center; }
.cta h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 40px); color: #fff; font-weight: 400; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; }

/* MAP */
.map { padding: 0; }
.map iframe { display: block; width: 100%; height: 400px; border: 0; }
@media (max-width: 700px) {
  .map iframe { height: 280px; }
}

/* BOOKING */
.booking-header { padding: 100px 24px 28px; text-align: center; background: var(--cream); }
.booking-label { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.booking-title { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 12px; line-height: 1.15; }
.booking-subtitle { color: var(--mid); font-size: 15px; max-width: 500px; margin: 0 auto; }
.booking-widget { max-width: 1000px; margin: -12px auto 0; padding: 0 24px 60px; }
.booking-widget .salonized-booking { width: 100%; }
.booking-widget iframe { min-height: 900px !important; border-radius: 12px !important; }
@media (max-width: 700px) {
  .booking-header { padding: 88px 16px 20px; }
  .booking-widget { padding: 0 12px 40px; }
  .booking-widget iframe { min-height: 700px !important; }
}
