/* --- GLOBALE VARIABLER --- */
:root {
    --text-dark: #333333; 
    --text-light: #f9fbf9; 
    --bg-light: #ffffff; 
    --bg-gray: #f4f7f5;
    --font-logo: 'Cinzel', serif; 
    --font-heading: 'Montserrat', sans-serif; 
    --font-body: 'Open Sans', sans-serif;
    --footer-bg: #1a1a1a; 
    --footer-text: #eeeeee; 
    --footer-border: none;
}

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* CSS Variables reagerer direkte på temaet og ændrer hele sidens farve! */
html, body { 
    width: 100%; 
    max-width: 100vw; 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
    font-family: var(--font-body); 
    color: var(--text-dark); 
    line-height: 1.8; 
    background-color: var(--bg-light); 
    position: relative; 
    transition: background-color 0.6s ease, color 0.6s ease; 
}

h1, h2, h3 { 
    font-family: var(--font-heading); 
    font-weight: 400; 
    transition: 0.3s; 
}

p { 
    margin-bottom: 15px; 
    font-size: 1.05rem; 
    transition: 0.3s; 
}

.text-center { text-align: center; } 
.text-muted { color: #888; } 
.small { font-size: 0.85rem; }

a { 
    color: var(--primary-color); 
    text-decoration: none; 
    transition: 0.3s; 
} 
a:hover { color: var(--primary-dark); }

/* BREDERE CONTAINER (Giver plads til 4+ kolonner på store skærme) */
.container { 
    width: 100%; 
    max-width: 1350px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.mb-15 { margin-bottom: 15px; } 
.flex-gap { display: flex; gap: 15px; flex-wrap: wrap; } 
.flex-1 { flex: 1; min-width: 120px; }
.relative-z { position: relative; z-index: 5; }

/* Baggrunds blobs */
.bg-shapes { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    overflow: hidden; 
    z-index: 0; 
    pointer-events: none; 
}
.shape { 
    position: absolute; 
    border-radius: 50%; 
    opacity: 0.12; 
    will-change: transform; 
    pointer-events: none; 
    transition: 1s;
}
.shape-1 { 
    width: 60vw; 
    height: 60vw; 
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%); 
    top: -20%; 
    left: -20%; 
    animation: floatBlob 20s ease-in-out infinite alternate; 
}
.shape-2 { 
    width: 50vw; 
    height: 50vw; 
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%); 
    bottom: -20%; 
    right: -20%; 
    animation: floatBlob 25s ease-in-out infinite alternate-reverse; 
}

@keyframes floatBlob { 
    0% { transform: translate3d(0,0,0) scale(1); } 
    100% { transform: translate3d(40px,30px,0) scale(1.05); } 
}

/* Navigation */
nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background: var(--bg-light); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 5%; 
    z-index: 1000; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}
.nav-logo-img { 
    max-height: 60px; 
    margin: 8px 0; 
    width: auto; 
    max-width: 100%; 
    display: block; 
    transition: 0.3s; 
    object-fit: contain; 
}
nav .logo { 
    font-family: var(--font-logo); 
    font-size: clamp(1.1rem, 3.5vw, 1.6rem); 
    color: var(--primary-dark); 
    letter-spacing: 1px; 
    font-weight: 600; 
    text-transform: uppercase; 
    transition: 0.3s; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-width: 70vw; 
}

nav ul { 
    list-style: none; 
    display: flex; 
    align-items: center; 
    transition: 0.3s; 
} 
nav ul li { margin-left: 25px; }

nav ul li a { 
    color: var(--text-dark); 
    font-family: var(--font-heading); 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.3s;
}
nav ul li a:hover { 
    color: var(--primary-color); 
    text-shadow: 0 0 10px var(--primary-glow); 
}

.mobile-menu { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 5px; 
    z-index: 1001; 
    transition: 0.3s; 
}
.mobile-menu .bar { 
    width: 25px; 
    height: 3px; 
    background-color: var(--primary-dark); 
    transition: 0.4s; 
}

/* CSS NATIVE PARALLAX & OVERLAYS */
.parallax-section { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--text-light); 
    z-index: 2; 
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
}
.hero-section { height: 100vh; min-height: 600px; padding-top: 80px; }
.divider-parallax { height: 50vh; min-height: 350px; }

/* FORBEDRET OVERLAYS (Knivskarp læselighed på alle baggrunde) */
.overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.85)); 
    z-index: 1; pointer-events: none; 
}
.overlay-green { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, var(--primary-dark) 100%); 
    opacity: 0.9; z-index: 1; pointer-events: none; 
}
.overlay-dark { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)); 
    z-index: 1; pointer-events: none; 
}

.parallax-section .content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
    padding: 40px 20px; 
    width: 100%; 
}

