/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Notice Bar */
.notice-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    background: #DDDDDD;
    color: #333;
    border: 2px solid #DDDDDD;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.notice-content h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: bold;
}

.notice-content p {
    margin: 0;
    line-height: 1.6;
}

.notice-content strong {
    font-weight: bold;
}

.close-notice {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #EEB422;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.close-notice:hover {
    background: #d4a01f;
}

/* Closure Notice Banner */
.closure-notice-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 90%;
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px 50px 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: none;
    text-align: center;
}

.closure-notice-banner h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #856404;
}

.closure-notice-banner p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.closure-notice-banner strong {
    font-weight: 700;
}

.close-closure-notice {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #856404;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-closure-notice:hover {
    background: #e0a800;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .closure-notice-banner {
        bottom: 10px;
        width: 95%;
        padding: 15px 40px 15px 15px;
    }

    .closure-notice-banner h3 {
        font-size: 1.1rem;
    }

    .closure-notice-banner p {
        font-size: 0.9rem;
    }

    .close-closure-notice {
        width: 25px;
        height: 25px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
    text-align: left;
}

.site-title {
    margin: 0;
}

.logo {
    height: 45px;
    width: auto;
}

.site-title a {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    gap: 0.5rem;
}

.site-title a:hover {
    color: #EEB422;
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #EEB422;
    color: white;
}

/* Hero Section */
.hero {
    height: 75vh;
    min-height: 400px;
    background: url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 100px;
}

.hero.no-top-padding {
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: white;
    opacity: 0.95;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #EEB422;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 180, 34, 0.3);
}

.cta-button:hover {
    background: #d4a01f;
    box-shadow: 0 4px 15px rgba(238, 180, 34, 0.3);
}

/* Job Notice */
.job-notice {
    background: #f8f9fa;
    border: 2px solid #EEB422;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.job-notice p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.job-notice strong {
    color: #EEB422;
}

.job-notice a {
    color: #EEB422;
    text-decoration: none;
    font-weight: 600;
}

