/* Allgemeine Stile */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F8F5EE; /* Sekundärfarbe: Helles Creme */
    color: #333;
}

/* Header und Navigation */
header {
    background-color: #2E4A3B; /* Primärfarbe: Dunkles Waldgrün */
    color: #F8F5EE;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #F8F5EE;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #F8F5EE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #D2691E; /* Akzentfarbe: Terrakotta-Orange */
}

/* Hero Section */
#hero {
    background-image: url('../images/hero-bg.jpg'); /* Platzhalterbild */
    background-size: cover;
    background-position: center;
    color: #F8F5EE;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5); /* Leichter Overlay für Lesbarkeit */
    padding: 40px;
    border-radius: 10px;
}

#hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

#hero .subline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #E0E0D8; /* Warmes Hellgrau */
}

#hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
    background-color: #D2691E; /* Akzentfarbe */
    color: #F8F5EE;
}

.button.primary:hover {
    background-color: #E8B000; /* Akzentfarbe dunkler */
}

.button.secondary {
    background-color: transparent;
    color: #F8F5EE;
    border: 2px solid #F8F5EE;
}

.button.secondary:hover {
    background-color: #F8F5EE;
    color: #2E4A3B;
}

/* Teaser Sektionen */
.teaser-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Menu Navigation Section */
.menu-nav-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.menu-nav-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2E4A3B;
    margin-bottom: 1.5rem;
}

.menu-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.menu-nav-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #2E4A3B;
    color: #F8F5EE;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-nav-link:hover {
    background-color: #D2691E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.menu-nav-link:active {
    transform: translateY(0);
}

.teaser-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #2E4A3B;
    margin-bottom: 1.5rem;
}

.teaser-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.teaser-section .button {
    background-color: #5A3E2B; /* Warmes Schokoladenbraun */
    color: #F8F5EE;
}

.teaser-section .button:hover {
    background-color: #D2691E; /* Akzentfarbe */
}

/* Footer */
footer {
    background-color: #2E4A3B;
    color: #F8F5EE;
    text-align: center;
    padding: 2rem 0;
    margin-top: 80px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer ul li a {
    color: #F8F5EE;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #D2691E;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #F8F5EE;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #D2691E;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    nav {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2E4A3B;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(248, 245, 238, 0.1);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li a:hover {
        background-color: rgba(210, 105, 30, 0.1);
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero .subline {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .teaser-section {
        margin: 40px 20px;
        padding: 30px;
    }

    .teaser-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 32px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero .subline {
        font-size: 1.2rem;
    }

    .button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .teaser-section h2 {
        font-size: 1.8rem;
    }

    footer ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}



/* Speisekarte Stile */
#menu-categories {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-category {
    background-color: #FFFFFF;
    margin: 40px 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.menu-category h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2E4A3B;
    margin-bottom: 1rem;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 0.5rem;
}

.menu-category > p {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.menu-item {
    border-bottom: 1px solid #E0E0D8;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #2E4A3B;
    margin: 0 0 0.5rem 0;
    flex: 1;
}

.menu-item p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.menu-item .price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #D2691E;
    margin-left: 20px;
    white-space: nowrap;
}



.menu-download {
    text-align: center;
    margin: 60px 0;
}

/* Über uns Seite Stile */
#values ul {
    list-style: none;
    padding: 0;
}

#values ul li {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #F8F5EE;
    border-left: 4px solid #D2691E;
    border-radius: 5px;
}

#values ul li strong {
    color: #2E4A3B;
    font-size: 1.1rem;
}

/* Kontakt Seite Stile */
#contact-details p {
    margin: 1rem 0;
    line-height: 1.8;
}

#opening-hours p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Google Maps iframe responsive */
.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Impressum und Datenschutz Stile */
#impressum-content h2,
#privacy-policy-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E4A3B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#impressum-content h3,
#privacy-policy-content h3 {
    color: #5A3E2B;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#impressum-content ul,
#privacy-policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

#impressum-content ul li,
#privacy-policy-content ul li {
    margin: 0.5rem 0;
}

/* Mobile Anpassungen für Speisekarte */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item .price {
        margin-left: 0;
        margin-top: 1rem;
        font-size: 1.4rem;
    }

    .menu-category {
        padding: 30px 20px;
    }

    .menu-category h2 {
        font-size: 1.8rem;
    }


}

@media (max-width: 480px) {
    #menu-categories {
        padding: 0 10px;
    }

    .menu-category {
        padding: 20px 15px;
    }

    .menu-category h2 {
        font-size: 1.6rem;
    }

    .menu-item h3 {
        font-size: 1.2rem;
    }


    
    .map-container iframe {
        height: 300px;
    }
}

/* Aktuelles Seite Stile */
.facebook-feed-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #F8F5EE;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.facebook-feed-container .fb-page {
    max-width: 100%;
    margin: 0 auto;
}

.facebook-feed-container .fb-page iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-item {
    background-color: #F8F5EE;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h3 {
    color: #2E4A3B;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Facebook Alternative Card */
.facebook-card {
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 340px;
    margin: 0 auto;
}

.facebook-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e4e6ea;
}

.fb-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
}

.fb-info h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
}

.fb-info p {
    margin: 0;
    font-size: 13px;
    color: #65676b;
}

.facebook-content {
    padding: 16px;
}

.facebook-content p {
    margin: 8px 0;
    color: #1c1e21;
    font-size: 14px;
    line-height: 1.4;
}

.fb-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.fb-actions .button {
    font-size: 14px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.fb-actions .button.primary {
    background-color: #1877f2;
    color: white;
    border: none;
}

.fb-actions .button.primary:hover {
    background-color: #166fe5;
}

.fb-actions .button.secondary {
    background-color: #e4e6ea;
    color: #1c1e21;
    border: 1px solid #dddfe2;
}

.fb-actions .button.secondary:hover {
    background-color: #d8dadf;
}

/* Responsive Design für Aktuelles Seite */
@media (max-width: 768px) {
    .menu-anchor-nav {
        gap: 10px;
    }

    .menu-nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .facebook-feed-container {
        padding: 15px;
    }
    
    .facebook-feed-container .fb-page {
        width: 100%;
    }
    
    .facebook-feed-container .fb-page iframe {
        width: 100% !important;
        height: 400px !important;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .facebook-card {
        max-width: 100%;
        margin: 0;
    }
    
    .fb-actions {
        flex-direction: column;
    }
}

/* Zusätzliche mobile Styles für Menu Navigation */
@media (max-width: 480px) {
    .menu-nav-section {
        margin: 20px auto;
        padding: 20px;
    }

    .menu-nav-section h2 {
        font-size: 1.5rem;
    }

    .menu-anchor-nav {
        gap: 8px;
    }

    .menu-nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

