/* Globale Stile & Resets */
:root {
    --primary-color: #0056b3; /* Dunkelblau, maritim */
    --secondary-color: #f8f8f8; /* Helles Grau */
    --accent-color: #ff9900; /* Akzentfarbe, z.B. für Buttons */
    --text-color: #333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* Header */
header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 1.8em;
    font-weight: 700;
}

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

nav ul li {
    margin-left: 25px;
}

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

nav ul li a:hover {
    color: var(--accent-color);
}

/* Mobile Navigation Toggle (Hamburger-Menü) */
.menu-toggle {
    display: none; /* Standardmäßig versteckt auf Desktop */
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
}

/* Hero Sektion */
.hero {
    position: relative;
    height: 450px; /* Oder dynamisch mit min-height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    /* Optional: Overlay für bessere Lesbarkeit */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/fisch-haedecke-laden.jpg');
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e08800;
}

/* Allgemeine Sektionen */
section {
    padding: 60px 0;
}

section:nth-of-type(even) {
    background-color: var(--secondary-color);
}

h2 {
    font-family: var(--heading-font);
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Feature-Boxen / Grid für Inhalte */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-item h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Für kleine Bildschirme */
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

/* Testimonials auf der Über uns Seite */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-style: italic;
    border-left: 5px solid var(--accent-color);
}

.testimonial-item p {
    margin-bottom: 10px;
}

.testimonial-item span {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9em;
}

/* Angebotsseite spezifische Stile */
.offer-category {
    margin-bottom: 60px;
}

.offer-category h3 {
    font-family: var(--heading-font);
    font-size: 2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden; /* Für abgerundete Ecken des Bildes */
    text-align: center;
    padding-bottom: 20px;
}

.offer-item img {
    width: 100%;
    height: 200px; /* Feste Höhe für einheitliche Bildgrößen */
    object-fit: cover; /* Bilder an den Rahmen anpassen */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 15px;
}

.offer-item h4 {
    font-family: var(--heading-font);
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.offer-item p {
    font-size: 0.95em;
    padding: 0 15px;
    color: var(--text-color);
}

/* Kontaktseite spezifische Stile */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info links, Karte rechts */
    gap: 50px;
    align-items: flex-start; /* Oben ausrichten */
}

.contact-info h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.opening-hours {
    list-style: none;
    margin-top: 10px;
    padding-left: 0;
}

.opening-hours li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.opening-hours li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.map-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.map-container h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8em;
    text-align: center;
}

#map {
    background-color: #e0e0e0; /* Fallback für Karte */
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Eine Spalte auf kleineren Bildschirmen */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        justify-content: center; /* Logo mittig */
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        display: none; /* Menü standardmäßig versteckt auf Mobile */
        width: 100%;
        text-align: center;
        background-color: var(--primary-color); /* Damit Menü über den Inhalt ragt */
        position: absolute; /* Überlagert Inhalte */
        left: 0;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    nav ul.nav-menu.active {
        display: flex; /* Menü anzeigen, wenn aktiv */
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    .menu-toggle {
        display: block; /* Hamburger anzeigen */
        order: -1; /* Vor dem Logo platzieren */
        align-self: flex-start;
        margin-right: auto;
    }
    
    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    footer .container {
        flex-direction: column;
    }

    .footer-nav {
        margin-top: 15px;
    }
}