/* ALLGEMEINES DESIGN & VARIABLEN */
:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --primary-gold: #c5a059;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* NAVIGATION */
header {
    background: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-gold);
}

.btn-nav {
    border: 1px solid var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

/* HERO SECTION (Startseite) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: var(--text-muted);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e0b86c;
    transform: translateY(-2px);
}

/* SEKTIONEN & LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-gold);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

/* SPEISEKARTE GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-gold);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.menu-price {
    color: var(--primary-gold);
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FORMULAR (Reservierung & Kontakt) */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-card);
    border: 1px solid #333;
    color: var(--text-light);
    border-radius: 4px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: 1px solid var(--primary-gold);
}

/* FOOTER */
footer {
    background: #0a0a0a;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav ul { display: none; } /* Kann später durch ein JS-Mobile-Menü ersetzt werden */
    .hero-content h1 { font-size: 2.5rem; }
}