:root {
    --primary: #4A5D4E;
    --primary-light: #768A7A;
    --accent: #D4E2D4;
    --bg-light: #F9FAF9;
    --bg-dark: #1A1C1A;
    --text-main: #2D332E;
    --text-light: #6B7280;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --radius-pill: 50px;
    --radius-card: 24px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* --- UI Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: #fff;
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: #fff;
    background: var(--glass);
    backdrop-filter: blur(10px);
}

.tag {
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.image-placeholder {
    background: #E5E7EB;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

/*
.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 200%;
    }
}
*/

/* --- Navigation --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 5%;
    color: #fff;
    /* overflow: hidden; */ /* Removed to allow scroll-indicator to overlap next section */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3a4a3e;
    /* Representing the green hill */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: flex-end;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 20px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- Cards Section --- */
.section-padding {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.card {
    height: 400px;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
}

.card-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;
    color: #fff;
    border: 1px solid var(--glass-border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    max-width: 500px;
}

/* --- Dark Booking Section --- */
.booking-section {
    background: var(--bg-dark);
    color: #fff;
    border-radius: 40px;
    margin: 40px 20px;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.booking-card {
    background: #fff;
    color: var(--bg-dark);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
}

.booking-details-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

/* --- Accordion Section --- */
.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* --- Nature Section --- */
.nature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

/* --- Gallery Section --- */
.gallery-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('galerij-foto/buiten7.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.gallery-container {
    background: #E8F0E8;
    border-radius: 40px;
    padding: 80px 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item:hover img,
.card:hover .image-placeholder img {
    transform: scale(1.05);
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

/* --- Footer --- */
footer {
    padding: 60px 5%;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-content,
    .booking-section,
    .card-grid,
    .nature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item-lg {
        grid-column: span 2;
    }

    .hero-right {
        align-items: flex-start;
        text-align: left;
        margin-top: 40px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header div {
        text-align: left !important;
    }

    .section-header p {
        margin-left: 0 !important;
    }

    .section-padding {
        padding: 60px 5%;
    }
}

.pricing-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('galerij-foto/buiten2.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.price-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.price-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit';
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.discount-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.extra-options {
    margin-top: 80px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.extra-item:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
}

.extra-info h4 {
    font-family: 'Outfit';
    margin-bottom: 5px;
}

.extra-price {
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit';
    font-size: 1.2rem;
}

/* Adjustments for the fixed nav scroll effect */
.scrolled nav {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.scrolled .nav-links a,
.scrolled .brand {
    color: #000 !important;
}

/* --- Form Styles --- */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('galerij-foto/buiten4.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(74, 93, 78, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--bg-dark);
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Masonry Gallery --- */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--radius-card);
    overflow: hidden;
    break-inside: avoid;
    transition: var(--transition);
}

.masonry-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: var(--transition);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 968px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.scrolled .hamburger span {
    background-color: #000;
}

/* --- Mobile Menu --- */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 200px;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        border-radius: 24px;
        border: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        color: #000 !important;
        font-size: 1.1rem;
        margin: 10px 0;
        width: 100%;
        padding: 5px 10px;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-actions {
        display: none;
    }
}
