/* Houtinzicht — Custom CSS (minimaal, Tailwind doet het zware werk) */

/* Adem-pulse animatie voor hero */
@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50%       { transform: scale(1.18); opacity: 0.28; }
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

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

/* Floating WhatsApp pulse */
.whatsapp-float {
    animation: waPulse 2.4s ease-in-out infinite;
}

/* Adem-cirkel in hero */
.breathe-circle {
    animation: breathe 4s ease-in-out infinite;
}

/* Fade-in voor IntersectionObserver */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover-lift */
.card-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(15, 76, 58, 0.12);
}

/* Header scroll shadow */
.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(15, 76, 58, 0.08);
}

/* Mobile menu open state */
#mobileMenu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Hamburger open state */
body.menu-open .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
body.menu-open .ham-line:nth-child(2) {
    opacity: 0;
}
body.menu-open .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero gradient overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(15,76,58,0.72) 0%, rgba(15,76,58,0.2) 60%, transparent 100%);
}

/* Quote stijl */
.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.8;
    color: #A8B5A2;
    opacity: 0.6;
    display: block;
    margin-bottom: -1rem;
}

/* Fotogallerij thumbnails */
.gallery-thumb {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.gallery-thumb:hover {
    opacity: 0.80;
    transform: scale(1.04);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Lightbox */
#lightbox {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
#lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
#lb-img {
    transition: opacity 0.18s ease;
    border-radius: 6px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.lb-btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s ease;
}
.lb-btn:hover { color: #fff; }

/* Zachte adem-animatie voor icoon-wrappers */
@keyframes iconBreathe {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.09); }
}

.icon-breathe {
    animation: iconBreathe 4.5s ease-in-out infinite;
}

/* Stijl voor section-divider */
.section-divider {
    width: 48px;
    height: 3px;
    background: #A8B5A2;
    border-radius: 2px;
    margin: 0 auto 2rem;
}
