:root {
    --color-dark: #3b2313;
    --color-gold: #D2A679;
    --color-bg: #F2E3D5;
    --color-white: #ffffff;
    --font-primary: 'Cormorant Garamond', serif;
    --font-logo: 'Pacifico', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-bg);
    font-size: 19px;
    font-weight: 500;
    min-width: 285px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.intro-text, .price-intro-text { max-width: 800px; margin: 0 auto; font-size: 1.3rem; font-weight: 600; margin-bottom: 40px; }
h2 { font-size: 3rem; margin-bottom: 40px; font-weight: 700; color: var(--color-dark); }
section { padding: 80px 0; }

/* --- MELDINGSBALK --- */
.notification-bar {
    background-color: var(--color-gold);
    color: var(--color-dark);
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    display: none; 
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(59, 35, 19, 0.1);
}

/* --- MOBIEL CONTACT DETAILS (Standaard Styling) --- */
/* Dit is standaard verborgen op desktop */
.mobile-contact-details {
    display: none; 
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(59, 35, 19, 0.2);
    text-align: center;
    width: 100%;
}

.mobile-contact-details h3 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.mobile-contact-details .contact-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.mobile-contact-details i {
    color: var(--color-dark);
    font-size: 1.2rem;
    width: 25px; 
}

.mobile-contact-details a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
}