:root {
    --bg-dark: #050509;
    --bg-panel: #111018;
    --gold: #d4af37;
    --gold-soft: #f3d88a;
    --text-light: #f7f7f7;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #f3d88a 0, #050509 35%, #000 100%);
    color: var(--gold);
}

/* HEADER */
header {
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.7));
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s;
}

nav a:hover::after {
    width: 100%;
}

/* BUTTONS (GLOBAL) */
.btn-primary {
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

/* MAIN WRAPPER */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 70px;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 32px 26px;
    border-radius: 24px;
    background: rgba(10,8,18,0.96);
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 26px 60px rgba(0,0,0,0.7);
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at top left, rgba(243,216,138,0.22) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(212,175,55,0.18) 0, transparent 60%);
    opacity: 0.9;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 0.8rem;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 1.02rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

.hero-note {
    font-size: 0.85rem;
    color: #cfcfcf;
}

.hero-right {
    justify-self: center;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.45);
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%);
}

.hero-right-text {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 0.9rem;
}

.hero-right-text h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.hero-right-text p {
    margin: 0;
    color: #f0f0f0;
}

/* SECTIONS */
section {
    margin-top: 60px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-sub {
    margin-top: 0;
    margin-bottom: 24px;
    color: #ccc;
    font-size: 0.95rem;
}

/* TREATMENTS GRID (homepage) */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.treatment-card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(212,175,55,0.25);
    overflow: hidden;
}

.treatment-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.treatment-name {
    font-weight: 600;
}

.treatment-price {
    color: var(--gold-soft);
    font-weight: 600;
}

.treatment-desc {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin: 0;
}
.treatment-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.25);
    transform: translateY(-1px);
}
/* OVER ONS */
.over-card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 20px 18px;
    border: 1px solid rgba(212,175,55,0.25);
    max-width: 720px;
}

.over-card p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.96rem;
}

.over-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.25);
    transform: translateY(-1px);
}



.stars {
    color: var(--gold-soft);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* CONTACT */
.contact-card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 18px 18px;
    border: 1px solid rgba(212,175,55,0.25);
    max-width: 720px;
}

.contact-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}
.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.25);
    transform: translateY(-1px);
}
/* FOOTER */
footer {
    text-align: center;
    padding: 22px 16px 32px;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid rgba(212,175,55,0.25);
    margin-top: 40px;
}

/* -----------------------------------------
   BOOKING MODULE – KLEUREN & THEMA
------------------------------------------*/

/* TABS */
.bm-tabs-wrapper {
    background: linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.7));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.25);
}
.bm-tab-btn {
    background: var(--bg-panel);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--text-light);
    letter-spacing: 0.03em;
}
.bm-tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    border-color: transparent;
    box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

/* TITELS */
.bm-h3 {
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.bm-subcat-title {
    color: var(--gold-soft);
    letter-spacing: 0.03em;
    margin-top: 26px;
}

/* TREATMENT CARDS */
.bm-treatment-card {
    background: var(--bg-panel);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 18px;
    padding: 18px 22px 16px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.7);
    transition: 0.25s;
}
.bm-treatment-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.bm-treatment-name {
    color: var(--gold);
    font-weight: 600;
}
.bm-treatment-duration {
    color: var(--gold-soft);
}
.bm-treatment-price {
    color: var(--gold-soft);
    font-weight: 600;
}

/* INFO BUTTON */
.bm-info-btn {
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--gold);
    backdrop-filter: blur(6px);
    transition: 0.25s;
}
.bm-info-btn:hover {
    background: rgba(212,175,55,0.35);
}

/* POPUPS */
.bm-popup-overlay {
    backdrop-filter: blur(8px);
}
.bm-popup-box {
    background: rgba(10,8,18,0.96);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.7);
}
.bm-popup-box h2 {
    color: var(--gold);
    letter-spacing: 0.04em;
}

/* CALENDAR */
#bm-calendar-nav button {
    background: var(--bg-panel);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    padding: 6px 12px;
    transition: 0.25s;
}
#bm-calendar-nav button:hover {
    border-color: var(--gold);
}

/* TIJDSLOTS */
#bm-slots-container button {
    background: var(--bg-panel);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    transition: 0.25s;
}
#bm-slots-container button:hover {
    background: rgba(212,175,55,0.15);
}
#bm-slots-container button.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    border-color: transparent;
    box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

/* FORMULIER */
#bm-step3-form input,
#bm-step3-form textarea {
    background: var(--bg-panel);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 14px;
    padding: 12px 14px;
    transition: 0.25s;
}
#bm-step3-form input:focus,
#bm-step3-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.35);
}
#bm-step3-form label {
    color: var(--gold-soft);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}

/* BUTTONS — DEFINITIEF */
.bm-confirm-btn,
#bm-to-step3,
#bm-step4-close-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    border: none;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(212,175,55,0.45);
    transition: 0.25s;
}
.bm-confirm-btn:hover,
#bm-to-step3:hover,
#bm-step4-close-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 840px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    nav {
        padding-top: 4px;
    }
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-right {
        order: -1;
        max-width: 260px;
    }
}
section {
    scroll-margin-top: 100px; /* hoogte van je header */
}
.admin-link {
    color: inherit;
    text-decoration: none;
    opacity: 1;
}
.admin-link:hover {
    opacity: 1;
}