/* --- Premium Basis & Variabelen --- */
:root {
    --primary-blue: #122b46;
    --accent-gold: #cfa85e;
    --text-dark: #2c3e50;
    --text-grey: #6c7a89;
    --white: #ffffff;
    --bg-main: #ffffff;
    --bg-light: #f4f7f6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --slider-duration: 18s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

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

/* --- Header & Navigatie (Nu met wit kadertje!) --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* DIT IS DE WIJZIGING: Een subtiel, chique wit kadertje */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    /* Maakt achtergrond wazig voor extra leesbaarheid */
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Zachte schaduw */
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
    /* Geen schaduw meer nodig op de logo-img zelf door de witte achtergrond */
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Hamburger knop (Verstopt op PC, zichtbaar op mobiel) */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    /* Nu altijd blauw op wit kadertje */
    cursor: pointer;
    z-index: 2000;
}

.navbar {
    padding-top: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links>li>a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    /* Links zijn nu altijd donkerblauw op het witte kadertje */
    color: var(--primary-blue);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    text-shadow: none;
    /* Geen schaduw meer nodig voor leesbaarheid */
}

.nav-links i {
    font-size: 9px;
    margin-left: 6px;
    color: var(--accent-gold);
}

/* Subtiel gouden lijntje onder de link bij hover */
.nav-links>li:not(:last-child)>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--accent-gold);
    /* Goud bij hover */
}

/* --- Dropdown Menu Styling (Blijft hetzelfde) --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
    border-top: 3px solid var(--accent-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    font-size: 13px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue) !important;
    padding-left: 25px;
}

/* --- Contact Knop in Navigatie --- */
.nav-btn-contact {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    text-shadow: none !important;
    transition: background-color 0.3s ease;
}

.nav-btn-contact:hover {
    background-color: var(--accent-gold);
    color: var(--white) !important;
}

/* --- Hero Sectie (Slider Achtergrond) --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    animation: imageSlider var(--slider-duration) linear infinite;
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: 6s;
}

.slide-3 {
    animation-delay: 12s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 43, 70, 0.4), rgba(18, 43, 70, 0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.main-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    color: #e0e5eb;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-hero {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
    margin-left: 10px;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-blue);
}

/* --- Wie zijn wij --- */
.about-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 80px;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    display: block;
    margin: 25px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    /* DIT IS DE WIJZIGING: Foto en tekst lijn nu bovenaan perfect gelijk uit */
    align-items: start;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--accent-gold);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.about-text .text-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
}

.about-text .text-link:hover {
    color: var(--white);
}

/* --- Contact Sectie (Blijft hetzelfde) --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: none;
}

.contact-form-container {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    order: 2;
}

.contact-form-container .small-note {
    margin-top: -8px;
    margin-bottom: 16px;
    color: #6e6e6e;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-actions .small-note {
    margin: 0;
}

.form-success {
    background: #ecfdf3;
    border: 1px solid #b8edce;
    color: #1f7a3f;
    padding: 10px 12px;
    border-radius: 10px;
}

.form-error {
    background: #fff1f1;
    border: 1px solid #f2c3c3;
    color: #9b2c2c;
    padding: 10px 12px;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.stat-card {
    border: 1px solid #e6ecf2;
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
}

.stat-card .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    font-weight: 700;
}

.stat-card .value {
    margin-top: 6px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.admin-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    align-items: start;
}

.admin-sidebar {
    position: sticky;
    top: 110px;
}

.admin-sidebar h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.admin-sidebar h3 i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.admin-main {
    display: grid;
    gap: 16px;
}

.admin-card {
    border-radius: 14px;
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 25px rgba(16, 37, 61, 0.05);
}

.admin-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 4px 0 8px;
    padding-top: 4px;
    border-top: 1px dashed #d6e2ef;
}

.dashboard-kpis {
    margin-top: 12px;
}

.dashboard-kpis .stat-card .value {
    font-size: 1.4rem;
}

#admin-protected-card form {
    margin-top: 8px;
}

#admin-status,
#auth-status,
#reset-status {
    min-height: 20px;
}

.form-title {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595959;
    margin-bottom: 8px;
}

.consent-label {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5;
}

.input-group label input[type="checkbox"] {
    margin-right: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    background-color: #ececec;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #9b9b9b;
    background-color: var(--white);
    box-shadow: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.btn-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #1a3656;
    transform: none;
}

/* Rechterkant Contact Info */
.contact-info-container {
    padding-top: 0;
    order: 1;
}

