/* =============================================
   FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* =============================================
   ROOT VARIABELEN
============================================= */
:root {
    --bg-dark:        #050509;
    --bg-soft:        #1a1816;
    --bg-panel:       #111018a3;
    --text-light:     #f7f7f7;
    --text-muted:     #c0b8a8;
    --accent:         #d4b483;
    --gold:           #d4af37;
    --gold-soft:      #f3d88a;
    --accent-hover:   #e0c49a;
    --header-text:    #e1c489;
    --border:         rgba(212,180,131,0.25);
    --radius:         14px;
    --shadow:         0 20px 60px rgba(0,0,0,0.6);
	--tr-kaart:		  #1917156b;
}

/* =============================================
   GLOBAL RESET
============================================= */
* {
    box-sizing: border-box;
}

/* =============================================
   BODY
============================================= */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top, #f3d88a 0, #050509 35%, #000 100%);
    color: var(--gold);
}

@keyframes shimmer {
    0%   { filter: brightness(0.9) saturate(1.1); }
    100% { filter: brightness(1.05) saturate(1.3); }
}

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

/* =============================================
   VIDEO ACHTERGROND
============================================= */
.bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.55;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11,10,9,0.35);
    z-index: -1;
    pointer-events: none;
}

/* =============================================
   NAVIGATIE
============================================= */
.top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.top-nav a {
    color: var(--accent);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: var(--accent-hover);
}

.top-nav a.active {
    color: var(--gold);
    font-weight: 800;
    border-bottom: 4px solid var(--gold);
}

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%;
}

/* =============================================
   DROPDOWN
============================================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0; top: 100%;
    background: rgba(11,10,9,0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px 16px;
    min-width: 260px;
    z-index: 20;
}

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

.dropdown-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--accent);
}

/* =============================================
   LOGO
============================================= */
.logo-section {
    text-align: center;
    padding: 10px 20px;
}

.logo-image {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(0,0,0,0.6));
}

/* =============================================
   LAYOUT CONTAINER
============================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 10px 40px;
}

/* =============================================
   BUTTONS
============================================= */
.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);
}

/* =============================================
   maryam SECTIES
============================================= */
.maryam {
    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);
    position: relative;
    overflow: hidden;
}

.maryam::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;
}

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

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

.maryam-title { font-size: 2.5rem; line-height: 1.15; margin-bottom: 10px; }
.maryam-sub { font-size: 1.02rem; color: #e0e0e0; margin-bottom: 20px; }
.maryam-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.maryam-note { font-size: 0.85rem; color: #cfcfcf; }

.maryam-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;
}

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

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

.maryam-right-text { position: absolute; left: 16px; right: 16px; bottom: 16px; font-size: 0.9rem; }
.maryam-right-text h3 { margin: 0 0 4px; font-size: 1.05rem; }
.maryam-right-text p  { margin: 0; color: #f0f0f0; }

/* =============================================
   SECTIES ALGEMEEN
============================================= */
section { scroll-margin-top: 100px; }
section h2 { font-size: 1.8rem; margin-bottom: 10px; }
.section-sub { margin-top: 0; margin-bottom: 24px; color: #ccc; font-size: 0.95rem; }

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

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

.treatment-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    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 KAART
============================================= */
.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; }

.boek-card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 20px 18px;
    border: 1px solid rgba(212,175,55,0.25);
    max-width: 920px;
}
/* =============================================
   CONTACT
============================================= */
.contact-info,
form {
    background: rgba(26,24,22,0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 20px; color: var(--accent); }
.contact-info p { margin: 8px 0; font-size: 16px; color: var(--text-light); }
.contact-info a { color: var(--accent); text-decoration: none; }

.contact-card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 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); }

/* =============================================
   FORMULIER
============================================= */
form label { display: block; margin-bottom: 6px; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

form input,
form textarea {
    width: 100%; padding: 12px; margin-bottom: 20px;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: transparent; color: var(--text-light); font-size: 15px;
    outline: none; transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus { border-color: var(--accent); }

form button {
    width: 100%; padding: 14px; background: var(--accent); color: var(--bg-dark);
    border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600;
    cursor: pointer; transition: background 0.3s ease;
}

form button:hover { background: var(--accent-hover); }

.feedback {
    margin-bottom: 20px; padding: 12px; border-radius: var(--radius);
    background: rgba(212,180,131,0.15); color: var(--accent); font-weight: 500;
}

/* =============================================
   MAP
============================================= */
iframe {
    width: 100%; height: 350px; border: 0;
    border-radius: var(--radius); margin-top: 40px;
    filter: sepia(0.3) brightness(0.8);
}

/* =============================================
   FOOTER
============================================= */
footer {
    text-align: center;
    padding: 3px 16px 3px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(212,175,55,0.25);
    background: rgba(11,10,9,0.7);
    backdrop-filter: blur(6px);
    margin-top: auto;
}

.footer-info { margin-bottom: 20px; line-height: 1.6; }
.footer-info p { margin: 4px 0; color: var(--text-muted); font-size: 14px; }
.footer-copy  { margin-top: 10px; font-size: 13px; color: var(--text-muted); }

/* =============================================
   DIVERSEN
============================================= */
.admin-link { color: inherit; text-decoration: none; opacity: 1; }
.admin-link:hover { opacity: 1; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
    .container { grid-template-columns: 1fr; padding: 40px 20px; }
}

@media (max-width: 840px) {
    header { flex-direction: column; align-items: flex-start; gap: 8px; }
    nav { padding-top: 4px; }
    .maryam { grid-template-columns: minmax(0, 1fr); }
    .maryam-right { order: -1; max-width: 260px; }
}

@media (max-width: 600px) {
    .logo-image { height: 160px; }
}

/* =============================================
   HEADER
============================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11,10,9,0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,180,131,0.7);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* =============================================
   NAVIGATIE HEADER (overschrijft algemene nav)
============================================= */
.top-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.top-nav > a,
.dropdown-toggle {
    color: var(--header-text);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: color 0.25s ease, opacity 0.25s ease;
    position: relative;
}

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

.top-nav > a:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

.top-nav > a:hover,
.dropdown-toggle:hover {
    color: var(--accent);
    opacity: 0.85;
}

.top-nav a.active {
    color: var(--gold);
    font-weight: 800;
    border-bottom: 4px solid var(--gold);
}

.dropdown-toggle {
    display: inline-block;
}

.dropdown-toggle a {
    color: inherit;
    text-decoration: none;
}

/* =============================================
   DROPDOWN HEADER
============================================= */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11,10,9,0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 260px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.25s ease forwards;
    z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: var(--header-text);
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

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

.dropdown-menu a:hover::after {
    width: 100%;
}

.dropdown-menu a:hover {
    color: var(--accent);
}

/* =============================================
   HAMBURGER
============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* =============================================
   ANIMATIE
============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MOBIEL MENU
============================================= */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .top-nav {
        position: absolute;
        top: 70px; right: 0;
        background: rgba(11,10,9,0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 20px;
        padding: 30px 40px;
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-radius: 0 0 0 14px;
        display: none;
    }
    .top-nav.show { display: flex; }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        animation: none;
    }
    .dropdown-menu a { padding: 8px 0; }
}