* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --rot: #8a0000;
    --gold: #d4af37;
    --dunkel: #1a1a1a;
    --hell: #ffffff;
}

/* HEADER & NAVIGATION */
header {
    background: var(--rot);
    padding: 15px 0;
    position: relative;
    z-index: 10000;
}

.nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--gold);
    font-size: 26px;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: var(--hell);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.nav ul li a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: var(--rot);
        padding: 20px;
        position: absolute;
        right: 0;
        top: 70px;
        width: 200px;
        z-index: 15000;
    }

    .nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 16000;
    }
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.3));
    z-index: 2;
    pointer-events: none;
}

/* PAGE SLIDER */
.page-slider {
    position: relative;
    width: 100%;
    height: 35vh;
    overflow: hidden;
}

.page-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.page-slide.active {
    opacity: 1;
}

.page-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.3));
    z-index: 2;
    pointer-events: none;
}

/* CONTENT */
.content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.content h2 {
    color: var(--rot);
    margin-bottom: 15px;
}

.content h3 {
    margin-top: 25px;
    color: var(--gold);
}

.content ul {
    margin: 15px 0 20px 20px;
}

.content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

.content input,
.content textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.content button {
    background: var(--rot);
    color: var(--hell);
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

.content button:hover {
    background: var(--gold);
    color: var(--dunkel);
}

/* FOOTER */
footer {
    background: var(--dunkel);
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

/* COOKIE-BANNER */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--dunkel);
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    z-index: 999999999;
    max-width: 320px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: cookieFadeIn .4s ease-out;
}

#cookie-banner * {
    pointer-events: auto;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cookie-box {
    text-align: left;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: 0.2s;
}

.cookie-buttons .accept {
    background: var(--gold);
    color: #000;
}

.cookie-buttons .accept:hover {
    background: #f5d76e;
}

.cookie-buttons .decline {
    background: #444;
    color: #fff;
}

.cookie-buttons .decline:hover {
    background: #666;
}

.cookie-hidden {
    display: none !important;
}
