/* General body styles */
body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Global container for max-width */
.container-1024 {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem; /* Add some padding for smaller screens */
}

/* Header styles */
.site-header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
        align-items: center;
    max-width: 1024px; /* Changed from 1200px */
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header .logo {
    height: 35px; /* Adjust as needed */
}

/* Navigation styles */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover {
    color: #007bff;
}

/* Hide the checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger menu icon styles */
.hamburger-menu {
    display: none; /* Hidden by default, shown on small screens */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hero Section Styles */
.hero-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f9f9f9; /* Optional: A light background for the hero section */
    }

.hero-image {
    max-width: 80%; /* Adjust size, not too huge */
    height: auto;
    display: block; /* Remove extra space below image */
    margin: 0 auto 1.5rem auto; /* Center image and add space below */
    }

.hero-text {
    font-size: 2.5rem; /* Large and elegant */
    font-weight: 400;
    color: #555; /* A slightly softer color */
        margin: 0;
    padding: 0;
    }

.hero-subtitle {
    font-size: 1rem;
    color: #777;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (min-width: 1200px) { /* Adjust for larger screens */
    .hero-image {
        max-width: 40%; /* Max half size on large screens */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap; /* Allow items to wrap */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on small screens */
    }

    .main-nav {
        display: none; /* Hide navigation by default on small screens */
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .main-nav ul {
        flex-direction: column; /* Stack navigation items vertically */
    }

    .main-nav li {
        margin: 0;
        border-top: 1px solid #eee;
    }

    .main-nav a {
        padding: 1rem;
    }

    /* Show navigation when menu-toggle is checked */
    .menu-toggle:checked + .hamburger-menu + .main-nav {
    display: block;
}

    .hero-image {
        max-width: 95%; /* Make it a bit larger on smaller screens */
    }

    .hero-text {
        font-size: 1.4rem; /* Adjust font size for smaller screens */
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }
}

/* Intro Section Styles */
.intro {
    text-align: center;
    max-width: 800px; /* Limit the width */
    margin: 2rem auto; /* Center the block and add some vertical spacing */
    padding: 0 1rem; /* Add some padding on the sides */
}

.intro p {
    font-size: 1.2rem;
    color: #555;
}

/* Post Meta Styles */
.post-meta {
    font-size: 80%; /* Reduce font size by 20% */
    color: #777; /* Softer color for meta info */
    margin-bottom: 1rem; /* Space below meta info */
}

/* Footer Styles */
.site-footer {
    font-size: 80%;
    text-align: center;
    background-color: #f9f9f9; /* Same as hero section */
    padding-top: 2rem; /* Add some space above the footer */
}

/* Opening Hours Section Styles */
.opening-hours {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.opening-hours h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.opening-hours h3 {
    color: #555;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours .day {
    font-weight: bold;
    color: #333;
}

.opening-hours .hours {
    color: #666;
}

.opening-hours .comment {
    margin-top: 1.5rem;
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

.season-block.is-active {
    border-left: 4px solid #d4af37; /* Ein schönes Gold für den Glücksfall */
    padding-left: 15px;
    background-color: #fffaf0; /* Ganz dezenter Hintergrund */
}

.badge {
    font-size: 0.6em;
    text-transform: uppercase;
    background: #d4af37;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 10px;
}

/* Contact Section Styles */
.contact-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-section .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center;
    gap: 2rem;
}

.contact-section .text-content {
    flex: 1; /* Allow text to take available space */
    min-width: 300px; /* Minimum width for text before wrapping */
    text-align: left;
}

.contact-section .map-content {
    flex: 1; /* Allow map to take available space */
    min-width: 300px; /* Minimum width for map before wrapping */
}

.contact-section .map-content iframe {
    max-width: 100%; /* Ensure iframe is responsive */
    height: 450px; /* Maintain height */
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-section .content-wrapper {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center;
    }

    .contact-section .text-content,
    .contact-section .map-content {
        flex: none; /* Remove flex sizing */
        width: 100%; /* Full width for stacked items */
        min-width: unset; /* Remove min-width constraint */
}
}

.map-container {
    width: 100%;
    min-height: 450px;
    background: #f4f4f4; /* Dezentes Grau */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    margin: 20px 0;
}

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

.btn-load-map {
    background-color: #d4af37; /* Dein Glücksfall-Gold */
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-load-map:hover {
    background-color: #b8962d;
}

/* Announcement Section Styles */
.announcement {
    background-color: #f0f0f0; /* Beispiel Hintergrundfarbe */
    padding: 10px 0;
    overflow: hidden; /* Wichtig für die Laufschrift */
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.marquee {
    display: inline-block;
    padding-left: 100%; /* Start außerhalb des sichtbaren Bereichs */
    animation: marquee 15s linear infinite; /* Animation definieren */
}

.marquee span {
    display: block;
    font-weight: bold;
    color: #333;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); } /* Nach links verschieben */
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px auto; /* Zentrieren und Abstand */
    max-width: 1024px; /* Begrenzung auf 1024px */
}

.divider-line {
    flex-grow: 1;
    height: 1px; /* Zartere Linie */
    background-color: #6F9E58; /* Glücksfall-Grün */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
}

.divider-logo {
    margin: 0 20px; /* Abstand zwischen Streifen und Logo */
    height: 20px; /* Logo kleiner */
}

@media (max-width: 1023px) {
    .divider {
        padding: 0 20px; /* Etwas Abstand an den Seiten */
    }
}