/* Tekster i Top & Citater */
.logo-text { 
    font-family: var(--font-logo); 
    font-size: clamp(2rem, 7vw, 6rem); 
    letter-spacing: clamp(2px, 2vw, 10px); 
    color: #ffffff; 
    margin-bottom: 10px; 
    line-height: 1.1; 
    text-transform: uppercase; 
    display: inline-block;
}
.hero-logo-img { 
    max-width: 100%; 
    max-height: 250px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); 
    display: inline-block;
}
.glow-text { text-shadow: 0 10px 30px rgba(0,0,0,0.9); }
.subtitle { 
    font-family: var(--font-heading); 
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); 
    letter-spacing: clamp(1px, 1vw, 4px); 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    text-shadow: 0 2px 15px rgba(0,0,0,0.9); 
    color: #fff;
}
.author { 
    font-size: 1.2rem; 
    font-style: italic; 
    font-weight: 300; 
    opacity: 0.95; 
    text-shadow: 0 2px 15px rgba(0,0,0,0.9); 
    color: #fff;
}
.divider-light { 
    width: 60px; 
    height: 1px; 
    background: rgba(255,255,255,0.7); 
    margin: 25px auto; 
}
.quote { 
    font-family: var(--font-logo); 
    font-size: clamp(1.5rem, 4vw, 2.2rem); 
    line-height: 1.5; 
    color: #ffffff !important; 
    padding: 0 15px; 
    font-weight: 600; 
    text-shadow: 0px 5px 20px rgba(0,0,0,1), 0px 2px 5px rgba(0,0,0,1) !important; 
    letter-spacing: 1px;
}

