:root {
    --primary: #d4af37; /* Gold */
    --bg-dark: #121212;
    --bg-light: #1e1e1e;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, .subtitle, .logo {
    font-family: 'Playfair Display', serif;
}

/* Demo Bar */
.demo-bar {
    background: #000;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 10000;
}
.demo-bar a { color: var(--primary); text-decoration: none; margin-left: 10px; font-weight: bold; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 36px; /* Höhe der Demo Bar */
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo { font-size: 1.8rem; font-weight: bold; color: var(--primary); letter-spacing: 1px; }

.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: #fff; text-decoration: none; font-size: 1rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-res {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 0; /* Eckig für edlen Look */
    color: var(--primary) !important;
}
.btn-res:hover { background: var(--primary); color: #000 !important; }

.burger { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
header {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 { font-size: 4rem; margin: 20px 0; line-height: 1.1; }
.subtitle { color: var(--primary); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: #b5952f; }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-dark { border: 1px solid var(--primary); color: var(--primary); }
.btn-dark:hover { background: var(--primary); color: #000; }

/* Sections */
.section { padding: 80px 5%; }
.bg-dark { background: var(--bg-light); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary); }

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.menu-item { background: #252525; transition: 0.3s; }
.menu-item:hover { transform: translateY(-5px); }
.menu-item img { width: 100%; height: 250px; object-fit: cover; }
.menu-info { padding: 25px; text-align: center; }
.menu-info h3 { font-size: 1.4rem; margin-bottom: 10px; color: #fff; }
.menu-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; font-style: italic; }
.price { color: var(--primary); font-weight: bold; font-size: 1.2rem; font-family: 'Playfair Display', serif; }

/* Split Section */
.split { display: flex; align-items: center; gap: 50px; }
.split > div { flex: 1; }
.split h2 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.image-part img { width: 100%; border-radius: 2px; box-shadow: 20px 20px 0 var(--primary); }

/* Footer */
footer { background: #000; padding: 60px 5% 20px; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p { color: #888; margin-bottom: 10px; }
.copyright { text-align: center; color: #555; font-size: 0.9rem; border-top: 1px solid #222; padding-top: 20px; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: block; color: #fff; }
    .hero-content h1 { font-size: 2.5rem; }
    .split { flex-direction: column; }
    .image-part img { box-shadow: 10px 10px 0 var(--primary); }
}