.address-block p {
    font-size: 1.05rem;
    color: #5f5f5f;
    line-height: 1.7;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-social:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.btn-facebook {
    background-color: #1877f2;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-share {
    background-color: var(--primary-blue);
    border-radius: 25px;
    width: auto;
    padding: 0 25px;
    font-size: 0.95rem;
}

.btn-share i {
    margin-right: 8px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* --- Footer --- */
.bottom-footer {
    padding: 42px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #dbe6f2;
    background: linear-gradient(135deg, #0f2740, #16385b);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-footer .container {
    display: grid;
    gap: 26px;
    justify-items: stretch;
}

.bottom-footer a {
    color: #ffffff;
    font-weight: 600;
}

.bottom-footer p {
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-text {
    color: rgba(219, 230, 242, 0.9);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.95);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom small {
    color: rgba(219, 230, 242, 0.85);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.form-row-help {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: -6px;
}

.btn-submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.dashboard-table tr.conflict td {
    background: #fff7e6;
}

.details-row {
    background: #fbfdff;
}

.details-box {
    padding: 12px 10px;
    border: 1px solid #e6ecf2;
    border-radius: 12px;
    background: #ffffff;
}

.details-box .small-note {
    margin-top: 8px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 180px 160px;
    gap: 10px;
    margin-top: 12px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e1e5e8;
    border-radius: 10px;
    background: #fafbfc;
    font-family: var(--font-body);
}

@media (max-width: 900px) {
    .filter-bar {
        grid-template-columns: 1fr;
    }
}

/* --- Animatie Keyframes voor de Slider (Cross-fade effect) --- */
@keyframes imageSlider {
    0% {
        opacity: 0;
        z-index: 1;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        z-index: 2;
    }

    33.33% {
        opacity: 1;
    }

    38.33% {
        opacity: 0;
        z-index: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        z-index: 1;
    }
}

/* --- Animaties voor Scrollen (Fade-up) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsief (Mobiel) --- */
@media (max-width: 900px) {
    .header-container {
        flex-direction: row;
        gap: 15px;
    }

    .main-header {
        position: relative;
        background: var(--white);
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        width: 100%;
        display: none;
    }

    .navbar.active {
        display: block;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        padding: 86px 18px 22px;
        z-index: 1800;
        overflow-y: auto;
    }

    .nav-links {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        background: transparent;
        border: 0;
        border-radius: 12px;
        padding: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        min-width: 100%;
        display: none;
        padding: 4px 0 0;
        background: transparent;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-links>li>a {
        color: var(--primary-blue);
        text-shadow: none;
        justify-content: space-between;
        font-size: 0.9rem;
        padding: 12px 0;
    }

    .main-header.menu-open .logo-container {
        display: none;
    }

    .main-header.menu-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links>li>a:hover {
        color: var(--accent-gold);
    }

    .logo-img {
        filter: none;
    }

    .hero-section {
        height: 80vh;
        padding-top: 50px;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    .contact-grid {
        padding: 18px;
    }

    .bottom-footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.page-hero {
    background: linear-gradient(to right, rgba(18, 43, 70, 0.92), rgba(18, 43, 70, 0.78)), url('./images/bootfoto1.jpg') center/cover no-repeat;
    min-height: 48vh;
    display: flex;
    align-items: center;
    padding: 130px 0 70px;
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 720px;
    color: #e6ecf2;
}

.content-section {
    padding: 80px 0;
}

.alt-bg {
    background: var(--bg-light);
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.info-card {
    background: var(--white);
    border: 1px solid #e9edf1;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(18, 43, 70, 0.05);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.info-card p,
.info-card li {
    color: var(--text-grey);
    line-height: 1.8;
}

.info-card ul {
    padding-left: 18px;
}

.feature-image {
    width: 100%;

    /* VERWIJDER DE HARDE HOOGTE */
    /* height: 250px; */

    /* NIEUW: Gebruik een vaste verhouding (bijv. 4:3 of 1:1) */
    aspect-ratio: 4 / 3;

    object-fit: cover;

    /* NIEUW: Focus op de onderkant van de foto in plaats van exact het midden, 
       zodat de boten beter in beeld blijven */
    object-position: bottom;

    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



.price-lines p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.muted {
    color: var(--text-grey);
}

.testimonial {
    font-style: italic;
}

.highlight-box {
    border-left: 4px solid var(--accent-gold);
    background: #fffdf8;
    padding: 16px 18px;
    margin-top: 14px;
    border-radius: 8px;
}

.utility-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid #e6ecf2;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
}

.trust-badge i {
    color: var(--accent-gold);
}

.small-note {
    font-size: 0.9rem;
    color: var(--text-grey);
}

#booking-list {
    margin-top: 8px;
    padding-left: 18px;
}

#booking-list li {
    margin-bottom: 6px;
    color: var(--text-grey);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.inline-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.inline-form-grid .full-width {
    grid-column: 1 / -1;
}

#contact-status,
#admin-status,
#auth-status,
#reset-status {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.admin-secondary-btn {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid rgba(18, 43, 70, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.admin-secondary-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
}


.admin-sidebar .footer-links li a {
    color: black;
    /* of #000000 */
    text-decoration: none;
    /* Optioneel: dit haalt het onderstreepje weg */
}

/* Optioneel: Een kleurtje als je er met de muis overheen gaat */
.admin-sidebar .footer-links li a:hover {
    color: #555555;
    /* Donkergrijs bij hover */
}

.availability-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}



.calendar-cell {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 9px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.calendar-head {
    font-weight: 700;
    background: #f7fafd;
}

.calendar-empty {
    border-color: transparent;
    background: transparent;
}

.calendar-cell.free {
    background: #ecfdf3;
    border-color: #b8edce;
}

.calendar-cell.booked {
    background: #fff1f1;
    border-color: #f2c3c3;
}

.calendar-cell small {
    margin-top: 4px;
    font-size: 0.7rem;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.dashboard-table th,
.dashboard-table td {
    border-bottom: 1px solid #ebeff3;
    padding: 10px 8px;
    text-align: left;
    font-size: 0.9rem;
}

.status-pill {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-new {
    background: #e7f0ff;
    color: #214b8e;
}

.status-confirmed {
    background: #e8f8ed;
    color: #1f7a3f;
}

.status-cancelled {
    background: #ffe9e9;
    color: #9b2c2c;
}

.table-actions {
    display: flex;
    gap: 6px;
}

.status-btn {
    border: 1px solid #d9e3ee;
    border-radius: 8px;
    padding: 5px 8px;
    background: #fff;
    cursor: pointer;
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .page-hero {
        min-height: auto;
        padding: 70px 0 55px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-grid {
        grid-template-columns: 1fr;
    }

    .inline-form-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

    .availability-calendar {
        gap: 6px;
    }

    .hero-btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Nieuwe Toevoegingen: Kaart & Socials --- */
.contact-details-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 16px;
    border: 1px solid #dddddd;
}

.social-links-small {
    display: flex;
    gap: 15px;
}

.social-links-small a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-small a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-footer-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-footer-info i {
    color: var(--accent-gold);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-availability-block {
    margin-top: 18px;
}

/* --- Nieuwe Toevoegingen: Gepersonaliseerde Footer --- */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer-link {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 2px;
}

.designer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-details-top {
        flex-direction: column;
        gap: 15px;
    }
}