/* ==========================================================================
   HAIRDRESS BY JESSY - STYLESHEET
   Gestructureerd per sectie en pagina
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & CONFIGURATIE
   ========================================================================== */
:root {
  /* Kleuren */
  --primary-gold: #D4AF37;
  --gold-light: #E5C557;
  --gold-dark: #B8941F;
  
  --text-dark: #e8e8e8;
  --text-light: #b8b8b8;
  --text-muted: #888888;
  
  --bg-light: #1f1f1f;
  --bg-light-alt: #343434;
  
  --border-light: #404040;
  
  /* Typografie */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
  
  /* Transities */
  --transition: all 0.3s ease;
}

/* ==========================================================================
   2. BASE STYLES & RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 110px;
}


body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #0d0d0d;
  transition: var(--transition);
  position: relative;
}

/* Marmer achtergrond effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Hoofdader - dik goud diagonaal */
    linear-gradient(115deg,
      transparent 0%,
      transparent 42%,
      rgba(212, 175, 55, 0.25) 43%,
      rgba(229, 197, 87, 0.35) 44%,
      rgba(212, 175, 55, 0.2) 45%,
      transparent 46%,
      transparent 100%
    ),
    /* Secundaire ader */
    linear-gradient(105deg,
      transparent 0%,
      transparent 18%,
      rgba(212, 175, 55, 0.15) 19%,
      rgba(229, 197, 87, 0.2) 19.5%,
      rgba(212, 175, 55, 0.12) 20%,
      transparent 21%,
      transparent 65%,
      rgba(212, 175, 55, 0.18) 66%,
      rgba(184, 148, 31, 0.22) 67%,
      rgba(212, 175, 55, 0.1) 68%,
      transparent 69%,
      transparent 100%
    ),
    /* Dunne aders */
    linear-gradient(125deg,
      transparent 0%,
      transparent 30%,
      rgba(229, 197, 87, 0.1) 30.5%,
      transparent 31%,
      transparent 55%,
      rgba(212, 175, 55, 0.08) 55.5%,
      transparent 56%,
      transparent 78%,
      rgba(229, 197, 87, 0.12) 78.5%,
      transparent 79%,
      transparent 100%
    ),
    /* Grijze marmer aders voor diepte */
    linear-gradient(100deg,
      transparent 0%,
      transparent 25%,
      rgba(60, 60, 60, 0.4) 26%,
      rgba(80, 80, 80, 0.3) 27%,
      transparent 28%,
      transparent 52%,
      rgba(70, 70, 70, 0.35) 53%,
      rgba(50, 50, 50, 0.25) 54%,
      transparent 55%,
      transparent 100%
    ),
    /* Organische gouden gloed */
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 60%, rgba(229, 197, 87, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  background-color: #0d0d0d;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   3. TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ==========================================================================
   4. BUTTONS (Globaal)
   ========================================================================== */

/* Primary CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, var(--primary-gold) 0%, var(--gold-light) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  font-size: 1rem;
  transition: var(--transition);
}

/* Telefoonnummer in knop - verborgen op mobiel, getoond op desktop */
.tel {
  display: none;
}

.bel-tekst {
  display: inline;
}

@media (min-width: 661px) {
  .tel {
    display: inline;
  }
  
  .bel-tekst {
    display: none;
  }
}

/* Outline/Ghost Button */
.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--primary-gold);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  margin-top: 2.5rem;
}

.cta-button-outline:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button-outline i {
  font-size: 0.9rem;
}

/* Contact Buttons Container */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .cta-button {
  min-width: 220px;
  justify-content: center;
}


/* ==========================================================================
   5. HEADER & NAVIGATIE (Alle pagina's)
   ========================================================================== */
.header {
  background: rgba(31, 31, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--primary-gold);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 0;
}

/* Desktop Navigatie */
.nav {
  display: block;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-gold);
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.1);
}