/* Knapper & Forms */
.hero-btns { 
    display: flex; 
    gap: 15px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.btn { 
    display: inline-block; 
    padding: 15px 35px; 
    background: transparent; 
    color: white; 
    font-size: 0.95rem; 
    font-family: var(--font-heading); 
    border: 2px solid white; 
    border-radius: 50px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    font-weight: 600; 
    text-align: center; 
    text-decoration: none;
}
.btn:hover { 
    background: white; 
    color: var(--text-dark); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
}
.btn-solid { 
    background: var(--primary-color); 
    border-color: var(--primary-color); 
    color: white; 
}
.btn-solid:hover { 
    background: var(--primary-dark); 
    border-color: var(--primary-dark); 
    color: white; 
}

.btn-outline { background: transparent; border: 2px solid #ccc; color: var(--text-dark); }
.btn-outline:hover { background: var(--bg-gray); border-color: #ccc; color: var(--text-dark); }

.hero-btns .btn-outline { 
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(8px); 
    border: 2px solid rgba(255, 255, 255, 0.8); 
    color: #ffffff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}
.hero-btns .btn-outline:hover { 
    background: rgba(255, 255, 255, 0.25); 
    border-color: #ffffff; 
    color: #ffffff; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); 
}
.shadow-hover:hover { box-shadow: 0 10px 25px var(--primary-glow); }

.form-input { 
    width: 100%; 
    padding: 16px; 
    border: 1px solid rgba(0,0,0,0.1); 
    border-radius: 8px; 
    font-family: var(--font-body); 
    font-size: 1rem; 
    transition: 0.3s; 
    outline: none; 
    background: var(--bg-light); 
    color: var(--text-dark);
}
.form-input:focus { border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-glow);}
.input-glow:focus { box-shadow: 0 0 15px var(--primary-glow); border-color: var(--primary-color); }
.contact-form-wrapper { 
    max-width: 600px; 
    margin: 0 auto; 
    background: var(--bg-light); 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.05); 
    transition: 0.4s;
}

/* Sektioner Generelt */
.content-section { padding: 100px 0; position: relative; z-index: 2; transition: 0.5s; }
@media (min-width: 768px) { .content-section { padding: 120px 0; } }

.bg-light-alt { background-color: var(--bg-gray); }
.bg-dark { 
    background-color: var(--footer-bg); 
    color: var(--footer-text); 
    border-top: var(--footer-border); 
    padding: 80px 0; 
    transition: 0.5s; 
}

.section-title { 
    font-size: clamp(2rem, 4vw, 2.5rem); 
    letter-spacing: 1px; 
    color: var(--primary-dark); 
    line-height: 1.2; 
    margin-bottom: 10px; 
    transition: 0.3s;
}
.divider { 
    width: 50px; height: 3px; 
    background: var(--primary-color); 
    margin: 20px auto 30px auto; 
    border-radius: 2px; 
    transition: 0.3s;
}
.divider-left { 
    width: 50px; height: 3px; 
    background: var(--primary-color); 
    margin: 15px 0 30px 0; 
    border-radius: 2px; 
    transition: 0.3s;
}

.split-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
@media (min-width: 900px) { 
    .split-layout { flex-wrap: nowrap; } 
    .split-text, .split-image { flex: 1; } 
}

/* PROFIL BILLEDE */
.profile-frame { 
    width: 100%; 
    max-width: 350px; 
    aspect-ratio: 1/1; 
    border-radius: 50%; 
    background: transparent; 
    border: 8px solid var(--bg-light); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    overflow: hidden; 
    position: relative; 
    -webkit-backface-visibility: hidden; 
    transform: translate3d(0, 0, 0); 
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.profile-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: 0.5s; }
.profile-frame:hover { transform: scale(1.05) translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

/* Dynamiske Cards (Ydelser og Info) */
.grid-dynamic { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 20px; 
    align-items: stretch;
}
.card { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    background: var(--bg-light); 
    padding: 40px 25px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border: 1px solid rgba(0,0,0,0.03); 
}
.card.has-image { padding: 0; overflow: hidden; }
.card-img-wrapper { width: 100%; aspect-ratio: 4/3; overflow: hidden; transition: 0.3s;}
.card-image { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card.has-image:hover .card-image { transform: scale(1.05); }

.card-content-wrap { 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
    padding: 30px 25px; 
    transition: 0.3s;
}
.glow-hover:hover { transform: translateY(-10px); box-shadow: 0 20px 50px var(--primary-glow); border-color: var(--primary-light); z-index: 10;}
.card-icon { font-size: 3.5rem; margin-bottom: 20px; display: inline-block; transition: 0.4s; }
.card:hover .card-icon { transform: scale(1.1) translateY(-5px); }
.card h3 { color: var(--primary-dark); margin-bottom: 15px; font-size: 1.4rem; font-weight: 600; transition: 0.3s;}

/* Produkter (Shop) - Flex trick presser 'læg i kurv' helt i bunden! */
.product-card { 
    padding: 0 !important; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    height: 100%; 
}
.product-card .card-img-wrapper { width: 100%; aspect-ratio: 4/3; overflow: hidden; margin: 0; border-radius: 0; }
.product-card .card-content-wrap { 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
    padding: 25px; 
    transition: 0.3s; 
    justify-content: space-between;
}
.product-card .card-content-wrap > div:first-child { flex-grow: 1; }
.product-card .card-content-wrap > div:last-child { margin-top: auto; padding-top: 15px; }
.product-price { 
    font-family: var(--font-heading); 
    font-size: 1.6rem; 
    font-weight: 600; 
    color: var(--primary-color); 
    margin: 0 0 15px 0; 
    transition: 0.3s; 
}

/* --- EKSTREMT KOMPAKT SHOP VISNING --- */
.theme-shop-small #produkter .grid-dynamic { 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
    gap: 10px; 
    align-items: stretch;
}
.theme-shop-small #produkter .product-card { border-radius: 8px; }

/* Tvinger billedet til at klistre til toppen og fylde kassen uden lufthuller */
.theme-shop-small #produkter .product-card .card-img-wrapper { 
    aspect-ratio: 4/3; 
    max-height: 140px; 
    background: transparent; 
    margin: 0; 
    width: 100%; 
    border-radius: 8px 8px 0 0; 
}
.theme-shop-small #produkter .product-card .card-image { 
    object-fit: cover; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
}

.theme-shop-small #produkter .product-card .card-content-wrap { padding: 12px; }
.theme-shop-small #produkter .product-card .card-content-wrap > div:last-child { padding-top: 8px; }
.theme-shop-small #produkter .product-card h3 { font-size: 0.95rem; margin-bottom: 4px; line-height: 1.2;}
.theme-shop-small #produkter .product-card p { font-size: 0.8rem; line-height: 1.2; margin-bottom: 5px; padding-bottom: 0;}
.theme-shop-small #produkter .product-price { font-size: 1.1rem; margin: 0 0 8px 0; } 
.theme-shop-small #produkter .btn { padding: 6px 10px; font-size: 0.75rem; border-radius: 4px; width: 100%;}
.theme-shop-small #produkter .qty-selector { gap: 4px !important; margin-bottom: 6px !important;}
.theme-shop-small #produkter .qty-btn { width: 28px; height: 28px; font-size: 0.9rem; }
.theme-shop-small #produkter .product-qty-input { height: 28px; width: 35px; font-size: 0.85rem; padding: 0;}

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.portfolio-item-container { background: transparent; padding-bottom: 10px; }
.portfolio-item { 
    position: relative; 
    overflow: hidden; 
    border-radius: 15px; 
    aspect-ratio: 4/3; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    background: var(--bg-light); 
    transition: 0.4s; 
    cursor: pointer;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    padding: 30px 20px; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    color: white; opacity: 0; transform: translateY(20px); 
    transition: 0.4s; text-align: left; pointer-events: none;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }

/* Prisliste & Åbningstider */
.price-list, .hours-container { 
    max-width: 800px; 
    margin: 0 auto; 
    background: var(--bg-light); 
    border-radius: 15px; 
    padding: 20px 40px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.03); 
    transition: 0.4s;
}
.price-item, .hours-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    transition: transform 0.3s ease, border 0.3s; 
}
.price-item:last-child, .hours-row:last-child { border-bottom: none; }
.price-hover:hover, .hours-row:hover { transform: translateX(8px); }

.price-info h4 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 5px; font-weight: 600; transition: 0.3s;}
.price-duration { font-size: 0.9rem; color: #888; font-style: italic; transition: 0.3s;}
.price-amount { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--primary-color); transition: 0.3s;}
.hours-day { font-weight: 600; color: var(--text-dark); font-size: 1.1rem; transition: 0.3s;}
.hours-time { color: var(--primary-color); font-weight: 600; font-size: 1.1rem; transition: 0.3s;}

/* Booking System */
.booking-container { 
    max-width: 800px; 
    margin: 0 auto; 
    background: var(--bg-light); 
    padding: clamp(20px, 5vw, 40px); 
    border-radius: 15px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.03); 
    transition: 0.4s;
}
.glow-box { box-shadow: 0 15px 50px var(--primary-glow); border: 1px solid rgba(255,255,255,0.6); }

