/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warm, natural color palette */
    --primary-color: #D4A574; /* Warm beige/gold */
    --secondary-color: #8B7355; /* Earthy brown */
    --accent-color: #E8D5C4; /* Light cream */
    --text-dark: #2C2416; /* Deep warm brown */
    --text-light: #F5F1ED; /* Soft white */
    --bg-light: #FEFDFB; /* Warm white background */
    --bg-cream: #F9F6F2; /* Cream background */
    --shadow: rgba(139, 115, 85, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.nav-cta:hover {
    background-color: var(--secondary-color);
    color: var(--text-light) !important;
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-color) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

/* Over Section */
.over {
    background-color: var(--bg-cream);
}

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

.over-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.over-image {
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Prijzen Section */
.prijzen {
    background-color: var(--bg-light);
}

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

.pricing-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--accent-color);
    color: var(--text-dark);
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Booking Planner Section */
.booking {
    background-color: var(--bg-light);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px var(--shadow);
}

.booking-steps {
    min-height: 500px;
    position: relative;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.step-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

/* Package Options */
.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-option {
    cursor: pointer;
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-card {
    background-color: var(--bg-cream);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow);
}

.package-option input[type="radio"]:checked + .package-card {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 8px 25px var(--shadow);
    transform: translateY(-5px) scale(1.02);
}

.package-card.popular {
    border-color: var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.package-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.package-features li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Form Rows and Groups */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form .form-group textarea {
    resize: vertical;
}

/* Checkbox Options */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.checkbox-option:hover {
    background-color: var(--bg-cream);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 2px 8px var(--shadow);
}

.checkbox-option input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-option input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 500;
}

.checkbox-option span {
    color: var(--text-dark);
}

/* Video Minutes Input */
.video-option {
    margin-bottom: 0 !important;
}

.video-minutes-container {
    margin-left: 2rem;
    margin-top: 0.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-minutes-container label {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.minutes-input {
    width: 100px;
    padding: 0.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.minutes-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.video-price-display {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Travel Info */
.travel-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(232, 213, 196, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    animation: fadeInSlide 0.4s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.travel-info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.travel-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.travel-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.travel-details strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.travel-details span {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.step-button.next-step,
.step-button.submit-booking {
    background-color: var(--primary-color);
    color: var(--text-light);
    margin-left: auto;
}

.step-button.next-step:hover,
.step-button.submit-booking:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.step-button.prev-step {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    border: 2px solid var(--accent-color);
}

.step-button.prev-step:hover {
    background-color: var(--accent-color);
}

/* Booking Summary */
.booking-summary {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.booking-summary h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--accent-color);
    color: var(--text-dark);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--secondary-color);
    font-weight: 500;
}

.summary-item span:last-child {
    color: var(--text-dark);
    text-align: right;
}

.summary-divider {
    height: 2px;
    background-color: var(--primary-color);
    margin: 1rem 0;
}

.summary-item.total {
    font-size: 1.3rem;
    font-weight: 600;
    padding-top: 1rem;
}

.summary-item.total span:last-child {
    color: var(--primary-color);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.step-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.step-dot.completed {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.step-line {
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Contact Section */
.contact {
    background-color: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 20px 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 241, 237, 0.8);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(245, 241, 237, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

.footer-contact a {
    color: rgba(245, 241, 237, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact span {
    color: rgba(245, 241, 237, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.1);
}

.social-links a:hover {
    color: var(--primary-color);
    background-color: rgba(212, 165, 116, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-bottom p {
    color: rgba(245, 241, 237, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .over-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .package-options {
        grid-template-columns: 1fr;
    }

    .step-buttons {
        flex-direction: column;
    }

    .step-button.next-step,
    .step-button.submit-booking {
        margin-left: 0;
    }

    .step-indicator {
        transform: scale(0.9);
    }

    .step-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0.8rem 20px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 20px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-links a:hover,
    .social-links a:hover {
        transform: none;
    }
}
