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

:root {
    --kleur-creme:     #E6DFD7;
    --kleur-donker:    #161210;
    --kleur-ceremonie: #203E44;
    --kleur-borrel:    #5B2D37;
    --kleur-afscheid:  #B38C69;
    --kleur-goud:      #B38C69;
    --kleur-knop:      #B38C69;
    --font-serif:      'Playfair Display', Georgia, serif;
    --font-sans:       'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: #2a2a2a;
    background: var(--kleur-donker);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   Navigatie
=========================== */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 28px;
    z-index: 10;
}

.nav-logo {
    width: auto;
    height: 54px;
    object-fit: contain;
    object-position: left;
}

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: var(--kleur-donker);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ===========================
   Over Marieke
=========================== */
.about {
    background: var(--kleur-creme);
    padding: 80px 20px;
    text-align: center;
}

.about-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2rem;
    color: #3a3530;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.85;
    color: #3a3530;
}

/* ===========================
   Diensten Grid
=========================== */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
}

.grid-item {
    overflow: hidden;
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.grid-portret-img.grid-portret-img {
    object-position: center -100px;
}

.grid-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 36px;
    text-align: center;
}

.grid-text-inner {
    max-width: 340px;
}

.grid-ceremonie {
    background: var(--kleur-ceremonie);
    color: #e8e0d5;
}

.grid-borrel {
    background: var(--kleur-borrel);
    color: #e8e0d5;
}

.grid-afscheid {
    background: var(--kleur-afscheid);
    color: #2a1f18;
}

.grid-text h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.grid-text p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.grid-text p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Video thumbnails (gedeeld)
=========================== */
.video-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumb:hover img {
    transform: scale(1.04);
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.video-thumb:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.08);
}

.play-icon {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 4px;
    line-height: 1;
}

/* ===========================
   Grote video
=========================== */
.video-main {
    background: var(--kleur-donker);
    height: 480px;
}

.video-main .video-thumb {
    height: 100%;
}

/* ===========================
   Drie kleine video's
=========================== */
.video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 260px;
    background: var(--kleur-creme);
    gap: 2px;
}

.video-row .video-thumb {
    height: 100%;
}

.video-row .play-btn {
    width: 50px;
    height: 50px;
}

.video-row .play-icon {
    font-size: 1rem;
}

/* ===========================
   Contact
=========================== */
.contact {
    background: var(--kleur-donker) url('images/contact-portret.png') no-repeat center top;
    background-size: cover;
    min-height: 620px;
}

.contact-photo-mobile {
    display: none;
}

.contact-left {
    padding: 70px 50px 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: var(--kleur-goud);
    margin-bottom: 8px;
    line-height: 1.1;
}

.contact-info {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.contact-info p {
    color: #a09080;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.contact-info a {
    color: #a09080;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--kleur-goud);
}

.insta-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    color: #e8e0d5;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.contact-form textarea {
    border-radius: 30px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(200, 185, 165, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(196, 168, 122, 0.5);
}

.btn-verstuur {
    align-self: flex-start;
    padding: 13px 36px;
    border: none;
    border-radius: 30px;
    background: var(--kleur-knop);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-verstuur:hover {
    background: #9a7859;
    transform: translateY(-1px);
}

.form-success {
    display: none;
    margin-top: 14px;
    color: var(--kleur-afscheid);
    font-size: 0.9rem;
}

.form-success.zichtbaar {
    display: block;
}


/* ===========================
   Footer
=========================== */
.footer {
    background: #E5DFD8;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo {
    position: absolute;
    left: 28px;
    width: auto;
    height: 28px;
    object-fit: contain;
    object-position: left;
    opacity: 0.75;
}

.footer-copy {
    color: rgba(50, 40, 35, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===========================
   Zwevende mail button
=========================== */
.fab-mail {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--kleur-knop);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: background 0.25s ease, transform 0.2s ease;
}

.fab-mail:hover {
    background: #9a7859;
    transform: translateY(-2px);
}

/* ===========================
   Responsief
=========================== */
@media (max-width: 768px) {
    .hero-img {
        object-position: calc(50% + 30px) center;
    }

    .diensten-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .diensten-grid .grid-img {
        height: 260px;
    }

    .diensten-grid .grid-text {
        padding: 40px 28px;
    }

    .video-main {
        height: 280px;
    }

    .video-row {
        grid-template-columns: 1fr;
        height: auto;
    }

    .video-row .video-thumb {
        height: 220px;
    }

    .contact {
        background-image: none;
        min-height: auto;
    }

    .contact-photo-mobile {
        display: block;
        height: 350px;
    }

    .contact-photo-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right top;
    }

    .contact-left {
        padding: 50px 30px;
        min-height: auto;
    }

    .contact-title {
        font-size: 3rem;
    }

}
