/* weihnachten-silvester-schweden.css
   Seiten-CSS für rostockgedser.de/weihnachten-silvester-schweden.html
   Basis: css/wintercamping-daenemark.css (Site-Palette #005D8A / #FFC107),
   ergänzt um einen dezenten Winter-/Nachtblau-Akzent für Hero und Adventsboxen. */

:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --winter-blue: #4A90A4;
    --night-blue: #1D3557;
    --night-blue-dark: #142943;
    --jul-red: #A4303F;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
}

.site-header .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.site-header .nav-link:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(20,41,67,0.78) 0%, rgba(0,93,138,0.72) 100%),
                url('/images/schweden-weihnachten/oeresundbruecke-malmoe.webp') center/cover;
    color: var(--white);
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
}

/* Badge im Hero */
.winter-badge {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--night-blue-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Kurzfassung-/Faktenbox direkt unter dem Hero */
.fakten-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(2px);
}

.fakten-box h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.fakten-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fakten-box li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.fakten-box li:last-child {
    border-bottom: none;
}

.fakten-box i {
    color: var(--secondary);
    margin-right: 0.5rem;
    width: 20px;
}

/* Benefits Pills */
.benefits-compact {
    background-color: rgba(255,255,255,0.95);
    padding: 1rem 0;
    border-bottom: 3px solid var(--secondary);
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0,93,138,0.1);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 500;
}

/* Inhaltsverzeichnis */
.toc {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.toc ol {
    padding-left: 1.2rem;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.toc li {
    break-inside: avoid;
    padding: 0.15rem 0;
}

.toc a {
    color: var(--primary);
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}

/* Content-Sektionen */
.content-section {
    padding: 3rem 0;
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.subsection-title {
    font-weight: 600;
    color: var(--winter-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

/* Karten */
.card-winter {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,93,138,0.1);
    transition: all 0.3s ease;
}

.card-winter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-jul {
    background: linear-gradient(135deg, #EEF3FA 0%, #DCE6F3 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--night-blue);
}

.card-jul h3 {
    color: var(--night-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Orts-/Ziel-Karten (Malmö, Lund, Ystad, Helsingborg) */
.place-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.place-header {
    background: linear-gradient(135deg, var(--night-blue), var(--primary));
    color: var(--white);
    padding: 1.5rem;
}

.place-header h3 {
    margin: 0;
    font-weight: 700;
}

.place-body {
    padding: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 20px;
}

/* Hinweis-/Highlight-Boxen */
.highlight-box {
    background: linear-gradient(135deg, rgba(0,93,138,0.1), rgba(74,144,164,0.05));
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hinweis-box {
    background: #FFF8E1;
    border-left: 4px solid var(--secondary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.hinweis-box h4 {
    color: var(--secondary-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Tabellen (Fahrzeiten, Feiertagsfahrplan) */
.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: var(--white);
}

.table-winter {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    min-width: 520px;
}

.table-winter thead th {
    background: var(--night-blue);
    color: var(--white);
    font-weight: 600;
    padding: 0.9rem 1rem;
    text-align: left;
    border: none;
}

.table-winter tbody td,
.table-winter tbody th {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    vertical-align: top;
}

.table-winter tbody tr:nth-child(even) {
    background: rgba(0,93,138,0.04);
}

.table-winter tbody tr:last-child td,
.table-winter tbody tr:last-child th {
    border-bottom: none;
}

.table-winter tbody th {
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

.table-winter .keine-abfahrt {
    color: var(--jul-red);
    font-weight: 600;
}

.tabellen-fussnote {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.75rem;
}

/* Bilder & Bildnachweis */
figure.bild {
    margin: 1.5rem 0 2rem;
}

figure.bild img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

figure.bild figcaption,
.img-credit {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

figure.bild figcaption a {
    color: var(--gray);
    text-decoration: underline;
}

/* Karte */
#map {
    height: 480px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
    z-index: 1;
}

.karten-legende {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.karten-legende span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.legende-punkt {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,93,138,0.3);
}

.btn-jul {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    color: var(--night-blue-dark);
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-jul:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,173,0,0.45);
    color: var(--night-blue-dark);
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0,93,138,0.1);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* Autorenkasten */
.autoren-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1.5rem;
}

.autoren-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.autoren-box a {
    color: var(--primary);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .benefit-pill {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .toc ol {
        columns: 1;
    }

    #map {
        height: 320px;
    }
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Print */
@media print {
    .site-header, .site-footer, .btn, .benefits-compact, .toc, #map, #live-preise {
        display: none;
    }
}
