/* ===================================================================
   BARBERSHOP VOORBEELD — Freestyle Template
   Dark/moody barbershop theme with warm amber tones
   =================================================================== */

:root {
  --color-bg: #0f0d0a;
  --color-bg-alt: #1a1714;
  --color-surface: #231f1b;
  --color-amber: #c9985a;
  --color-amber-light: #e8c48a;
  --color-gold: #d4a853;
  --color-text: #f4ecdd;
  --color-text-muted: #a89b8a;
  --color-border: rgba(201, 152, 90, 0.2);
  --color-dark: #0a0907;

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

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
em { font-style: italic; color: var(--color-amber); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--sp-3);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-dark);
}
.btn-primary:hover {
  background: var(--color-amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 152, 90, 0.3);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-7);
  font-size: 1rem;
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  background: rgba(15, 13, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}
.logo span {
  color: var(--color-amber);
  margin-left: 2px;
}

.nav ul {
  display: flex;
  gap: var(--sp-6);
}
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.nav a:hover { color: var(--color-amber); }

.header-cta {
  padding: var(--sp-2) var(--sp-5);
  background: var(--color-amber);
  color: var(--color-dark);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--color-amber-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 10, 0.7) 0%,
    rgba(15, 13, 10, 0.4) 40%,
    rgba(15, 13, 10, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--sp-10) var(--sp-5);
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--sp-5);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--color-text);
  margin-bottom: var(--sp-5);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--sp-7);
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-amber);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ====== ABOUT ====== */
.about {
  padding: var(--sp-10) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--sp-5);
}
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.8;
}

/* ====== STATS ====== */
.stats {
  padding: var(--sp-9) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-amber);
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ====== SERVICES ====== */
.services {
  padding: var(--sp-10) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--color-amber);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(201, 152, 90, 0.1);
}

.service-icon {
  color: var(--color-amber);
  margin-bottom: var(--sp-5);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-3);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-amber);
  font-weight: 700;
}

/* ====== GALLERY ====== */
.gallery {
  padding: var(--sp-10) 0;
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ====== FAQ ====== */
.faq {
  padding: var(--sp-10) 0;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  transition: var(--transition);
}
.faq-item summary:hover { color: var(--color-amber); }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-amber);
  transition: var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--color-text-muted);
  margin-top: var(--sp-3);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ====== CTA ====== */
.cta {
  position: relative;
  padding: var(--sp-10) 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, 0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--sp-4);
}
.cta-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--sp-7);
}

/* ====== FOOTER ====== */
.footer {
  padding: var(--sp-9) 0 var(--sp-6);
  border-top: 1px solid var(--color-border);
  background: var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: var(--sp-3);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--sp-4);
}
.footer-col ul li {
  margin-bottom: var(--sp-2);
}
.footer-col a, .footer-col li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--color-amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  color: var(--color-text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--color-amber); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav--open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--color-bg);
    z-index: 99;
    padding: var(--sp-8) var(--sp-5);
  }
  .nav--open ul {
    flex-direction: column;
    gap: var(--sp-5);
  }
  .nav--open a {
    font-size: 1.2rem;
    color: var(--color-text);
  }
  .mobile-toggle { display: flex; }
  .header-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
