/* ==========================================================================
   Berbershop – Theme Variablen
   Farben/Fonts hier zentral anpassen
   ========================================================================== */
:root {
  --black: #0d0d0d;
  --black-soft: #141414;
  --gold: #c9a35a;
  --gold-light: #e0c37f;
  --off-white: #f2ede4;
  --gray: #a8a29a;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1120px;
  --radius: 10px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  background: transparent;
}
.btn-whatsapp {
  background: #25d366;
  color: #0d0d0d;
}
.btn-small { padding: 9px 18px; font-size: 0.85rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 163, 90, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--off-white);
  font-weight: 700;
}
.logo span { color: var(--gold); }

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off-white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav a:hover { opacity: 1; color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* TODO: echtes Foto/Video als background-image bzw. <video> hier einsetzen */
  background:
    radial-gradient(circle at 30% 20%, rgba(201,163,90,0.12), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(201,163,90,0.08), transparent 55%),
    linear-gradient(160deg, #0d0d0d, #1a1a1a 60%, #0d0d0d);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.2), rgba(13,13,13,0.75));
}
.hero-content { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 40px; }

.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--off-white);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.hero-claim {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
  border: 1px solid rgba(201, 163, 90, 0.35);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.badge-gold { background: rgba(201,163,90,0.1); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-dark { background: var(--black-soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--off-white); }
.section-note { margin-top: 14px; color: var(--gray); font-size: 0.9rem; }
.section-note a { color: var(--gold-light); text-decoration: underline; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text { color: var(--gray); font-size: 1.05rem; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--off-white);
}
.about-features .icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(201, 163, 90, 0.04);
  border: 1px solid rgba(201, 163, 90, 0.18);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-card h3 { font-size: 1.05rem; color: var(--off-white); margin-bottom: 10px; font-weight: 600; font-family: var(--font-body); }
.service-meta { color: var(--gold-light); font-size: 0.85rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1c1c1c, #0d0d0d);
  border: 1px dashed rgba(201, 163, 90, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== Testimonials ===== */
.rating-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201, 163, 90, 0.15);
  border-radius: var(--radius);
  padding: 30px;
}
.stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.quote { color: var(--off-white); font-size: 0.95rem; margin-bottom: 16px; }
.author { color: var(--gray); font-size: 0.82rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid rgba(201, 163, 90, 0.15); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--gold-light); }

.contact-details p { margin-bottom: 14px; color: var(--gray); font-size: 0.95rem; }
.contact-details a { color: var(--off-white); }
.contact-details a:hover { color: var(--gold-light); }

.contact-ctas { display: flex; gap: 14px; margin: 24px 0; flex-wrap: wrap; }
.payment-note { color: var(--gray); font-size: 0.82rem; }

.map-wrap {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 163, 90, 0.2);
  filter: grayscale(0.3) contrast(1.1);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(201, 163, 90, 0.15);
  padding: 48px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.08em; }
.footer-logo span { color: var(--gold); }
.social-icons { display: flex; gap: 18px; }
.social-icons a { color: var(--gold-light); transition: color var(--transition); }
.social-icons a:hover { color: var(--gold); }
.footer-copy { color: var(--gray); font-size: 0.85rem; }
.footer-credit { color: var(--gray); font-size: 0.78rem; opacity: 0.7; }
.footer-credit a { text-decoration: underline; }

/* ===== Scroll animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 163, 90, 0.15);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .header-actions .btn-small { display: none; }
}
