:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3c;
    --accent-color: #c8a951;
    --light-bg: #f8f8f8;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #666666;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--light-bg);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
}

h1, h2, h3 {
    color: var(--dark-text);
    margin: 8px 0;
    font-weight: 600;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}

/* Header & Navigation */
header {
    padding: 15px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.logo p {
    font-size: 0.8em;
    color: var(--gray-text);
    margin: 2px 0 0 0;
    font-style: italic;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    width: 90%;
    max-width: 1000px;
    margin-top: 10px;
}

.desktop-nav button {
    flex: 1;
    height: 45px;
    background-color: transparent;
    color: var(--dark-text);
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0 15px;
    border-bottom: 2px solid transparent;
}

.desktop-nav button:hover, .desktop-nav button.active {
    border-bottom: 2px solid var(--accent-color);
    color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-direction: column;
}

.mobile-nav button {
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1em;
    color: var(--dark-text);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.mobile-nav button:hover, .mobile-nav button.active {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Hero */
.oben {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.oben img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.oben .text {
    width: 45%;
}

.oben .text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.oben .text p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--gray-text);
}

/* Offnugszeiten */
.oeffnungszeiten-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.oeffnungszeiten-section h2 {
    color: var(--light-text);
    font-size: 2em;
    margin-bottom: 30px;
}

.oeffnungszeiten-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.oeffnungszeiten-container div {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    font-size: 1.05em;
}

/* Speisen-Sektion */
.speisen {
    padding: 70px 20px;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gericht {
    position: relative;
    display: flex;
    width: 80%;
    max-width: 900px;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.gericht img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.text-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
}

.text-container h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.text-container p {
    font-size: 0.95em;
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--gray-text);
}

.text-container button {
    width: 85%;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.text-container button:hover {
    background-color: var(--secondary-color);
}

/* Fotogalerie */
.fotogalerie {
    padding: 70px 20px;
    background-color: var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.fotogalerie h2 {
    width: 100%;
    text-align: center;
    color: var(--dark-text);
    font-size: 2em;
    margin-bottom: 40px;
}

.fotogalerie div {
    text-align: center;
    width: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.fotogalerie div:hover {
    transform: translateY(-5px);
}

.fotogalerie img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.fotogalerie p {
    font-size: 0.95em;
    margin: 0;
    padding: 18px;
    color: var(--dark-text);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 40px 20px 20px;
    text-align: center;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    width: 16px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.copyright {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    font-size: 0.85em;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .oben {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .oben img, .oben .text {
        width: 100%;
    }
    
    .lieferservice-content {
        flex-direction: column;
        align-items: center;
    }
    
    .liefer-optionen, .oeffnungszeiten {
        width: 100%;
        max-width: 500px;
    }
    
    .gericht {
        flex-direction: column;
        width: 90%;
    }
    
    .text-container {
        position: relative;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5em;
    }
    
    .oben .text h2 {
        font-size: 1.7em;
    }
    
    .lieferservice h2, .fotogalerie h2 {
        font-size: 1.7em;
    }
    
    .fotogalerie div {
        width: 100%;
        max-width: 350px;
    }
    
    .liefer-optionen, .oeffnungszeiten {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.3em;
    }
    
    .oben {
        padding: 30px 15px;
    }
    
    .oben .text h2 {
        font-size: 1.5em;
    }
    
    .lieferservice, .speisen, .fotogalerie {
        padding: 40px 15px;
    }
    
    .lieferservice h2, .fotogalerie h2 {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 20px;
    }
}