/* Reset en basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fef7f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigatie */
.navbar {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #fbbf24;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Hero sectie */
.hero {
    margin-top: 80px;
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

/* Reizen sectie */
.travel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.travel-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #ff6b35;
    font-weight: 800;
    position: relative;
    letter-spacing: -1px;
}

.travel-section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.destination-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff6b35, #fbbf24);
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.destination-card h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.destination-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Knoppen */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #e85d04 100%);
}

/* Formulieren */
.form-container {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
    margin: 4rem 0;
    max-width: 700px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ff6b35;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.4rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Artikel headers */
.article-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, transparent 0%, rgba(254, 247, 240, 0.1) 100%);
}

.article-header h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.article-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 6rem 0;
    background: white;
}

.article-content h2 {
    color: #ff6b35;
    font-size: 2.4rem;
    margin: 4rem 0 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.article-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.article-content ul {
    margin: 2.5rem 0;
    padding-left: 0;
}

.article-content li {
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.article-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: #fbbf24;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 1.05rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 2rem;
    z-index: 1000;
    display: block;
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.cookie-content p {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Contact sectie */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #ff6b35;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Beleid pagina's */
.policy-section {
    padding: 6rem 0;
    background: white;
}

.policy-section h1 {
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    color: #ff6b35;
    font-weight: 800;
    letter-spacing: -1px;
}

.policy-section h2 {
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
    color: #ff6b35;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.policy-section h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
    color: #f7931e;
    font-weight: 600;
}

.policy-section p {
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #4b5563;
    font-size: 1.15rem;
}

.policy-section ul {
    margin: 2rem 0;
    padding-left: 0;
}

.policy-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.6rem;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-form h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

/* FAQ sectie */
.faq-section {
    margin-top: 6rem;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-section h2 {
    color: #ff6b35;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact info box */
.contact-info-box {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #ff6b35;
    margin: 2.5rem 0;
}

.contact-info-box h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Cookie tabel */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.cookie-table th {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
}

.cookie-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 1rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background-color: #fafafa;
}

.cookie-table code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: #ff6b35;
}

/* CTA sectie */
.cta-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.cta-section h2 {
    color: #ff6b35;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
}

/* Responsief ontwerp */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-header h1 {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .travel-section h2 {
        font-size: 2.4rem;
    }
    
    .form-container {
        padding: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info,
    .contact-form-container,
    .faq-section {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .travel-section {
        padding: 5rem 0;
    }
    
    .destination-card {
        padding: 2.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .article-header {
        padding: 8rem 0 5rem;
    }
    
    .contact-info,
    .contact-form-container,
    .faq-section {
        padding: 2rem;
    }
}