/* ==========================================================================
   Base Styles & Variables (Adventure/Camping Aesthetic)
   ========================================================================== */
:root {
    --color-primary: #1e3f20;       /* Deep Forest Green - Basis & Vertrouwen */
    --color-primary-light: #2d5a30; /* Iets lichtere groen voor hovers */
    --color-secondary: #f4f1ea;     /* Warm Sand Beige - Achtergrond rust */
    --color-dark: #222522;          /* Charcoal/Slate - Goed leesbare tekst */
    --color-white: #ffffff;
    --color-accent: #e05a36;        /* Terracotta/Sunset Orange - Hoge Conversie CTA */
    --color-accent-hover: #c84724;  
    
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--color-dark);
    font-family: var(--font-body);
    background-color: var(--color-white);
}

body {
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-headers);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #4a4d4a;
}

strong {
    color: var(--color-primary);
}

.text-center { text-align: center; }
.highlight { color: var(--color-accent); }

/* Buttons & CTAs */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-headers);
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(224, 90, 54, 0.3);
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 1.3rem 3rem;
    font-size: 1.25rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-transform: uppercase;
}
.btn-xlarge:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.03);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-headers);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo-icon {
    width: auto;
    height: 50px;
    margin-right: 0.5rem;
    display: inline-block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 1px solid #dcd9d2;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 16, 0.9) 0%, rgba(34, 37, 34, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 750px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    margin-top: 2.5rem;
}

/* ==========================================================================
   USPs / Waarom Kiezen Voor Card Grid
   ========================================================================== */
.usps-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 2.25rem;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.15rem;
}

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

.usp-card {
    background-color: var(--color-secondary);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid #e8e5dd;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background-color: var(--color-white);
    border-color: var(--color-primary);
}

.usp-icon {
    width: 50px;
    height: 50px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.usp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.usp-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
    padding: 6rem 0;
    background-color: var(--color-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-content h2 {
    font-size: 2.25rem;
}

.location-images {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.img-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.img-wrapper img:hover {
    transform: scale(1.05);
}

.shift-down {
    transform: translateY(2rem);
}

/* ==========================================================================
   Action Card / Scarcity Box
   ========================================================================== */
.cta-box-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.action-card {
    background-color: var(--color-primary);
    padding: 4rem 3rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 30px rgba(30, 63, 32, 0.15);
}

.action-card p {
    color: var(--color-white);
}

.action-card h3 {
    color: var(--color-white);
    font-size: 2rem;
}

.action-badge {
    position: absolute;
    top: -15px;
    right: 3rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    font-family: var(--font-headers);
    font-size: 0.9rem;
}

.highlight-text {
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.highlight-text strong, .highlight-text p {
    color: var(--color-white);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.final-cta-section {
    padding: 7rem 0;
    background-color: var(--color-secondary);
}

.final-cta-section h2 {
    font-size: 2.5rem;
}

.final-cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.2rem;
}

.site-footer {
    background-color: var(--color-dark);
    color: #a0a5a0;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-sub {
    margin-top: 0.5rem;
    color: #606560;
    font-size: 0.8rem;
}

/* Shadows */
.shadow-large { box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .shift-down { transform: translateY(0); }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-section { min-height: auto; }
    .hero-content h1 { font-size: 2rem; }
    .action-badge { position: static; display: inline-block; margin-bottom: 1rem; }
    .action-card { padding: 2.5rem 1.5rem; }
    .main-nav { display: none; }
}

/* Fade in functionaliteit voor JS Interaction Observer */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}