/* ==== Master Barbershop donkere stijl ==== */
:root {
  --ink: #f5f5f5;
  --bg: #111111;
  --muted: #cccccc;
  --card-bg: #1a1a1a;
  --accent: linear-gradient(180deg, #ffffff, #bfbfbf 40%, #999999 60%, #e0e0e0);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  --radius: 16px;
}

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

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* ==== Header ==== */
header {
  background: rgba(20, 20, 20, 0.95);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand img {
  height: 55px;
  width: auto;
  display: block;
}

/* Menu rechts uitlijnen */
.nav {
  justify-content: space-between;
}

/* Dropdown basis */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  top: 100%;
  left: 0;
  min-width: 180px;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #222;
}

/* Toon submenu op hover (desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobiel styling voor dropdown */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    min-width: 100%;
    border: none;
    box-shadow: none;
    background: #111;
  }

  .dropdown-content a {
    padding: 12px;
    border-top: 1px solid #333;
  }
}

/* Hamburger knop (mobiel) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink);
  cursor: pointer;
}

/* ==== Hero ==== */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #111 url('../img/hero.jpg') center/cover no-repeat;
  color: #fff;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.35), transparent);
}

.hero .inner {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 10px;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #ddd;
  margin-bottom: 20px;
}

/* ==== CTA Buttons ==== */
.cta,
.cta-link,
.review-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #999;
  transition: all 0.3s ease;
}

.cta:hover,
.cta-link:hover,
.review-button:hover {
  background: linear-gradient(180deg, #e0e0e0, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-color: #ccc;
}

/* ==== Secties ==== */
section {
  padding: 60px 20px;
}

h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  text-align: center;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==== Cards ==== */
.card,
.review,
.contact-block,
.hours {
  background-color: var(--card-bg);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 20px;
  color: var(--ink);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.icon {
  filter: brightness(0) invert(1);
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

/* ==== Prijslijst ==== */
#prijzen {
  position: relative;
  padding: 60px 20px;
  background: url('../img/marble-bg.jpg') center/cover no-repeat fixed;
  color: #fff;
  overflow: hidden;
}

#prijzen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

#prijzen .container {
  position: relative;
  z-index: 1;
}

#prijzen h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#prijzen .prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#prijzen .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#prijzen .price-row .name {
  font-weight: 500;
  color: #fff;
}

#prijzen .price-row span:last-child {
  font-weight: 700;
  color: #e0e0e0;
}

#prijzen .price-row.vip {
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #ffffff, #bfbfbf, #999999, #e0e0e0) 1;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==== Gallery ==== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 992px) {
  .gallery-grid img {
    height: 420px;
  }
}

.focus-top { object-position: top; }
.focus-center { object-position: center; }
.focus-bottom { object-position: bottom; }

/* ==== Reviews ==== */
.reviews-section {
  padding: 60px 20px;
  background: url('../img/marble-bg.jpg') center/cover no-repeat fixed;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.review-card .stars {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 12px;
}

.review-card .review-text {
  font-style: italic;
  margin-bottom: 12px;
}

.review-card small {
  display: block;
  color: #aaa;
  font-size: 0.9rem;
}

/* ==== Contact ==== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-block,
.hours,
.map-embed {
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hours h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 5px;
}

.contact-block a:hover {
  color: #FFD700;
}


/* ==== Footer ==== */
footer {
  background: #111;
  color: var(--muted);
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Navigatie standaard (desktop) */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  /* Hamburger zichtbaar */
  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--ink);
    cursor: pointer;
  }

  /* Menu standaard verborgen */
  .menu {
    display: none; /* <<< HIER zit de fix */
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    background: #111;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  /* Actief menu zichtbaar */
  .menu.active {
    display: flex; /* <<< HIER zit de fix */
    max-height: 500px;
    opacity: 1;
  }

  /* Menu links */
  .menu a {
    font-size: 1.1rem;
    padding: 10px;
  }

  .cta-link {
    order: 99;
    margin-top: 12px;
  }

  /* Dropdown styling mobiel */
  .dropdown-content {
    position: static;
    min-width: 100%;
    border: none;
    box-shadow: none;
    background: #111;
  }

  .dropdown-content a {
    padding: 12px;
    border-top: 1px solid #333;
  }
}
/* ==== Contact responsive ==== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr; /* alles onder elkaar */
    gap: 20px;
    text-align: center;
  }

  .hours li {
    justify-content: center; /* dag + tijd gecentreerd */
    gap: 15px; /* ruimte tussen dag en tijd */
  }

  .map-embed iframe {
    width: 100%;   /* kaart vult hele breedte */
    height: 300px; /* vaste hoogte op mobiel */
  }
}

