/* Variables */
:root {
    --primary: #ff8000;
    --primary-dark: #e67e00;
    --primary-light: #ffb366;
    --accent: #ff6b9d;
    --accent-light: #ffc1d9;
    --bg: #fffaf0;
    --bg-light: #fff5e6;
    --text: #333;
    --text-light: #666;
    --border: #ffe0cc;
    --shadow: 0 4px 6px rgba(255, 128, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(255, 128, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.logo {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 300;
}

/* Navigation */
.nav {
    background: white;
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav .container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 20px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

/* Main Content */
.main-content {
    padding: 40px 20px;
}

/* Sections */
.section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    animation: slideIn 0.5s ease;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    border: 2px solid var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 128, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.about-text {
    color: var(--text);
}

.about-text h2 {
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.about-text h2::after {
    display: none;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

.about-text p:first-of-type {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--primary-dark);
}

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

.section h2 {
    color: var(--primary);
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.intro-text {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.close:hover {
    transform: scale(1.2);
}

.modal-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1001;
}

.modal-btn {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Prijzen */
.price-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.price-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--accent-light);
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
    border-color: var(--accent);
}

.price-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.price {
    font-size: 2.5em;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

.price-desc {
    color: var(--text-light);
    font-size: 0.9em;
}

.price-special {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    color: var(--text);
}

.price-special h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.price-special ul {
    list-style: none;
    margin: 15px 0;
}

.price-special li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.price-special li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--accent);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255, 128, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header strong {
    color: var(--primary);
    font-size: 1.1em;
}

.stars {
    color: var(--primary);
    letter-spacing: 2px;
}

.review p {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.contact-info p {
    margin: 15px 0;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.1);
}

.btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 18px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #c8e6c9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.form-message.error {
    background: #ffcccc;
    color: #c62828;
    border: 2px solid #f44336;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 3px solid var(--accent);
}

.footer p {
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .nav .container {
        gap: 15px;
    }

    .section {
        padding: 25px;
        margin-bottom: 40px;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .close {
        right: 15px;
        top: 10px;
        font-size: 30px;
    }

    .modal-nav {
        padding: 0 10px;
    }

    .modal-btn {
        padding: 10px 15px;
        font-size: 1.2em;
    }

    .price-card {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }
}