.job-notice a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text h3 {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 400;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Menu Preview */
.menu-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-image {
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: box-shadow 0.3s ease;
}


.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.menu-content a {
    color: #EEB422;
    text-decoration: none;
    font-weight: 600;
}

.menu-content a:hover {
    text-decoration: underline;
}

/* Räumlichkeiten Section */
.raeumlichkeiten {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.room-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.room-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.room-cta {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.room-cta p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.room-cta a {
    color: #EEB422;
    text-decoration: none;
    font-weight: 600;
}

.room-cta a:hover {
    text-decoration: underline;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    max-width: 95%;
    max-height: 95%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover {
    color: #EEB422;
}

#lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-counter {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 1001;
    line-height: 1;
    padding: 0 0 3px 0;
}

.lightbox-nav:hover {
    background: rgba(238, 180, 34, 0.8);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Mobile navigation buttons */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.room-image {
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease;
}

.room-image:hover {
    opacity: 0.85;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.reviews-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rating {
    margin-bottom: 1rem;
}

.stars {
    color: #EEB422;
    font-size: 1.2rem;
}

.review p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review cite {
    font-weight: 600;
    color: #333;
}

/* Delivery Section */
.delivery {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.delivery h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.delivery p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: white;
}

.location h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.location > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-description h3 {
    color: #333;
    margin-bottom: 1rem;
}

.location-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.address h3 {
    color: #333;
    margin-bottom: 1rem;
}

.address p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map iframe {
    border-radius: 12px;
}

/* Map Opt-in Styles */
.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.map-placeholder-content h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.map-placeholder-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.load-map-btn {
    background: #EEB422;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.load-map-btn:hover {
    background: #d4a01f;
    box-shadow: 0 4px 12px rgba(238, 180, 34, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.privacy-note a {
    color: #EEB422;
    text-decoration: none;
}

.privacy-note a:hover {
    color: #d4a01f;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #EEB422;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #EEB422;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a01f;
}

.footer-legal-links {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal-links a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #EEB422;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-bottom .credits {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-bottom .credits a {
    color: #EEB422;
    text-decoration: none;
}

.footer-bottom .credits a:hover {
    color: #d4a01f;
}

/* Menu Page Styles */
.menu-page {
    background: #f5f5f5;
}

/* Monteurzimmer page */
.monteur-page {
    padding-bottom: 3rem;
}

.monteur-header {
    text-align: center;
    margin-bottom: 4rem;
}

.monteur-header h1 {
    color: #333;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.monteur-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.monteur-info {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EEB422;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.booking-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-container h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.booking-container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EEB422;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-notice {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.form-notice p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.submit-btn {
    background: #EEB422;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #d4a01e;
}

.contact-info {
    text-align: center;
    margin-top: 4rem;
}

.contact-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item strong {
    color: #333;
}

.contact-item a {
    color: #EEB422;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.menu-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.menu-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.menu-viewer {
    margin-bottom: 4rem;
}

.pdf-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pdf-embed iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pdf-mobile {
    display: none;
}

.mobile-pdf-notice {
    text-align: center;
    padding: 3rem 2rem;
}


.mobile-pdf-notice h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mobile-pdf-notice p {
    color: #666;
    margin-bottom: 2rem;
}

.download-btn,
.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #EEB422;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.download-btn:hover,
.pdf-btn:hover {
    background: #d4a01f;
    box-shadow: 0 4px 12px rgba(238, 180, 34, 0.3);
}

/* Menu Gallery Styles */
.menu-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    background: white;
}

.menu-image-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.menu-image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.menu-image-item:hover img {
    opacity: 0.9;
}

.image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.page-number {
    font-size: 0.85rem;
}

.pdf-download-section {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.pdf-download-section h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pdf-download-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Mobile responsive for menu gallery */
@media (max-width: 768px) {
    .menu-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-image-item {
        margin: 0 1rem;
    }

    .pdf-download-section {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

.pdf-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.pdf-btn.download {
    background: #666;
}

.pdf-btn.download:hover {
    background: #555;
}

/* Menu Highlights */
.menu-highlights {
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.menu-highlights h2 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-image {
    flex: 0 0 150px;
}

.highlight-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.highlight-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* Reservation CTA */
.reservation-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #EEB422;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reservation-cta .cta-button {
    background: white;
    color: #EEB422;
}

.reservation-cta .cta-button:hover {
    background: #f0f0f0;
    color: #d4a01f;
}

/* Responsive Design for Menu Page */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .pdf-mobile {
        display: block;
    }

    .menu-header h1 {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-image {
        flex: none;
    }

    .pdf-container {
        padding: 1rem;
    }

    .mobile-pdf-notice {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 1rem 0;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Active navigation state */
.nav-menu a.active {
    background: #EEB422;
    color: white;
    border-radius: 4px;
}

/* Responsive display utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Add extra spacing for sections */
section {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .location-content {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .legal-page {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .header-content {
        padding: 0.5rem 0;
    }

    .logo {
        height: 35px;
    }

    .site-title a {
        font-size: 1rem;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100vh);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 999;
        border-radius: 0;
        overflow: hidden;
        max-height: calc(100vh - 80px);
        display: none;
    }

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

    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

    .nav-menu a {
        padding: 1.2rem 1.5rem;
        display: block;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        color: #333;
        position: relative;
        font-weight: 500;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: #f8f9fa;
        color: #EEB422;
        padding-left: 2rem;
    }

    .nav-menu a.active {
        background: #EEB422;
        color: white;
    }

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

    .site-title {
        display: none;
    }

    /* Hero */
    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Sections padding */
    .about,
    .menu-preview,
    .reviews,
    .delivery,
    .location {
        padding: 2rem 0;
    }

    .job-notice {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    /* Grid layouts */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item h3 {
        font-size: 1.3rem;
        padding: 1rem;
    }

    .reviews h2,
    .delivery h2,
    .location h2 {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review {
        padding: 1.5rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Monteurzimmer mobile */
    .monteur-header h1 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form {
        padding: 2rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Legal pages */
    .legal-page {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .hero {
        height: 45vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Typography */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }

    .job-notice {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .rooms-grid {
        gap: 1.5rem;
    }

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

    .room-content {
        padding: 1.5rem;
    }

    .room-cta {
        padding: 1.5rem;
    }

    .reviews h2,
    .delivery h2,
    .location h2 {
        font-size: 1.8rem;
    }

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

    .review {
        padding: 1rem;
    }

    .legal-page {
        padding: 1rem;
        margin: 0.5rem;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-page h2 {
        font-size: 1.2rem;
    }

    .legal-page h3 {
        font-size: 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.legal-page h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #EEB422;
    padding-bottom: 1rem;
}

.legal-page h2 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #EEB422;
    padding-left: 1rem;
}

.legal-page h3 {
    color: #333;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-page a {
    color: #EEB422;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #d4a01f;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Privacy Checkbox Styling */
.privacy-consent {
    margin: 25px 0 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label:hover .checkmark {
    border-color: #EEB422;
    box-shadow: 0 0 0 3px rgba(238, 180, 34, 0.1);
}

.checkbox-label input:checked + .checkmark {
    background-color: #EEB422;
    border-color: #EEB422;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked + .checkmark:after {
    display: block;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    flex: 1;
}

.checkbox-text a {
    color: #EEB422;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-text a:hover {
    color: #d9a01f;
    text-decoration: none;
}

/* Form validation error styling */
.checkbox-label input:invalid + .checkmark,
.checkbox-label input.error + .checkmark {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.checkbox-label input:invalid + .checkmark:after,
.checkbox-label input.error + .checkmark:after {
    border-color: #dc3545;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .privacy-consent {
        margin: 20px 0 15px 0;
        padding: 15px;
    }

    .checkbox-label {
        gap: 12px;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .checkbox-text {
        font-size: 13px;
    }
}

/* SmartMaps Custom Styling */
.map-smartmaps {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SmartMaps Marker Styling */
.smartmaps-marker {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.smartmaps-marker:hover {
    transform: scale(1.1);
}

/* MapLibre Controls Styling */
.maplibregl-ctrl-top-left {
    z-index: 500 !important;
}

.maplibregl-ctrl-group {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.maplibregl-ctrl-group button {
    background: white;
    transition: all 0.3s ease;
}

.maplibregl-ctrl-group button:hover {
    background: #EEB422;
}

.maplibregl-ctrl-group button:hover .maplibregl-ctrl-icon {
    filter: brightness(0) invert(1);
}

.maplibregl-ctrl-attrib {
    background: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    border-radius: 4px;
}

.maplibregl-ctrl-attrib a {
    color: #666;
}

/* Legal Pages Styling */
.legal-page {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 40px 20px;
    line-height: 1.7;
    color: #333;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.legal-page h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #EEB422;
    margin: 20px auto 0;
    border-radius: 2px;
}

.legal-page h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EEB422;
    position: relative;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: #444;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: #555;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 15px;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-page strong {
    color: #333;
    font-weight: 600;
}

.legal-page a {
    color: #EEB422;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #d9a01f;
    text-decoration: none;
}

.legal-page ul, .legal-page ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #EEB422;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-info-box h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2rem;
}

.contact-info-box p {
    margin-bottom: 0.75rem;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: #fff9e6;
    border: 1px solid #EEB422;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    position: relative;
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box.important {
    background: #fff9e6;
    border-color: #EEB422;
}

/* Table Styling for Legal Pages */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table th {
    background: #EEB422;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 20px 15px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.3rem;
    }

    .legal-page h3 {
        font-size: 1.1rem;
    }

    .legal-page p {
        text-align: left;
        font-size: 14px;
    }

    .contact-info-box {
        padding: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }


    .legal-table {
        font-size: 14px;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
    }
}