:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --success: #28A745;
    --camp-green: #2E7D32;
    --camp-brown: #5D4037;
    --fire-orange: #E65100;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: var(--light);
    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); }
.site-header .nav-link {
    color: var(--dark); font-weight: 500; padding: 0.5rem 1rem;
    margin: 0 0.25rem; border-radius: 4px; transition: all 0.2s ease;
}
.site-header .nav-link:hover { background-color: var(--light-gray); }

/* Breadcrumb */
.breadcrumb-nav { background: var(--light); padding: 0.5rem 0; font-size: 0.85rem; }
.breadcrumb-nav a { color: var(--primary); text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* TOC */
.toc-box {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.toc-box h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--primary); }
.toc-box ol { margin: 0; padding-left: 1.25rem; }
.toc-box li { margin-bottom: 0.3rem; }
.toc-box a { color: var(--dark); text-decoration: none; }
.toc-box a:hover { color: var(--primary); text-decoration: underline; }

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(46,125,50,0.88) 0%, rgba(0,69,107,0.88) 100%), url('/images/maennerausflug-schweden-hero.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 0 3rem;
}
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.hero h1 { font-weight: 800; font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

.badge-custom {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; margin: 0.25rem;
}
.badge-primary { background-color: var(--primary); color: var(--white); }
.badge-highlight { background-color: var(--secondary); color: var(--dark); }
.badge-green { background-color: var(--camp-green); color: var(--white); }

/* Booking Box */
.booking-box {
    background-color: var(--white); border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); padding: 2rem;
    margin-top: -3rem; position: relative; z-index: 10;
}
.booking-box .price-highlight {
    font-size: 2rem; font-weight: 800; color: var(--camp-green);
}
.booking-box .price-label { font-size: 0.9rem; color: var(--gray); }

/* Content Sections */
.content-section {
    background-color: var(--white); border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 2rem; margin-bottom: 2rem;
}
.content-section h2 { color: var(--primary); margin-bottom: 1.5rem; font-weight: 700; }
.content-section h3 { color: var(--primary-dark); margin-top: 1.5rem; margin-bottom: 1rem; font-weight: 600; }

/* Camping Cards */
.camp-card {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; display: flex; flex-direction: column;
    border: 2px solid transparent;
}
.camp-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.camp-card.recommended { border-color: var(--camp-green); }
.camp-card .camp-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--camp-green); color: white;
    padding: 0.3rem 0.8rem; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
}
.camp-card-img {
    height: 200px; background-size: cover; background-position: center;
    position: relative;
}
.camp-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.camp-card-body h3 { font-size: 1.2rem; margin-top: 0; }
.camp-card-body .camp-price {
    font-size: 1.4rem; font-weight: 700; color: var(--camp-green);
}
.camp-features { list-style: none; padding: 0; margin: 1rem 0; }
.camp-features li { padding: 0.3rem 0; padding-left: 1.5rem; position: relative; }
.camp-features li::before {
    content: "\2713"; position: absolute; left: 0;
    color: var(--camp-green); font-weight: 700;
}

/* Map */
#campingMap { height: 400px; border-radius: 8px; z-index: 1; }

/* Route Timeline */
.route-timeline { position: relative; padding-left: 2.5rem; }
.route-timeline::before {
    content: ''; position: absolute; left: 1rem; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, var(--camp-green), var(--primary));
}
.route-step {
    position: relative; margin-bottom: 1.5rem;
    padding: 1rem 1.5rem; background: var(--light);
    border-radius: 8px; border-left: 3px solid var(--primary);
}
.route-step::before {
    content: ''; position: absolute; left: -2.05rem; top: 1.2rem;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--primary); border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}
.route-step .step-time { font-weight: 700; color: var(--primary); }

/* Price Table */
.price-table { border-radius: 8px; overflow: hidden; }
.price-table thead { background-color: var(--primary); color: white; }
.price-table .best-price { background-color: rgba(46,125,50,0.1); font-weight: 700; }
.price-table .price-cell { font-weight: 700; color: var(--camp-green); }

/* Packliste */
.packliste-category {
    background: var(--light); border-radius: 8px; padding: 1.5rem;
    margin-bottom: 1rem; border-left: 4px solid var(--camp-green);
}
.packliste-category h4 { color: var(--camp-brown); font-weight: 700; font-size: 1.1rem; }
.packliste-category ul { columns: 2; column-gap: 2rem; list-style: none; padding: 0; }
.packliste-category li { padding: 0.2rem 0; padding-left: 1.5rem; position: relative; break-inside: avoid; }
.packliste-category li::before {
    content: "\2610"; position: absolute; left: 0; color: var(--camp-green); font-size: 1.1rem;
}

/* Insider Tip */
.insider-tip {
    background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,202,40,0.1) 100%);
    border: 2px dashed var(--secondary); padding: 1.5rem; padding-top: 2rem;
    margin-top: 1.5rem; margin-bottom: 1.5rem; border-radius: 8px; position: relative;
}
.insider-tip::before {
    content: "Insider-Tipp"; position: absolute; top: -12px; left: 20px;
    background-color: var(--secondary); color: var(--dark);
    padding: 0.25rem 0.75rem; border-radius: 20px; font-weight: 700; font-size: 0.85rem;
}

/* CTA Buttons */
.btn-primary {
    background-color: var(--primary); border-color: var(--primary);
    font-weight: 600; border-radius: 8px; padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0,93,138,0.25);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--primary-dark); border-color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,93,138,0.35);
}
.btn-secondary {
    background-color: var(--secondary); border-color: var(--secondary);
    color: var(--dark); font-weight: 600; border-radius: 8px;
}
.btn-cta-large {
    font-size: 1.15rem; padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--camp-green), #388E3C);
    border: none; color: white; font-weight: 700; border-radius: 10px;
    box-shadow: 0 4px 15px rgba(46,125,50,0.4);
}
.btn-cta-large:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.5);
    color: white;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(46,125,50,0.08) 0%, rgba(0,93,138,0.08) 100%);
    border-left: 5px solid var(--camp-green); padding: 1.5rem;
    border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}

/* Image Credits */
.img-credit {
    font-size: 0.7rem; color: var(--gray); text-align: right; margin-top: 0.25rem;
}
.img-credit a { color: var(--gray); text-decoration: underline; }

/* Footer */
.site-footer { background-color: var(--primary); color: rgba(255,255,255,0.9); padding: 3rem 0 1rem; margin-top: 3rem; }
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-links h5 { color: var(--white); font-weight: 700; margin-bottom: 1rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 2rem; padding-top: 1.5rem; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 70px; right: 20px; width: 44px; height: 44px;
    border-radius: 50%; background-color: var(--primary); color: white;
    border: none; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); opacity: 0; transition: all 0.3s ease;
    z-index: 1000; cursor: pointer;
}
.back-to-top.show { opacity: 1; }
.back-to-top:hover { background-color: var(--primary-dark); transform: translateY(-2px); }

/* Sticky CTA */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1020;
    background: linear-gradient(135deg, var(--camp-green), #388E3C);
    padding: 0.75rem; text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a {
    color: white; font-weight: 700; text-decoration: none; font-size: 1rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .hero { padding: 3rem 0 2rem; }
    .packliste-category ul { columns: 1; }
    .booking-box .price-highlight { font-size: 1.5rem; }
    #campingMap { height: 300px; }
}
