/* RESET & VARIABLES */
:root {
    --primary-color: #d4af37;
    /* Gold / Brass */
    --primary-color-hover: #b89626;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --light-bg: #f9f9f9;
    --text-light: #f4f4f4;
    --text-dark: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* COMMON SECTION STYLES */
.section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.decor-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 40px auto;
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* HERO SECTION (HOME) */
.hero-section {
    padding: 0;
    height: 100vh;
    min-height: auto;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    font-style: italic;
    color: #eee;
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* ÖFFNUNGSZEITEN */
.hours-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

/* SPEISEKARTE (Preview) */
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.menu-category {
    margin-bottom: 50px;
    text-align: left;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.menu-item {
    margin-bottom: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.price {
    font-weight: 700;
    color: var(--primary-color);
}

.menu-item p {
    color: #555;
    font-style: italic;
}

.pdf-download {
    margin-top: 50px;
}

/* GALLERY SWIPERS (Gaststätte & Terrasse) */
.gallerySwiper {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.gallerySwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* KONTAKT / FOOTER */
.footer-section {
    min-height: auto;
    padding-bottom: 30px;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide default on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        background-color: rgba(17, 17, 17, 0.98);
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hours-list {
        font-size: 1rem;
    }

    .gallerySwiper {
        height: 300px;
    }
}

/* SONNTAG - Zeiten Umbruch */
.sunday-entry {
    align-items: flex-start !important;
}

.sunday-times {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

/* ABHOLSERVICE BOX */
.abholservice-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.abholservice-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.abholservice-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.abholservice-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.abholservice-phone {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
    transition: color 0.3s;
    white-space: nowrap;
}

.abholservice-phone:hover {
    color: #fff;
}

/* SPEISEKARTE SECTION - Modernes Layout */
.speisekarte-container {
    max-width: 900px;
}

.wochenkarte-section,
.speisekarte-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.wochenkarte-header,
.speisekarte-header {
    padding: 35px 40px 25px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.wochenkarte-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #b89626);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.speisekarte-badge {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: var(--primary-color);
}

.wochenkarte-header h3,
.speisekarte-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wochenkarte-subtext {
    color: #777;
    font-size: 1rem;
    margin-bottom: 20px;
}

.wochenkarte-image-wrap {
    padding: 30px;
    display: flex;
    justify-content: center;
    background: #fafafa;
}

.wochenkarte-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.wochenkarte-img:hover {
    transform: scale(1.01);
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #b89626);
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e0c050, var(--primary-color));
}

/* PDF Embed */
.pdf-embed-wrap {
    padding: 0;
    background: #f5f5f5;
}

.pdf-embed {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

@media screen and (max-width: 768px) {
    .abholservice-box {
        flex-direction: column;
        padding: 20px;
    }

    .wochenkarte-header,
    .speisekarte-header {
        padding: 25px 20px 20px;
    }

    .wochenkarte-image-wrap {
        padding: 20px;
    }

    .pdf-embed {
        height: 500px;
    }

    .sunday-times {
        align-items: flex-end;
    }
}