
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    background: #0b0b0b;
    color: white;
    scroll-behavior: smooth;
}

/* =============== HEADER FIXED CLEAN VERSION =============== */
.header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;

text-align: center;
    transition: all 0.4s ease;
}

.header img {
    max-height: 140px;
    transition: all 0.4s ease;
}

/* SCROLLED STATE = TOP BAR */
.header.scrolled {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
 /*   background: rgba(0,0,0,0.85); */
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

/* shrink logo */
.header.scrolled img {
    max-height: 60px;
}

/* ============ MENU ================= */
.menu {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    background: rgba(0,0,0,0.35);
    padding: 14px 28px;
    border-radius: 14px;
    backdrop-filter: blur(10px);

    transition: all 0.4s ease;

    font-family: 'Playfair Display', serif;
}

/* scrolled state */
.header.scrolled + .menu {
    top: 70px;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
}

/* LINKS */
.menu a {
    color: #eaeaea;
    margin: 0 14px;
    text-decoration: none;

    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.05rem;

    letter-spacing: 1px;

    transition: all 0.3s ease;
    position: relative;
}

/* hover elegant (geen felle kleur) */
.menu a:hover {
    color: #ffffff;
}

/* subtiele underline animation */
.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #b7a07a; /* luxe gold accent */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu a:hover::after {
    width: 80%;
}

/* ================= PARALLAX ================ */
.parallax {
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
}

.img1 { background-image: url('../images/background/img1.jpg'); }
.img2 { background-image: url('../images/background/img2.jpg'); }
.img3 { background-image: url('../images/background/img3.jpg'); }
.img4 { background-image: url('../images/background/img4.jpg'); }
.img5 { background-image: url('../images/background/img5.jpg'); }
.img6 { background-image: url('../images/background/img6.jpg'); }


/* CONTENT */
.content {
    background: #111;
    padding: 80px 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
     scroll-margin-top: 115px;
}

/* ================= GALLERY ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 40px;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

/* ================= LIGHTBOX POPUP ================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    font-size: 40px;
    cursor: pointer;
    color: white;
    user-select: none;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

.lightbox-content {
    text-align: center;
    max-width: 95%;
}

.photo-info {
    max-width: 900px;
    margin: 20px auto 0;
    padding: 20px;

    background: rgba(255,255,255,0.05);
    border-radius: 12px;

    text-align: left;
}

.photo-info h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.photo-info p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}




/*=================== about me  ====================*/
.about-section {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 24px 70px;
    font-family: 'Montserrat', sans-serif;
    color: #d6d6d6;
    line-height: 1.95;
}

/* TITEL - editorial luxe */
.about-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    margin-top: 0;
}

/* SUBTITEL - minimal */
.about-section .subtitle {
    font-size: 1.05rem;
    color: #9a9a9a;
    margin-bottom: 55px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* PARAGRAAF */
.about-section p {
    font-size: 1.08rem;
    color: #cfcfcf;
    margin-bottom: 26px;
}

/* QUOTE - subtiel luxe handschrift */
.about-section .highlight {
    margin: 60px 0;
    padding: 30px 35px;
    border-left: 2px solid #b7a07a; /* zachte gold tone */
    background: rgba(255,255,255,0.03);
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: #f5f1ea;
    line-height: 1.4;
}

/* SIGNATURE - heel chic */
.about-section .signature {
    margin-top: 70px;
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: #ffffff;
    text-align: center;
    opacity: 0.95;
}

/* kleine luxe details */
.about-section strong {
    color: #ffffff;
    font-weight: 500;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b0b0b;
    padding: 60px 20px;
    text-align: center;
    color: #a3a3a3;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.ad-container {
    margin-top: 30px;
    opacity: 0.7;
}


/*=================== COOKIE BANNER ====================*/
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: none;
}

.cookie-box {
    width: 380px;
    padding: 22px;

    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;

    color: #e5e7eb;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 15px 45px rgba(0,0,0,0.7);
}

.cookie-box h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 10px;
}

.cookie-box p {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.cookie-buttons button {
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: 0.2s ease;
}

.cookie-buttons button:first-child {
    background: #84cc16;
    color: #000;
}

.cookie-buttons button:nth-child(2) {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: #aaa;
    font-size: 0.8rem;
}

/* instellingen box */
.cookie-settings {
    display: none;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-settings label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ddd;
}

.cookie-settings button {
    margin-top: 10px;
    width: 100%;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
}

.albums {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 20px;
}

/* elk album blok */
.album {
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

/* foto grid binnen album */
.album .grid {
    display: block;
}

/* alleen cover foto tonen */
.album .grid img:not(:first-child) {
    display: none;
}

.album .grid img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .albums {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .albums {
        grid-template-columns: 1fr;
    }
}

.album:hover img {
    transform: scale(1.05);
}

.album h3{
    margin:20px 0;
    color:#b7a07a;
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:400;
}

/* ================= CONTACT FORM ================= */

.contact-form {

    max-width:900px;
    margin:50px auto;
    padding:40px;

    background:rgba(255,255,255,0.03);
    border-radius:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.4);

}


.contact-form h2 {

    font-family:'Playfair Display', serif;
    font-size:3rem;
    font-weight:400;

    color:#ffffff;

    margin-bottom:40px;

}


.form-row {

    display:grid;
    grid-template-columns:220px 1fr;

    align-items:center;

    gap:25px;

    margin-bottom:20px;

}


.form-row label {

    text-align:right;

    color:#b7a07a;

    font-family:'Montserrat',sans-serif;

    font-size:1rem;

}



.form-row input,
.form-row select,
.form-row textarea {


    width:100%;

    padding:14px 16px;

    background:#181818;

    border:1px solid rgba(255,255,255,.15);

    border-radius:8px;

    color:white;

    font-family:'Montserrat',sans-serif;

    font-size:1rem;

}


.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {


    outline:none;

    border-color:#b7a07a;

}



textarea {

    resize:vertical;

}



.message-row {

    align-items:start;

}



.form-submit {

    text-align:right;

    margin-top:30px;

}



.form-submit button {

    padding:14px 45px;

    background:#b7a07a;

    color:#111;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-family:'Montserrat',sans-serif;

    font-size:1rem;

    transition:.3s;

}

.form-submit button:hover {

    background:#d4bd93;

}

/* Popup achtergrond */

.iframe-popup{

    display:none;

    position:fixed;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    z-index:99999;

}


/* Venster */

.iframe-window{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:95%;

    height:95%;

    background:#000;

    border-radius:10px;

    overflow:hidden;

}


/* iframe */

.iframe-window iframe{

    width:100%;

    height:100%;

    border:none;

}


/* sluitknop */

.iframe-close{

    position:absolute;

    right:15px;

    top:10px;

    font-size:40px;

    color:white;

    cursor:pointer;

    z-index:5;

}