/* ═══════════════════════════════════════════════════════
   Peter Steffen GmbH – petersteffen.css
   Bilder liegen in: wwwroot/images/
   Fonts liegen in:  wwwroot/fonts/
   ═══════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Dancing Script';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf') format('truetype-variations');
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/Raleway/Raleway-VariableFont_wght.ttf') format('truetype-variations');
}

@font-face {
    font-family: 'Raleway';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf') format('truetype-variations');
}

@font-face {
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 200 900;
    font-display: swap;
    src: url('/fonts/Source_Serif_4/SourceSerif4-VariableFont_opsz%2Cwght.ttf') format('truetype-variations');
}

@font-face {
    font-family: 'Source Serif 4';
    font-style: italic;
    font-weight: 200 900;
    font-display: swap;
    src: url('/fonts/Source_Serif_4/SourceSerif4-Italic-VariableFont_opsz%2Cwght.ttf') format('truetype-variations');
}

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

:root {
    --red:          #c0201a;
    --red-dark:     #9a1510;
    --blue-nav:     #2672b4;
    --blue-footer:  #1a4d8a;
    --bg:           #efefef;
    --text:         #2a2a2a;
    --white:        #ffffff;
    --script:       'Dancing Script', cursive;
    --serif:        'Source Serif 4', serif;
    --sans:         'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); font-weight: 400; }

/* ─── HERO SLIDER ─────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.hero-slider .slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.hero-slider .slide.active { opacity: 1; }

/* Bildpfade – Bilder in wwwroot/images/ ablegen */
.slide-1 { background-image: url('../images/slider-header-peter-steffen-1.jpg'); }
.slide-2 { background-image: url('../images/slider-header-peter-steffen-2.jpg'); }
.slide-3 { background-image: url('../images/slider-header-peter-steffen-3.jpg'); }
.slide-4 { background-image: url('../images/slider-header-peter-steffen-4.jpg'); }

.hero-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}
.hero-logo-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.55));
}

.hero-dots {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: background 0.3s; border: none;
}
.hero-dot.active { background: var(--white); }

/* ─── NAVIGATION ──────────────────────────────────────── */
nav {
    background: var(--blue-nav);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
nav ul { list-style: none; display: flex; justify-content: center; }
nav ul li a {
    display: block; padding: 16px 26px;
    color: #200f4e; text-decoration: none;
    font-family: var(--sans); font-weight: 500;
    font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
    transition: background 0.2s;
    border-bottom: 3px solid transparent;
}
nav ul li a:hover,
nav ul li a.active {
    background: rgba(0,0,0,0.12);
    border-bottom-color: rgba(32,15,78,0.5);
}
.nav-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    padding: 14px 18px; margin-left: auto;
}
.nav-toggle span {
    display: block; width: 26px; height: 3px;
    background: #200f4e; border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle span + span { margin-top: 5px; }
nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── CONTENT WRAPPER ─────────────────────────────────── */
.content { max-width: 1100px; margin: 0 auto; padding: 60px 30px; }

/* ─── HEADINGS ────────────────────────────────────────── */
.section-title {
    font-family: var(--script);
    font-size: 2.8rem; color: var(--red);
    text-align: center; margin-bottom: 30px; font-weight: 600;
}

/* ─── STARTSEITE ──────────────────────────────────────── */
.welcome-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.welcome-text h2 {
    font-family: var(--script); font-size: 2.4rem;
    color: var(--red); margin-bottom: 24px;
}
.welcome-text p {
    font-family: var(--serif); font-size: 0.98rem;
    line-height: 1.85; color: #333; margin-bottom: 14px; font-weight: 300;
}
.welcome-text .signature {
    font-family: var(--script); font-size: 1.9rem;
    color: var(--red); margin-top: 24px; font-weight: 600;
}

/* Inline slider */
.inline-slider {
    position: relative; border-radius: 4px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.inline-slider .islide { display: none; width: 100%; height: 380px; background-size: cover; background-position: center; }
.inline-slider .islide.active { display: block; }

/* Inline-Slider-Bilder */
.islide-1 { background-image: url('../images/Startseite/slider-startseite-peter-steffen-1.jpg'); }
.islide-2 { background-image: url('../images/Startseite/slider-startseite-peter-steffen-2.jpg'); }
.islide-3 { background-image: url('../images/Startseite/slider-startseite-peter-steffen-3.jpg'); }

.inline-nav {
    position: absolute; bottom: 12px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 6px;
}
.inline-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.45); cursor: pointer;
    border: none; transition: background 0.3s;
}
.inline-dot.active { background: var(--white); }
.islide-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    padding: 30px 16px 36px;
    font-family: var(--sans); font-size: 0.78rem;
    color: rgba(255,255,255,0.85); text-align: center; letter-spacing: 1px;
}

/* ─── PRODUKTE ────────────────────────────────────────── */
.produkte-intro {
    text-align: center; font-family: var(--serif);
    font-size: 1.05rem; color: #444; margin-bottom: 50px; font-weight: 300;
}
.produkte-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.produkt-card { text-align: center; }
.produkt-circle {
    width: 160px; height: 160px; border-radius: 50%;
    margin: 0 auto 18px;
    background-size: cover; background-position: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 3px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}
