/* Vakantie Juli 2026 - Bart & Lisa's Gezinsvakantie */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #059669;
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
nav {
    background: var(--bg-card);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

nav .logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

nav a:hover, nav a.active {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Destination Hero */
.destination-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.destination-hero .content {
    position: relative;
    z-index: 1;
}

.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

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

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

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.destination-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-card .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

/* Accommodation Cards */
.accommodation-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accommodation-card .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-farm { background: #dcfce7; color: #166534; }
.badge-camping { background: #dbeafe; color: #1e40af; }
.badge-house { background: #fef3c7; color: #92400e; }
.badge-glamping { background: #f3e8ff; color: #7c3aed; }

.accommodation-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.accommodation-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.accommodation-card .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.accommodation-card .features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accommodation-card .feature {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.accommodation-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.accommodation-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: #047857;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

tr:hover {
    background: var(--bg-light);
}

/* Comparison Table */
.comparison-table td:first-child {
    font-weight: 600;
}

.score {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.score-high { color: var(--secondary); }
.score-medium { color: var(--accent); }
.score-low { color: #ef4444; }

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.info-box.tip {
    background: #ecfdf5;
    border-left: 4px solid var(--secondary);
}

.info-box.warning {
    background: #fffbeb;
    border-left: 4px solid var(--accent);
}

.info-box.info {
    background: #eff6ff;
    border-left: 4px solid var(--primary);
}

.info-box h4 {
    margin-bottom: 0.5rem;
}

/* Lists */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Activity Grid */
.activity-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.activity-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.activity-card h4 {
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.activity-card .age-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Budget Breakdown */
.budget-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.budget-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.budget-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary);
}

/* Recommendation Box */
.recommendation {
    background: linear-gradient(135deg, var(--secondary) 0%, #047857 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.recommendation h3 {
    margin-bottom: 1rem;
}

.recommendation .highlight {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: var(--radius);
}

.pros {
    background: #ecfdf5;
}

.cons {
    background: #fef2f2;
}

.pros h4 { color: var(--secondary); }
.cons h4 { color: #dc2626; }

.pros li::before { content: '✓'; color: var(--secondary); }
.cons li::before { content: '✗'; color: #dc2626; }

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer a {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
    }

    nav ul {
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .destination-hero h1 {
        font-size: 2rem;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .quick-stats {
        gap: 1rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    nav, footer, .btn {
        display: none;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