.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
.calendar-header h3 { font-size: 1.4rem; font-weight: 600; color: var(--primary-dark); width: 100%; text-align: center; order: -1; text-transform: capitalize; transition: 0.3s;}
@media(min-width: 600px) { .calendar-header h3 { width: auto; order: 0; } }

.calendar-header button { 
    background: transparent; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    padding: 8px 20px; 
    border-radius: 50px; 
    cursor: pointer; 
    transition: 0.3s; 
    font-family: var(--font-heading); 
    font-weight: 600; 
    font-size: 0.9rem;
}
.calendar-header button:hover { background: var(--primary-color); color: white; box-shadow: 0 5px 15px var(--primary-glow);}

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(3px, 1vw, 8px); margin-bottom: 20px; }
.day { 
    padding: clamp(10px, 2vw, 15px) 5px; 
    background: var(--bg-gray); 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    font-weight: 600; 
    font-size: clamp(0.85rem, 1.5vw, 1rem); 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.day:hover:not(.disabled) { background: var(--primary-color); color: white; transform: translateY(-3px) scale(1.05); box-shadow: 0 5px 15px var(--primary-glow); }
.day.disabled { background: var(--bg-gray); color: #ccc; cursor: not-allowed; opacity: 0.5;}
.day.active { background: var(--primary-dark); color: white; transform: scale(1.05); box-shadow: 0 5px 15px var(--primary-glow); border: 2px solid var(--bg-light); }
.day.today { border: 2px solid var(--primary-color); background: var(--bg-light); color: var(--primary-dark); }
.hidden { display: none !important; }

.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 20px; }
.slot { 
    padding: 12px 5px; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-dark); 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-weight: 600; 
    font-size: 0.95rem; 
    text-align: center; 
    background: var(--bg-light);
}
.slot:hover:not(.locked) { background: var(--primary-color); color: white; transform: translateY(-3px); box-shadow: 0 5px 15px var(--primary-glow); }
.slot.locked { border-color: rgba(0,0,0,0.1); color: #bbb; cursor: not-allowed; background: var(--bg-gray); text-decoration: line-through; opacity: 0.6;}

/* Toasts & Modals (Standard) - RETTET HORIZONTAL SCROLL */
.toast-message { position: fixed; top: 100px; left: 50%; transform: translateX(-50%); z-index: 9999; width: 90%; max-width: 500px; text-align: center;}
.error-msg { color: #d9534f; padding: 15px; background: #fdf2f2; border-radius: 8px; border-left: 4px solid #d9534f; font-weight: 600; box-shadow: 0 10px 30px rgba(217, 83, 79, 0.2);}
.success-msg { color: var(--primary-dark); padding: 15px; background: #eaf4ef; border-radius: 8px; border-left: 4px solid var(--primary-color); font-weight: 600; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
    background: rgba(0,0,0,0.7); z-index: 10000; 
    display: flex; align-items: center; justify-content: center; 
    opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(4px); 
}
.modal-overlay.show { opacity: 1; visibility: visible; }

.modal-content { 
    background: var(--bg-light); 
    padding: clamp(20px, 5vw, 40px); 
    border-radius: 15px; 
    max-width: 600px; 
    width: 90%; 
    position: relative; 
    transform: translateY(20px); 
    transition: 0.4s; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); 
    max-height: 80vh; 
    overflow-y: auto; 
    overflow-x: hidden; 
    word-wrap: break-word; 
    box-sizing: border-box;
}
.modal-overlay.show .modal-content { transform: translateY(0); }

/* Beskytter mod alt for lange ord i overskrifter i modalen (fx PRIVATLIVSPOLITIK) */
.modal-content h2 { 
    margin-top: 0; 
    color: var(--primary-dark); 
    margin-bottom: 15px; 
    font-family: var(--font-heading); 
    font-size: clamp(1.4rem, 5vw, 1.8rem); 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    hyphens: auto;
}
.modal-content ul { margin-left: 20px; margin-bottom: 20px; color: var(--text-dark);}
.modal-content li { margin-bottom: 10px; font-size: 0.95rem; color: var(--text-dark);}
.terms-content { color: var(--text-dark); line-height: 1.6; }

.close-modal { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 2rem; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    color: #888; 
    transition: 0.2s; 
    line-height: 1;
}
.close-modal:hover { color: #d9534f; transform: scale(1.1); }

/* Fuldskærms Portefølje / Menukort */
#portfolioModal .modal-content { 
    background: transparent; 
    box-shadow: none; 
    padding: 0; 
    max-width: 800px; 
    width: 95%; 
    max-height: 95vh; 
    overflow: visible; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.portfolio-modal-inner { 
    background: var(--bg-light); 
    border-radius: 15px; 
    overflow-y: auto; 
    overflow-x: hidden; 
    max-height: 85vh; 
    width: 100%; 
    position: relative; 
    box-shadow: 0 25px 60px rgba(0,0,0,0.5); 
    border: 2px solid rgba(255,255,255,0.1); 
    pointer-events: auto; 
    scrollbar-width: thin; 
    scrollbar-color: var(--primary-color) transparent; 
    display: flex;
    justify-content: center;
}
.portfolio-modal-inner::-webkit-scrollbar { width: 6px; display: block; }
.portfolio-modal-inner::-webkit-scrollbar-track { background: transparent; margin: 20px 0; }
.portfolio-modal-inner::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 10px; }

/* Forhindrer at billedet zoomes ubehageligt ud over sine dimensioner */
#portfolioModalImg { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    border-radius: inherit; 
    margin: 0 auto;
}