.produkt-circle:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* Kreis-Bilder */
.circle-1 { background-image: url('../images/Produkte/raeucherfisch.png'); }
.circle-2 { background-image: url('../images/Produkte/marinaden.png'); }
.circle-3 { background-image: url('../images/Produkte/fischsalate.png'); }
.circle-4 { background-image: url('../images/Produkte/tk-fisch.png'); }
.circle-5 { background-image: url('../images/Produkte/frischfisch.jpg'); }

.produkt-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.produkt-card p  { font-family: var(--serif); font-size: 0.85rem; line-height: 1.7; color: #555; font-weight: 300; margin-bottom: 12px; }
.produkt-card ul { list-style: none; font-size: 0.82rem; color: #444; line-height: 2; text-align: left; display: inline-block; }
.produkt-card ul li::before { content: '• '; color: var(--red); }

/* ─── VERKAUFSWAGEN ───────────────────────────────────── */
.verkauf-title {
    font-family: var(--script); font-size: 2.2rem;
    color: var(--red); text-align: center;
    margin-bottom: 50px; line-height: 1.3;
}
.verkauf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.schedule-block { font-family: var(--serif); font-size: 0.9rem; line-height: 1.9; }
.day-header { font-weight: 600; font-size: 1rem; margin-top: 20px; margin-bottom: 2px; color: var(--text); font-family: var(--sans); }
.day-header:first-child { margin-top: 0; }
.location { color: #444; }
.location a { color: var(--blue-nav); text-decoration: none; }
.location a:hover { text-decoration: underline; }
.wholesale-box {
    background: #fff; border-left: 4px solid var(--blue-nav);
    padding: 20px 24px; margin-top: 30px;
    font-family: var(--serif); font-size: 0.9rem; line-height: 1.8; color: #444;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.verkauf-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.verkauf-img {
    height: 200px; border-radius: 4px;
    background-size: cover; background-position: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.verkauf-img:hover { transform: scale(1.03); }
/* Verkaufswagen-Bilder */
.vi-1 { background-image: url('../images/Verkaufswagen/verkaufswagen-peter-steffen-1.jpg'); }
.vi-2 { background-image: url('../images/Verkaufswagen/verkaufswagen-peter-steffen-2.jpg'); }
.vi-3 { background-image: url('../images/Verkaufswagen/verkaufswagen-peter-steffen-3.jpg'); }
.vi-4 { background-image: url('../images/Verkaufswagen/verkaufswagen-peter-steffen-4.jpg'); }

.verkauf-map {
    width: 100%;
    min-height: 560px;
    height: 100%;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 0;
    position: sticky;
    top: 80px;
}

/* ─── FISCHPLATTEN ────────────────────────────────────── */
.fischplatten-intro {
    text-align: center; font-family: var(--serif);
    font-size: 1rem; color: #555; margin-bottom: 40px; font-weight: 300;
}
.fisch-main-img {
    width: 100%; max-width: 870px; margin: 0 auto;
    height: 420px; border-radius: 4px;
    background-size: cover; background-position: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18); display: block;
}
/* Fischplatten-Bilder */
.fisch-img-a { background-image: url('../images/Fischplatten/fischplatte-peter-steffen-1.jpg'); }
.fisch-img-b { background-image: url('../images/Fischplatten/fischplatte-peter-steffen-2.jpg'); }
.fisch-img-c { background-image: url('../images/Fischplatten/fischplatte-peter-steffen-3.jpg'); }
.fischplatten-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.fischplatten-gallery .fisch-main-img {
    height: 260px;
    width: 100%;
    max-width: none;
    transition: transform 0.3s;
}
.fischplatten-gallery .fisch-main-img:hover { transform: scale(1.03); }

/* ─── VERANSTALTUNGEN ─────────────────────────────────── */
.veranst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.veranst-text p { font-family: var(--serif); font-size: 0.95rem; line-height: 1.9; color: #444; margin-bottom: 20px; font-weight: 300; }
.veranst-gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.veranst-img {
    height: 150px; border-radius: 3px;
    background-size: cover; background-position: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: transform 0.3s;
}
.veranst-img:hover { transform: scale(1.03); }
/* Veranstaltungsbilder */
.vimg-1 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-1.jpg'); }
.vimg-2 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-2.jpg'); }
.vimg-3 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-3.jpg'); }
.vimg-4 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-4.jpg'); }
.vimg-5 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-5.jpg'); }
.vimg-6 { background-image: url('../images/Veranstaltungen/catering-fischbroetchen-6.jpg'); }

/* ─── KONTAKT ─────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.address-block p { font-family: var(--serif); font-size: 0.95rem; line-height: 2; color: #444; font-weight: 300; }
.address-block a { color: var(--blue-nav); }

.contact-form label {
    display: block; font-size: 0.82rem; font-family: var(--sans);
    letter-spacing: 1px; color: #555; margin-bottom: 6px; margin-top: 18px;
    text-transform: uppercase;
}
.contact-form label:first-of-type { margin-top: 0; }
.req { color: var(--red); }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 10px 14px;
    border: 1px solid #c8c8c8; background: var(--white);
    font-family: var(--serif); font-size: 0.95rem; color: var(--text);
    outline: none; transition: border-color 0.2s; border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue-nav); }
.contact-form textarea { height: 180px; resize: vertical; }
.privacy-note { font-size: 0.82rem; color: #666; margin-top: 14px; font-family: var(--sans); }
.privacy-note a { color: var(--blue-nav); }
.field-error { color: var(--red); font-size: 0.78rem; font-family: var(--sans); display: block; margin-top: 4px; }
.success-msg { color: #2a7a2a; font-family: var(--sans); font-size: 0.9rem; margin-top: 14px; }

.btn-submit {
    margin-top: 18px; padding: 11px 30px;
    background: var(--blue-nav); color: var(--white);
    border: none; font-family: var(--sans); font-size: 0.85rem;
    letter-spacing: 1px; cursor: pointer; text-transform: uppercase;
    transition: background 0.2s; border-radius: 2px;
}
.btn-submit:hover { background: var(--blue-footer); }

.kontakt-map { margin-top: 60px; }
.kontakt-map .map-title {
    font-family: var(--script);
    font-size: 2rem;
    color: var(--red);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}
.kontakt-map iframe {
    width: 100%;
    height: 420px;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: block;
}
.kontakt-map .map-link {
    text-align: right;
    font-size: 0.82rem;
    font-family: var(--sans);
    margin-top: 8px;
}
.kontakt-map .map-link a { color: var(--blue-nav); text-decoration: none; }
.kontakt-map .map-link a:hover { text-decoration: underline; }

/* ─── IMPRESSUM ───────────────────────────────────────── */
.impressum-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.impressum-meta h3 {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 22px;
    margin-bottom: 6px;
}
.impressum-meta h3:first-child { margin-top: 0; }
.impressum-meta p {
    font-family: var(--serif);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #444;
    font-weight: 300;
}
.impressum-meta a { color: var(--blue-nav); text-decoration: none; }
.impressum-meta a:hover { text-decoration: underline; }
.impressum-meta .copyright {
    margin-top: 28px;
    font-size: 0.82rem;
    color: #666;
}

.impressum-main h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin-top: 26px;
    margin-bottom: 10px;
}
.impressum-main h3:first-child { margin-top: 0; }
.impressum-main p {
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.75;
    color: #444;
    font-weight: 300;
    margin-bottom: 14px;
}

/* ─── LEGAL TEXT (Datenschutz etc.) ───────────────────── */
.legal-text {
    max-width: 820px;
    margin: 0 auto;
}
.legal-text h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
}
.legal-text h3:first-child { margin-top: 0; }
.legal-text h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
    margin-top: 22px;
    margin-bottom: 8px;
}
.legal-text p {
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.75;
    color: #444;
    font-weight: 300;
    margin-bottom: 12px;
}
.legal-text ul {
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
    font-weight: 300;
    margin: 8px 0 14px 22px;
}
.legal-text a { color: var(--blue-nav); text-decoration: none; word-break: break-word; }
.legal-text a:hover { text-decoration: underline; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--blue-footer); color: var(--white); padding: 55px 30px 0; }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    padding-bottom: 50px; align-items: start;
}
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: 1.35rem; letter-spacing: 1px; margin-bottom: 20px; text-align: center; }
.footer-col p  { font-family: var(--serif); font-size: 0.92rem; line-height: 1.9; text-align: center; font-weight: 300; }
.footer-col a  { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 16px 0; text-align: center;
    font-size: 0.78rem; font-family: var(--sans); letter-spacing: 0.5px;
}
.footer-bottom a   { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 8px; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom span { color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .produkte-grid { grid-template-columns: repeat(3, 1fr); }
    .welcome-grid,
    .verkauf-grid,
    .veranst-grid,
    .kontakt-grid,
    .impressum-grid { grid-template-columns: 1fr; }
    .verkauf-map { position: static; min-height: 420px; height: 420px; }
    .verkauf-images-row { grid-template-columns: repeat(2, 1fr); }
    .hero-slider { height: 340px; }
    .hero-logo-img { max-width: 260px; }

    nav { display: flex; flex-direction: column; }
    .nav-toggle { display: block; align-self: flex-end; }
    nav ul {
        flex-direction: column; width: 100%;
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
    }
    nav.open ul { max-height: 500px; }
    nav ul li { width: 100%; }
    nav ul li a {
        text-align: center; padding: 14px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    nav ul li a:hover,
    nav ul li a.active { border-bottom-color: rgba(32,15,78,0.5); }
}
@media (max-width: 600px) {
    .produkte-grid { grid-template-columns: 1fr 1fr; }
    .veranst-gallery { grid-template-columns: 1fr 1fr; }
    .verkauf-images-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
