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

:root {
    --primary-gold: #cba358;
    --bg-dark: #1e1e1e;
    --bg-darker: #121212;
    --text-light: #ffffff;
    --text-gray: #aaaaaa;
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
}

a { text-decoration: none; color: var(--text-light); transition: color 0.3s; }
a:hover { color: var(--primary-gold); }

/* Buttons */
.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-darker);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary:hover { background-color: #a88544; }

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-secondary:hover { background-color: rgba(203, 163, 88, 0.1); }

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--bg-darker);
    border-bottom: 1px solid #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo-img { height: 50px; }
.nav-links { list-style: none; display: flex; gap: 30px; font-weight: 600; font-size: 0.9rem; }

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('images/image_6.png') center/cover;
    margin-top: 80px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.8), rgba(18,18,18,0.95));
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 20px; }
.hero-content h1 { font-size: 3rem; color: var(--text-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;}
.hero-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; }

/* Services (Neues Menü-Layout) */
.services { padding: 80px 5%; text-align: center; background-color: var(--bg-dark); }
.services h2 { margin-bottom: 50px; font-size: 2rem; color: var(--text-light); }

.price-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.price-column {
    flex: 1;
    background-color: var(--bg-darker);
    padding: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.price-column h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.price-list {
    list-style: none;
    margin-bottom: 40px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
    border-bottom: 1px dotted #444;
    padding-bottom: 5px;
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--primary-gold);
    margin-left: 15px;
}

.special-offer {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(203, 163, 88, 0.05);
    border-left: 4px solid var(--primary-gold);
}

/* Galerie */
.gallery { padding: 80px 5%; text-align: center; }
.gallery h2 { margin-bottom: 40px; font-size: 2rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 5px; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.overlay-text {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.7);
    color: var(--text-light);
    padding: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer & Legal */
footer { background-color: #0a0a0a; padding: 60px 5% 20px; border-top: 1px solid #333; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 40px; gap: 40px; }
.legal-links ul { list-style: none; }
.legal-links ul li { margin-bottom: 10px; }
.copyright { text-align: center; color: var(--text-gray); font-size: 0.8rem; border-top: 1px solid #222; padding-top: 20px; }

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    border-top: 2px solid var(--primary-gold);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cookie-content p { font-size: 0.9rem; color: var(--text-gray); max-width: 800px; }
.cookie-content a { color: var(--primary-gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2rem; }
    .cookie-content { flex-direction: column; text-align: center; }
    .price-menu { flex-direction: column; }
}
