/*
Theme Name: Lubbedesign
Theme URI: https://lubbedesign.nl
Author: Lubbedesign
Description: Elegant thema voor Lubbedesign met poederroze, oudroze, beige en goudaccenten
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: lubbedesign
*/

/* ============================================
   LUBBEDESIGN - KLEURPALET
   Poederroze, oudroze, beige, goud, perzik/rosé
   ============================================ */

   :root {
    --color-powder-pink: #F5D0D9;
    --color-dusty-rose: #E8C4C9;
    --color-warm-beige: #F5E6D3;
    --color-beige-dark: #E8DCC8;
    --color-gold: #C9A227;
    --color-gold-light: #D4AF37;
    --color-peach-rose: #FADADD;
    --color-soft-glow: #FCE4EC;
    --color-text: #5C4A3D;
    --color-text-light: #7D6B5E;
    --color-white: #FFFFFF;
  --color-cream: #FFD4E6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
    --shadow-soft: 0 4px 20px rgba(232, 196, 201, 0.3);
    --shadow-card: 0 8px 30px rgba(245, 208, 217, 0.25);
    --radius: 12px;
    --transition: all 0.3s ease;
  }
  
  /* ============================================
     BASIS & RESET
     ============================================ */
  
  * {
    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: linear-gradient(135deg, #ffeef4 0%, #f7ccd7 50%, #f6bbc9 100%);
    -webkit-font-smoothing: antialiased;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
  }
  
  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
  h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
  
  a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--color-gold-light);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ============================================
     LAYOUT
     ============================================ */
  
  .site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .site-main {
    min-height: 50vh;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffeef4 0%, #f7ccd7 50%, #f6bbc9 100%);
  }
  
  /* ============================================
     HEADER & NAVIGATIE
     ============================================ */
  
  .site-header {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-peach-rose) 50%, var(--color-powder-pink) 100%);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Logo placeholder - vervang later met jouw logo */
  .site-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
  }
  
  .site-logo img {
    max-height: 50px;
    width: auto;
  }
  
  /* Navigatiemenu */
  .main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .main-navigation a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .main-navigation a:hover,
  .main-navigation a.active {
    color: var(--color-gold);
  }
  
  .main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
  }
  
  .main-navigation a:hover::after,
  .main-navigation a.active::after {
    width: 100%;
  }
  
  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .main-navigation ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--color-white);
      flex-direction: column;
      padding: 1rem;
      box-shadow: var(--shadow-soft);
    }
  
    .main-navigation.toggled ul {
      display: flex;
    }
  
    .main-navigation a {
      padding: 0.75rem;
      border-bottom: 1px solid var(--color-powder-pink);
    }
  }
  
  /* ============================================
     HOMEPAGE SECTIES
     ============================================ */
  
  .hero {
    background: linear-gradient(135deg, var(--color-soft-glow) 0%, var(--color-peach-rose) 30%, var(--color-powder-pink) 70%, var(--color-warm-beige) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-soft);
  }
  
  .hero h1 {
    color: var(--color-text);
    margin-bottom: 1rem;
  }
  
  .hero .gold-accent {
    color: var(--color-gold);
    font-style: italic;
  }
  
  .hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white) !important;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
  }
  
  .btn-secondary {
    background: var(--color-white);
    color: var(--color-gold) !important;
    border: 2px solid var(--color-gold);
  }
  
  .btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white) !important;
  }
  
  /* Sectie styling */
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    position: relative;
    display: inline-block;
  }
  
  .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0.75rem auto 0;
    border-radius: 2px;
  }
  
  /* Diensten grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(232, 196, 201, 0.5);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 208, 217, 0.35);
  }
  
  .service-card h3 {
    color: var(--color-gold);
    margin-bottom: 0.75rem;
  }
  
  .service-card p {
    color: var(--color-text-light);
  }
  
  /* Feature boxes */
  .features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, var(--color-peach-rose) 0%, var(--color-white) 100%);
    border-radius: var(--radius);
  }
  
  .feature-box span {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .feature-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  /* CTA sectie */
  .cta-section {
    background: linear-gradient(135deg, var(--color-dusty-rose) 0%, var(--color-powder-pink) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius);
  }
  
  .cta-section h2 {
    color: var(--color-text);
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
  }
  
  /* ============================================
     PAGINA TEMPLATES
     ============================================ */
  
  .page-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .page-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
  }
  
  .page-content h2 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-powder-pink);
  }
  
  .page-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--color-text-light);
  }
  
  .page-content li {
    margin-bottom: 0.5rem;
  }
  
  /* Contact sectie */
  .contact-info {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
  }
  
  .contact-info p {
    margin-bottom: 0.75rem;
  }
  
  .contact-info a {
    color: var(--color-gold);
  }
  
  /* ============================================
     GALERIJ
     ============================================ */

  .gallery-section {
    margin-top: 2.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .gallery-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(232, 196, 201, 0.5);
    transition: var(--transition);
  }

  .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 208, 217, 0.35);
  }

  .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .gallery-preview .service-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .gallery-lightbox[hidden] {
    display: none;
  }

  .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
  }

  .gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
  }

  .gallery-lightbox__content {
    position: relative;
    width: min(960px, 100%);
    max-height: 85vh;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  .gallery-lightbox__img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    background: #111;
  }

  .gallery-lightbox__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  body.gallery-lightbox-open {
    overflow: hidden;
  }

  /* ============================================
     FOOTER
     ============================================ */
  
  .site-footer {
    background: linear-gradient(180deg, var(--color-beige-dark) 0%, var(--color-dusty-rose) 100%);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    color: var(--color-text);
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .site-footer .menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .site-footer .menu a {
    color: var(--color-text);
  }
  
  .site-footer .menu a:hover {
    color: var(--color-gold);
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(92, 74, 61, 0.2);
  }
  
  /* ============================================
     UTILITY
     ============================================ */
  
  .text-center { text-align: center; }
  .mb-1 { margin-bottom: 1rem; }
  .mb-2 { margin-bottom: 2rem; }
  .mt-2 { margin-top: 2rem; }
  