/* ==========================================================================
   Dar Mona — Gedeelde stylesheet
   Eén bron van waarheid voor alle pagina's. Geen inline <style> per pagina.
   ========================================================================== */

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

/* Tokens */
:root {
    --cream: #FBF7F1;
    --cream-deep: #F4ECE0;
    --terracotta: #9B4A2E;
    --terracotta-dark: #7E3A22;
    --gold: #B8935A;
    --dark: #2C2520;
    --text: #4A4441;
    --muted: #8A827E;
    --border: rgba(155, 74, 46, 0.15);
    --border-soft: rgba(155, 74, 46, 0.08);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', -apple-system, system-ui, sans-serif;

    --container: 1200px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --nav-height: 4.5rem;
}

/* Base */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.7;
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    text-wrap: balance;
}
p { text-wrap: pretty; }

a { color: var(--terracotta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--terracotta);
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 400;
    padding: .5rem 0;
    border-bottom: 1.5px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: 0;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: transform .3s ease, opacity .2s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    border-bottom: 1px solid var(--border-soft);
}
.mobile-nav.active { transform: translateY(0); }
.mobile-nav ul {
    list-style: none;
    padding: 1rem var(--gutter) 1.5rem;
}
.mobile-nav li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--dark);
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    .logo-text { font-size: 1.25rem; letter-spacing: 1.5px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: .95rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
    line-height: 1.2;
}
.btn:active { transform: translateY(1px); }

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

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-secondary:hover {
    background: var(--terracotta);
    color: white;
}

.btn-ghost-on-dark {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,.6);
}
.btn-ghost-on-dark:hover {
    background: white;
    color: var(--terracotta);
    border-color: white;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section { padding: clamp(4rem, 8vw, 6.5rem) var(--gutter); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: rgba(255,255,255,.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* ==========================================================================
   Page header (sub-pages)
   ========================================================================== */
.page-header {
    padding: calc(var(--nav-height) + 6rem) var(--gutter) 5rem;
    background: var(--cream);
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem var(--gutter) 1.5rem;
}
.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand h3 {
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: .85rem;
}
.footer-brand p { line-height: 1.75; font-size: 0.95rem; }
.footer-col h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-sans);
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; font-size: 0.95rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: var(--container);
    margin: 1.75rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   Social float buttons (right side)
   ========================================================================== */
.social-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.social-float a {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--terracotta);
    color: white;
    box-shadow: var(--shadow-md);
    transition: transform .2s ease, background-color .2s ease;
}
.social-float a:hover { transform: translateY(-2px); background: var(--terracotta-dark); }
.social-float a.whatsapp { background: #25D366; }
.social-float a.whatsapp:hover { background: #1da851; }
.social-float a svg { width: 22px; height: 22px; fill: currentColor; }

/* Don't overlap cookie banner */
.cookie-open .social-float { display: none; }

/* ==========================================================================
   Cookie banner (GDPR — analytics ONLY load after consent)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    max-width: 580px;
    margin-left: auto;
    background: white;
    color: var(--text);
    padding: 1.5rem 1.75rem;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    z-index: 10000;
    display: none;
}
.cookie-banner.visible { display: block; animation: cookieSlide .35s ease both; }
@keyframes cookieSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-banner h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: .5rem;
    font-family: var(--font-serif);
    font-weight: 500;
}
.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    color: var(--text);
}
.cookie-banner a { color: var(--terracotta); text-decoration: underline; }
.cookie-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.cookie-actions button {
    padding: .65rem 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    border: 1.5px solid var(--terracotta);
    transition: background-color .2s ease, color .2s ease;
}
.cookie-accept {
    background: var(--terracotta);
    color: white;
}
.cookie-accept:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.cookie-decline {
    background: white;
    color: var(--terracotta);
}
.cookie-decline:hover { background: var(--cream); }

@media (max-width: 600px) {
    .cookie-banner { inset: auto .75rem .75rem .75rem; padding: 1.25rem; }
}

/* ==========================================================================
   Cards (re-used: pricing, benefits, FAQ, room-detail)
   ========================================================================== */
.card {
    background: white;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 4px;
    border: 1px solid var(--border-soft);
}
.card-accent { border-top: 3px solid var(--terracotta); }

/* Forms */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
    display: block;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: .4rem;
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: .85rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background: white;
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(155,74,46,.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

/* Utility */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