/* ==========================================================================
   6. SECTIE ALGEMENE STYLES
   ========================================================================== */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-gold) 20%, 
    var(--gold-light) 50%, 
    var(--primary-gold) 80%, 
    transparent 100%);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Page Header (voor subpagina's) */
.page-header {
  padding: 6rem 0 4rem;
  background: 
    linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(52, 52, 52, 0.9) 100%),
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   7. FOOTER & OPENINGSTIJDEN (Alle pagina's)
   ========================================================================== */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 3rem 4rem 1rem;
  border-top: 0.5px solid var(--primary-gold);
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.footer-section {
  flex: 1;
}

.footer-title {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* Contact Info */
.contact-info {
  max-width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--primary-gold);
  width: 20px;
  margin-top: 2px;
  margin-bottom: 10px;
}

/* Social Links */
.socials {
  margin-top: 4rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* Openingstijden Week Systeem */
.opening-hours-container {
  max-width: 100%;
}

.week-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--primary-gold);
}

.current-week-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.current-week-number {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.week-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.week-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: var(--text-light);
}

.week-tab:hover {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
}

.week-tab.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: white;
}

.week-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.week-example {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.week-tab.active .week-example {
  opacity: 0.9;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hours-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.hours-item.weekend span:last-child {
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   8. HOMEPAGE - Hero Sectie
   ========================================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.75) 100%), 
              url('../assets/kapsalon r.jpeg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ==========================================================================
   9. HOMEPAGE - Diensten Sectie
   ========================================================================== */
.services {
  background: rgba(52, 52, 52, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   10. HOMEPAGE - Prijzen CTA Sectie
   ========================================================================== */
.prices-cta {
  padding: var(--section-padding);
  background: linear-gradient(145deg, #ffffff 0%, #e2c873 100%);
  /* opacity: 0.9; */
  text-align: center;
}

.prices-cta .cta-title {
  color: #1a1a1a;
}

.prices-cta .cta-subtitle {
  color: #4a4a4a;
}

.prices-cta .cta-note {
  color: #666666;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cta-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c2c2c;
  font-weight: 500;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.cta-highlight i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.cta-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  font-style: italic;
}

/* ==========================================================================
   11. HOMEPAGE - Producten Promo Sectie
   ========================================================================== */
.products-promo {
  padding: var(--section-padding);
  background: rgba(52, 52, 52, 0.5);
  position: relative;
  overflow: hidden;
}

.products-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.promo-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.promo-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.promo-subtitle {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.promo-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.promo-feature i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.promo-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.promo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-products {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promo-product {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.promo-product i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  width: 30px;
}

.promo-product span {
  color: #2c2c2c;
  font-weight: 500;
}

/* ==========================================================================
   12. PRIJZEN PAGINA
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.price-category {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.price-category-title {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.price-category-title i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.price-item:last-child {
  border-bottom: none;
}

.price-service {
  color: var(--text-dark);
  font-weight: 500;
}

.price-amount {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
}

.price-date {
  color: var(--primary-gold);
  font-weight: 500;
  margin-top: 1rem;
  font-size: 1rem;
}

/* ==========================================================================
   13. PRODUCTEN PAGINA
   ========================================================================== */
.products {
  padding: var(--section-padding);
}

/* Coming Soon Box */
.coming-soon-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.coming-soon-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.coming-soon-title {
  color: var(--primary-gold);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.coming-soon-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.coming-soon-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-gold) 20%, 
    var(--gold-light) 50%, 
    var(--primary-gold) 80%, 
    transparent 100%);
  margin: 2rem auto;
}

.coming-soon-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  text-align: left;
  margin-bottom: 2rem;
}

.coming-soon-info i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.coming-soon-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.coming-soon-info strong {
  color: var(--text-dark);
}

.coming-soon-location i {
  color: var(--primary-gold);
}

/* Producten Grid (voor later gebruik) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.product-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-description {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-top: auto;
}

/* Producten Contact Box */
.products-contact {
  margin-top: 4rem;
}

.contact-box {
  background: var(--bg-light-alt);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.contact-box h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.contact-box p {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   14. UI ELEMENTEN
   ========================================================================== */

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top i {
  transition: var(--transition);
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* ==========================================================================
   15. RESPONSIVE - TABLET (max-width: 800px)
   ========================================================================== */
@media (max-width: 840px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-close {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-light);
    border-right: 1px solid var(--border-light);
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 80px 0 0 0;
    height: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
  }
  
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ==========================================================================
   16. RESPONSIVE - TABLET (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
  
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-title {
    font-size: 1.4rem;
  }
  
  .section-subtitle,
  .page-subtitle,
  .hero-subtitle,
  .promo-subtitle,
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    padding: 0.875rem 3rem;
    justify-content: center;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .promo-features {
    justify-content: center;
  }
  
  .promo-products {
    align-items: center;
  }
  
  .promo-product {
    max-width: 300px;
    width: 100%;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-highlights {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .cta-highlight {
    max-width: 300px;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   RESPONSIVE - FOOTER STACKING (max-width: 660px)
   ========================================================================== */
@media (max-width: 660px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .footer-section {
    max-width: 400px;
    width: 100%;
  }
  
  .contact-items-wrapper {
    display: inline-block;
    text-align: left;
    padding-left: 2rem;
  }
  
  .contact-item {
    justify-content: flex-start;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

/* ==========================================================================
   17. RESPONSIVE - TABLET PORTRAIT (max-width: 600px)
   ========================================================================== */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-title {
    /* font-size: clamp(2.5rem, 5vw, 3rem); */
    font-size: 2rem
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .coming-soon-box {
    padding: 2.5rem 1.5rem;
  }
  
  .coming-soon-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .coming-soon-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
  
  .coming-soon-text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   18. RESPONSIVE - MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .service-title {
    font-size: 1.4rem;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
  
  .price-category-title {
    font-size: 1.1rem;
  }
  
  .price-service,
  .price-amount {
    font-size: 0.85rem;
  }
  
  .page-header {
    padding: 4rem 0 2rem;
  }
  
  .page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-info {
    padding: 1.25rem;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-description {
    font-size: 0.85rem;
  }
  
  .product-price {
    font-size: 1.125rem;
  }
  
  .promo-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .promo-product {
    padding: 1.25rem 1.5rem;
  }
  
  .promo-subtitle {
    font-size: 1rem;
  }
  
  .contact-box {
    padding: 2rem 1.5rem;
  }
  
  .footer-section {
    max-width: 250px;
    min-width: 200px;
    margin: 0 15px 0 15px;
  }
  
  .footer-title {
    font-size: 1.5rem;
  }
  
  .contact-item,
  .hours-item {
    font-size: 0.85rem;
  }
  
  .service-card,
  .price-category {
    padding: 2rem 1.3rem; 
  }
  
  .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
  .cta-button-outline {
    padding: 0.75rem 3rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   19. RESPONSIVE - SMALL MOBILE (max-width: 425px)
   ========================================================================== */
@media (max-width: 425px) {
  h2 {
    font-size: 1.5rem !important;
  }
  p {
    font-size: 0.9rem !important;
  }

  .hero-title {
    font-size: 2.25rem !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .promo-subtitle {
    font-size: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .footer-section {
    flex: none;
    max-width: 400px;
    width: 100%;
  }
  
  .contact-items-wrapper {
    display: inline-block;
    text-align: left;
    padding-left: 1.3rem;
  }
  
  .contact-item span,
  .hours-item span {
    text-align: left;
  }
  
  .contact-item {
    justify-content: flex-start;
  }
  
  .hours-item {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .hours-item {
    justify-content: space-between;
  }
  
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.8rem;
  }
  .cta-button-outline {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   20. ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero::before {
    animation: none;
  }
}

/* Focus styles voor toetsenbord navigatie */
a:focus,
button:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* ==========================================================================
   21. PRINT STYLES
   ========================================================================== */
@media print {
  .hero::before {
    display: none;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
  
  .cta-button {
    border: 2px solid black;
  }
}

html {
  scroll-behavior: smooth;
}