/* Fastlåst lukkeknap i hjørnet af skærmen */
#portfolioModal .close-modal { 
    position: fixed !important; 
    top: 15px !important; 
    right: 15px !important; 
    background: #ffffff !important; 
    color: #333 !important; 
    border-radius: 50% !important; 
    width: 45px !important; 
    height: 45px !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important; 
    z-index: 10005 !important; 
    opacity: 1 !important; 
    border: 2px solid #eee !important;
    font-size: 2rem !important;
    line-height: 1 !important;
}
#portfolioModal .close-modal:hover { 
    background: #d9534f !important; 
    color: white !important; 
    border-color: #d9534f !important; 
    transform: scale(1.1) !important; 
}

/* CSS ANIMATIONER (Skudsikre for lyn-scroll) */
.js-anim { opacity: 0; transition: all 0.6s ease-out; }
.js-anim.show { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.fade-up { transform: translate3d(0, 40px, 0); }
.slide-up { transform: translate3d(0, 60px, 0); }
.slide-left { transform: translate3d(40px, 0, 0); }
.slide-right { transform: translate3d(-40px, 0, 0); }
.zoom-in { transform: scale(0.95); }
.scale-up { transform: scale(0.9); }
.pop-in { transform: scale(0.95) translate3d(0, 20px, 0); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.bounce-hover { transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.bounce-hover:hover { transform: scale(1.05) translateY(-5px); }

.floating-element { animation: float-small 4s ease-in-out infinite; }
@keyframes float-small { 
    0% { transform: translateY(0); } 
    50% { transform: translateY(-5px); } 
    100% { transform: translateY(0); } 
}

.slide-down { transform: translate3d(-50%, -30px, 0); opacity: 0; transition: 0.4s ease;} 
.slide-down.show { transform: translate3d(-50%, 0, 0); opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

.floating-complex { animation: float-complex 8s ease-in-out infinite; }
@keyframes float-complex { 
    0% { transform: translateY(0px) rotate(0deg); } 
    33% { transform: translateY(-10px) rotate(1deg); } 
    66% { transform: translateY(5px) rotate(-1deg); } 
    100% { transform: translateY(0px) rotate(0deg); } 
}

/* Footer Link Fix */
footer a.admin-link { 
    color: rgba(255, 255, 255, 0.4) !important; 
    text-decoration: none; 
    transition: 0.3s; 
    display: inline-block; 
    padding: 5px; 
}
footer a.admin-link:hover { 
    color: rgba(255, 255, 255, 1) !important; 
    text-shadow: 0 0 10px rgba(255,255,255,0.5); 
}

/* --- INDKØBSKURV (WEBSHOP) --- */
.floating-cart-btn { 
    position: fixed; 
    bottom: 30px; 
    left: 30px; 
    background: var(--primary-color); 
    color: white; 
    width: 65px; 
    height: 65px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); 
    z-index: 9998; 
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border: 2px solid white; 
}
.floating-cart-btn:hover { 
    transform: scale(1.1) translateY(-5px); 
    background: var(--primary-dark); 
}
.floating-cart-btn.hidden { display: none !important; }

.cart-badge { 
    position: absolute; 
    top: -5px; 
    right: -5px; 
    background: #e11d48; 
    color: white; 
    font-size: 0.9rem; 
    font-family: var(--font-heading); 
    font-weight: bold; 
    width: 26px; 
    height: 26px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    border: 2px solid white; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-items-list { margin-bottom: 20px; border-bottom: 2px solid rgba(0,0,0,0.05); padding-bottom: 10px; }
#cartModal .modal-content { max-width: 700px !important; width: 95%; padding: clamp(20px, 4vw, 40px); }

.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed rgba(0,0,0,0.05); }
.cart-item:last-child { border-bottom: none; }
.cart-item-title { font-weight: 600; font-size: 1rem; color: var(--text-dark); line-height: 1.2; margin-bottom: 3px; }
.cart-item-price { color: var(--primary-color); font-weight: 600; font-size: 0.9rem;}

.remove-cart-item { 
    background: #fee2e2; color: #ef4444; border: none; width: 28px; height: 28px; 
    border-radius: 50%; cursor: pointer; font-weight: bold; display: flex; 
    align-items: center; justify-content: center; transition: 0.2s; font-size: 1.1rem; 
}
.remove-cart-item:hover { background: #ef4444; color: white; transform: scale(1.1); }
.cart-total { font-size: 1.3rem; text-align: right; color: var(--primary-dark); font-family: var(--font-heading); font-weight: 600; padding: 10px 0;}

/* Plus / Minus Knapper */
.qty-btn { 
    background: var(--bg-gray); border: 1px solid rgba(0,0,0,0.1); width: 40px; height: 40px; 
    border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 1.2rem; display:flex; 
    align-items:center; justify-content:center; color: var(--primary-dark); transition: 0.2s;
}
.qty-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.product-qty-input { 
    text-align: center; border: 1px solid rgba(0,0,0,0.1); border-radius: 5px; height: 40px; 
    font-weight: bold; width: 60px; -moz-appearance: textfield; background: var(--bg-light); color: var(--text-dark);
}
.product-qty-input::-webkit-outer-spin-button, .product-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-adjust-btn { 
    background: var(--bg-gray); border:none; width: 26px; height: 26px; border-radius: 4px; 
    cursor:pointer; font-weight:bold; color: var(--text-dark); transition: 0.2s;
}
.qty-adjust-btn:hover { background: var(--primary-color); color: white;}


/* --- RESPONSIVT MOBILDESIGN --- */
@media (max-width: 1200px) {
    nav { padding: 20px 5% !important; background: transparent !important; box-shadow: none !important; border: none !important; }
    .logo { display: none !important; }
    
    .mobile-menu { 
        display: flex; margin-left: auto; background: rgba(255, 255, 255, 0.95); 
        padding: 10px 12px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: 0.3s;
    }
    
    .mobile-menu.active { background: transparent !important; box-shadow: none !important; border: none !important;}
    .mobile-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu.active .bar:nth-child(2) { opacity: 0; }
    .mobile-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; 
        background: rgba(255,255,255,0.98); flex-direction: column; 
        justify-content: flex-start; align-items: center; transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
        z-index: 1000; overflow-y: auto; padding-top: 100px; padding-bottom: 40px;
    }
    .nav-links.nav-active { right: 0; }
    .nav-links li { margin: clamp(10px, 2vh, 20px) 0; } 
    .nav-links li a { font-size: clamp(1.1rem, 3vh, 1.3rem); }

    /* Låser sprogvælger i toppen til venstre på mobilmenu */
    .lang-menu-item { position: absolute !important; top: 20px !important; left: 20px !important; margin: 0 !important; z-index: 1005; }
    
    .hero-section .content { transform: translateY(-3vh); }
    .divider-left { margin: 15px auto 30px auto; }
    .split-text { text-align: center; }
    .profile-frame { max-width: 250px; margin: 0 auto; }
    .price-item, .hours-row { flex-direction: column; text-align: center; gap: 10px; }
    .parallax-section { background-attachment: scroll; } 
}


/* =====================================================================
   --- OVERSÆTTELSES MODUL (SKJULER ALT GOOGLE UI) --- 
   ===================================================================== */
body { top: 0px !important; position: static !important; }
iframe.skiptranslate, 
.goog-te-banner-frame, 
#goog-gt-tt, 
.goog-te-balloon-frame, 
div.VIpgJd-ZVi9od-aZ2wEe-wOHMyf, 
div.VIpgJd-ZVi9od-aZ2wEe-OiiCO, 
div[id^="goog-gt-"] { 
    display: none !important; visibility: hidden !important; height: 0 !important; 
}
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
#google_translate_element { display: none !important; }

.lang-selector { 
    display: flex; gap: 8px; background: rgba(255,255,255,0.9); 
    padding: 4px 10px; border-radius: 30px; border: 1px solid rgba(0,0,0,0.05); align-items: center; 
}
.lang-flag { cursor: pointer; font-size: 20px; transition: 0.2s; user-select: none; opacity: 0.6; filter: grayscale(50%); line-height: 1; pointer-events: auto;}
.lang-flag:hover { transform: scale(1.15); opacity: 1; filter: grayscale(0%); }
.lang-flag.active { opacity: 1; filter: grayscale(0%); border-bottom: 2px solid var(--primary-color); padding-bottom: 2px;}


/* =====================================================================
   --- TEMA SPECIFIKKE DESIGNS (Store visuelle variationer) --- 
   ===================================================================== */

/* --- TEMA: KLINIK / VELVÆRE (Ekstremt bløde former, organisk feel) --- */
.theme-clinic {
    --font-heading: 'Cinzel', serif;
    --footer-bg: #1a251f; --footer-text: #d0dcd5;
}
.theme-clinic .card, 
.theme-clinic .booking-container, 
.theme-clinic .contact-form-wrapper, 
.theme-clinic .price-list, 
.theme-clinic .hours-container {
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border: none;
}
.theme-clinic .btn { border-radius: 50px; padding: 15px 40px; }
.theme-clinic .form-input { border-radius: 20px; }
.theme-clinic .day, .theme-clinic .slot { border-radius: 20px; }
.theme-clinic .shape-1, .theme-clinic .shape-2 { filter: blur(50px); opacity: 0.18; }
.theme-clinic .section-title { font-weight: 300; }
.theme-clinic .divider, .theme-clinic .divider-left { border-radius: 10px; height: 4px; opacity: 0.7;}
.theme-clinic .mobile-menu { border-radius: 30px; padding: 12px 15px;}
.theme-clinic .portfolio-modal-inner { border-radius: 30px; }

@keyframes clinicPulse { 0% { box-shadow: 0 0 0 0 rgba(var(--primary-color), 0.4); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.theme-clinic .btn-solid { animation: clinicPulse 3s infinite; }


/* --- TEMA: IT / SERVICE (Neo-Brutalisme, Skarpt, Tech) --- */
.theme-it {
    --font-heading: 'Open Sans', sans-serif;
    --footer-bg: #0f172a; --footer-text: #cbd5e1;
}
.theme-it .card, 
.theme-it .booking-container, 
.theme-it .contact-form-wrapper, 
.theme-it .btn, 
.theme-it .form-input, 
.theme-it .portfolio-item, 
.theme-it .price-list, 
.theme-it .hours-container,
.theme-it .portfolio-modal-inner {
    border-radius: 0px !important;
}
.theme-it .card, 
.theme-it .booking-container, 
.theme-it .contact-form-wrapper, 
.theme-it .price-list, 
.theme-it .hours-container {
    border: 2px solid var(--text-dark);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
}
.theme-it .btn-solid {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
}
.theme-it .btn-solid:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--text-dark);
}
.theme-it .btn-outline { border: 2px solid var(--text-dark); box-shadow: 4px 4px 0px var(--text-dark); font-weight: 700;}
.theme-it .btn-outline:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0px var(--text-dark); background: var(--bg-light);}
.theme-it .section-title { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.theme-it .day { border-radius: 0; border: 1px solid transparent;}
.theme-it .slot { border-radius: 0; border-width: 1px; }
.theme-it .mobile-menu { border-radius: 0; border: 2px solid var(--text-dark); box-shadow: 4px 4px 0 var(--text-dark); }
.theme-it .card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--primary-light); border-color: var(--primary-color);}


/* --- TEMA: PORTFOLIO (Apple minimalisme, fokus på indhold) --- */
.theme-portfolio {
    --font-heading: 'Montserrat', sans-serif;
    --bg-gray: #ffffff;
    --footer-bg: #000000; --footer-text: #ffffff;
}
.theme-portfolio .card, 
.theme-portfolio .booking-container, 
.theme-portfolio .btn, 
.theme-portfolio .form-input, 
.theme-portfolio .portfolio-item, 
.theme-portfolio .profile-frame, 
.theme-portfolio .contact-form-wrapper, 
.theme-portfolio .price-list, 
.theme-portfolio .hours-container,
.theme-portfolio .portfolio-modal-inner {
    border-radius: 0 !important;
}
.theme-portfolio .card, 
.theme-portfolio .booking-container, 
.theme-portfolio .contact-form-wrapper, 
.theme-portfolio .price-list, 
.theme-portfolio .hours-container {
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
}
.theme-portfolio .section-title { letter-spacing: 8px; text-transform: uppercase; font-weight: 300; }
.theme-portfolio .divider { width: 80px; height: 1px; background: var(--text-dark); }
.theme-portfolio .divider-left { width: 60px; height: 1px; background: var(--text-dark); }
.theme-portfolio .btn { text-transform: uppercase; letter-spacing: 3px; font-weight: 400; border-width: 1px;}
.theme-portfolio .card-image, .theme-portfolio .portfolio-item img { filter: grayscale(100%); opacity: 0.8; transition: 0.6s ease; }
.theme-portfolio .card:hover .card-image, .theme-portfolio .portfolio-item:hover img { filter: grayscale(0%); opacity: 1; }
.theme-portfolio .card:hover { border-color: var(--text-dark); transform: translateY(-5px); box-shadow: none; }
.theme-portfolio .mobile-menu { background: transparent; box-shadow: none; }
.theme-portfolio .mobile-menu .bar { width: 35px; height: 2px; }


/* --- TEMA: SHOP (Konverterings-fokus, Tydelige CTA) --- */
.theme-shop { --footer-bg: #111827; --footer-text: #f3f4f6; }
.theme-shop .card { box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 2px solid transparent; transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border-radius: 12px;}
.theme-shop .card:hover { border-color: var(--primary-light); box-shadow: 0 25px 50px rgba(0,0,0,0.1); transform: translateY(-10px); }
.theme-shop .btn { border-radius: 8px; font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 1.05rem; }
.theme-shop .product-price { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }
.theme-shop .section-title { font-weight: 700; }
.theme-shop .qty-selector { background: var(--bg-gray); padding: 5px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); }

@keyframes shopPulseCart { 0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4); } 70% { box-shadow: 0 0 0 20px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.theme-shop .floating-cart-btn { animation: shopPulseCart 2s infinite; }


/* --- TEMA: RESTAURANT / CAFÉ (Varm, klassisk, bue-design) --- */
.theme-restaurant {
    --bg-light: #fdfbf7;
    --bg-gray: #f4efeb;
    --text-dark: #3e362e;
    --footer-bg: #2c221a; --footer-text: #e6dace;
}
.theme-restaurant h1, .theme-restaurant h2, .theme-restaurant h3 { font-family: var(--font-logo); font-weight: 600; color: #4a3c31; }
.theme-restaurant .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.theme-restaurant .card, 
.theme-restaurant .booking-container, 
.theme-restaurant .contact-form-wrapper, 
.theme-restaurant .price-list, 
.theme-restaurant .hours-container { 
    background: #ffffff; 
    border: 1px solid #f0e6d2; 
    border-radius: 8px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.02); 
}

/* Smuk bue-effekt på billeder i Restaurant temaet! */
.theme-restaurant .card-img-wrapper, .theme-restaurant .portfolio-item { 
    border-radius: 150px 150px 0 0; 
    border: 6px solid var(--bg-light); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    margin-bottom: 10px;
}

.theme-restaurant .divider, .theme-restaurant .divider-left { 
    background: transparent; 
    border-top: 1px solid #d4c3b3; 
    border-bottom: 1px solid #d4c3b3; 
    height: 6px; 
    width: 80px; 
    border-radius: 0; 
}
.theme-restaurant .btn { border-radius: 4px; text-transform: uppercase; letter-spacing: 2px; }
.theme-restaurant .nav-links li a { font-family: var(--font-logo); font-size: 1rem; }
.theme-restaurant .price-item { border-bottom: 1px dashed #d4c3b3; }
.theme-restaurant .mobile-menu { background: #fdfbf7; border: 1px solid #d4c3b3; }


/* --- TEMA: FITNESS / SPORT (FULD DARK MODE, Råt & Aggressivt) --- */
.theme-fitness {
    --text-dark: #f4f4f4;
    --text-light: #ffffff;
    --bg-light: #0d0d0d;
    --bg-gray: #1a1a1a;
    --footer-bg: #050505; --footer-text: #ffffff; --footer-border: 1px solid #222;
}

.theme-fitness nav { background: rgba(13, 13, 13, 0.95); border-bottom: 1px solid #222;}
.theme-fitness nav ul li a, .theme-fitness nav .logo { color: #ffffff; }
.theme-fitness .mobile-menu .bar { background-color: var(--primary-color); box-shadow: 0 0 5px var(--primary-color); }
.theme-fitness .mobile-menu { background: transparent; border: 2px solid var(--primary-color); border-radius: 0; transform: skewX(-10deg); }
.theme-fitness .nav-links { background: rgba(13,13,13,0.98); }

/* Sprogflag i mobil menu (så de ikke har grim sort bg) */
.theme-fitness .nav-links li a { background: transparent !important; border: none !important; }

/* Det Skrå Look på Knapper (Fart & Energi) */
.theme-fitness .btn { 
    text-transform: uppercase; 
    font-weight: 800; 
    letter-spacing: 2px; 
    border-radius: 0 !important; 
    transform: skewX(-15deg); 
}
.theme-fitness .btn:hover { 
    transform: skewX(-15deg) translateY(-3px); 
    box-shadow: 6px 6px 0 var(--primary-color); 
}

/* Sorte bokse med neon rammer (Fjernet global skew for at beskytte læselighed) */
.theme-fitness .card, 
.theme-fitness .booking-container, 
.theme-fitness .contact-form-wrapper, 
.theme-fitness .price-list, 
.theme-fitness .hours-container { 
    background: #1a1a1a; 
    border: none; 
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    border-radius: 0; 
}
.theme-fitness .card:hover { transform: translateY(-5px); border-color: var(--primary-light); box-shadow: -10px 15px 30px rgba(0,0,0,0.8);}

.theme-fitness h1, .theme-fitness h2, .theme-fitness h3, .theme-fitness .section-title { 
    font-weight: 800; 
    text-transform: uppercase; 
    font-style: italic; 
    letter-spacing: 2px; 
    color: #ffffff; 
    background: transparent;
}
.theme-fitness .btn-solid { background: var(--primary-color); color: #000000; border-color: var(--primary-color); }
.theme-fitness .btn-outline { color: #ffffff; border-color: #555; }
.theme-fitness .btn-outline:hover { background: #222; }

/* Input felter i dark mode */
.theme-fitness .form-input, .theme-fitness .product-qty-input { background: #222222; color: #ffffff; border-color: #444444; border-radius: 0; }
.theme-fitness .form-input:focus { border-color: var(--primary-color); box-shadow: 0 0 15px rgba(0,0,0,0.5); }

/* Kalender fix til mørkt tema */
.theme-fitness .day { background: #222222; color: #ffffff; border-radius: 0;}
.theme-fitness .day.active { background: var(--primary-color); color: #000000; border: none; }
.theme-fitness .day.disabled { background: #1a1a1a; color: #555555; }
.theme-fitness .slot { background: #222222; color: #ffffff; border-color: #444444; border-radius: 0;}
.theme-fitness .slot:hover:not(.locked) { background: var(--primary-color); color: #000000; box-shadow: none; }
.theme-fitness .calendar-header h3 { color: #ffffff; }

/* Modal & Cart i mørkt tema */
.theme-fitness .modal-content, .theme-fitness .portfolio-modal-inner { background: #1a1a1a; color: #ffffff; border-radius: 0; border: 1px solid #333333; }
.theme-fitness .modal-content h2, .theme-fitness .cart-item-title, .theme-fitness .cart-total { color: #ffffff; }
.theme-fitness .cart-item { border-bottom-color: #333333; }
.theme-fitness .terms-content { color: #cccccc; }
.theme-fitness .lang-selector { background: #222222; border-color: #444444; }
.theme-fitness #portfolioModal .close-modal { background: #333; color: #fff; border-color: #555; }

/* Kontrast på billeder */
.theme-fitness .card-image, .theme-fitness .portfolio-item img { filter: contrast(1.15) saturate(0.85); }
