/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Colors - warm, elegant palette */
    --primary: #C19A6B;
    --primary-light: #D4A574;
    --primary-dark: #A67C52;
    --secondary: #8B7355;
    --accent: #E8D5C4;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --border: #E5DDD5;
    
    /* Typography */
    --font-display: 'Cormorant', serif;
    --font-body: 'Jost', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 3rem);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(193, 154, 107, 0.08);
    --shadow-md: 0 4px 20px rgba(193, 154, 107, 0.12);
    --shadow-lg: 0 8px 40px rgba(193, 154, 107, 0.15);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-light);
    color: var(--white);
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.nav.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav.scrolled .nav-logo-img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(250, 247, 242, 0.55) 0%,
        rgba(232, 213, 196, 0.45) 50%,
        rgba(193, 154, 107, 0.35) 100%
    );
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 0 var(--container-padding);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--primary);
    margin-top: 0.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.85rem;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 1.2s both;
    z-index: 3;
}

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

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(250, 247, 242, 0.7);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    backdrop-filter: blur(8px);
    font-weight: 500;
}

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

.btn-full {
    width: 100%;
}

/* ===========================
   Intro Section
   =========================== */
.intro {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.6;
}

.intro-text em {
    color: var(--primary);
    font-style: normal;
}

/* ===========================
   Section Title
   =========================== */
.section-title {
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    box-shadow: var(--shadow-lg);
}

.about-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.about-image-placeholder svg {
    width: 80%;
    height: 80%;
}

.about-text {
    padding: 2rem 0;
    text-align: center; /* Toegevoegd voor centrering */
}

.about-description p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center; /* Toegevoegd voor centrering */
}

.about-highlight {
    font-size: 1.2rem;
    color: var(--primary);
    font-style: italic;
    margin-top: 2rem;
    text-align: center; /* Toegevoegd voor centrering */
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card-featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* Nieuwe styling voor pakket afbeeldingen */
.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-bullet {
    flex-shrink: 0;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling voor bullet icon afbeeldingen */
.bullet-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.service-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-fast);
}

.service-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.services-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: var(--accent);
    border-radius: 20px;
}

.services-footer p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.contact-details p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.contact-note {
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
    margin-top: 0.5rem !important;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.contact-form {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Form message styling */
.form-message {
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

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

.form-success {
    background: linear-gradient(135deg, #f5f9f6 0%, #e8f5e9 100%);
    border: 2px solid #81c784;
    color: #2e7d32;
    box-shadow: 0 4px 15px rgba(129, 199, 132, 0.2);
}

.form-success::before {
    content: "✓";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #1b5e20;
    margin: 0 0 8px 0;
    display: inline-block;
}

.form-success-text {
    margin: 8px 0 0 0;
    color: #2e7d32;
    display: block;
}

.form-error {
    background-color: #fdecea;
    border: 2px solid #ef5350;
    color: #c62828;
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.15);
}

.form-error::before {
    content: "⚠";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
}

.form-error p {
    margin: 5px 0;
}

.form-error p:first-child {
    margin-top: 0;
}

.form-error p:last-child {
    margin-bottom: 0;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

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

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--primary);
    background-color: var(--white);
    padding: 0 0.5rem;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--accent);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--accent);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.footer-contact-label {
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.8;
}

.footer-contact-item a {
    color: var(--accent);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-social-section h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--accent);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   Responsive Design - Footer Updates
   =========================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(3rem, 8vw, 5rem);
    }
    
    .nav-logo-img {
        height: 60px;
    }
    
    .nav.scrolled .nav-logo-img {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        display: none;
    }
    
    .service-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .nav-logo-img {
        height: 55px;
    }
    
    .nav.scrolled .nav-logo-img {
        height: 45px;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .bullet-icon {
        width: 24px;
        height: 24px;
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Scroll reveal animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-logo {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 150px;
    }
}
@media (max-width: 768px) {
    .about-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}
/* ===========================
   Image Protection
   =========================== */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Zorg dat links nog wel klikbaar zijn */
a {
    pointer-events: auto;
}

/* Zorg dat buttons nog wel klikbaar zijn */
button,
.btn {
    pointer-events: auto;
}

/* Onzichtbare beschermlaag over afbeeldingen */
.about-image-frame::after,
.service-icon-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
}

/* Fix voor about-image-frame */
.about-image-frame {
    position: relative;
}

.service-icon-large {
    position: relative;
}
.webdesign-credit {
    font-size: 0.75rem !important;
    color: rgba(232, 213, 196, 0.6) !important;
    margin-top: 0.5rem !important;
    opacity: 0.7;
}

.webdesign-credit a {
    color: rgba(232, 213, 196, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.webdesign-credit a:hover {
    color: var(--primary-light);
    opacity: 1;
}