:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --winter-blue: #4A90A4;
    --hygge-orange: #D97D54;
    --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 Section */
.hero {
    background: linear-gradient(135deg, rgba(74,144,164,0.95) 0%, rgba(0,93,138,0.95) 100%),
                url('/images/kreidefelsen-von-moens-klint.jpg') 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.3);
}

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

/* Hygge Badge */
.hygge-badge {
    background: linear-gradient(135deg, var(--hygge-orange), #E69679);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(217,125,84,0.4);
}

/* 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;
}

/* TOC */
.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;
}

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

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

/* Content Sections */
.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;
}

/* Cards */
.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-hygge {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--hygge-orange);
}

.card-hygge h3 {
    color: var(--hygge-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Campsite Cards */
.campsite-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;
}

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

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

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

.campsite-rating {
    color: var(--secondary);
    font-size: 1.1rem;
}

.campsite-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;
}

/* Highlight Boxes */
.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;
}

/* Weather Box */
.weather-box {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.weather-month {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    margin: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.weather-month h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Image Credits */
.img-credit {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

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

/* 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-hygge {
    background: linear-gradient(135deg, var(--hygge-orange), #E69679);
    border: none;
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hygge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217,125,84,0.4);
    color: var(--white);
}

/* FAQ Section */
.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);
}

/* 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;
    }

    #map {
        height: 300px;
    }
}

/* 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 Styles */
@media print {
    .site-header, .site-footer, .btn, .benefits-compact, .toc, #map {
        display: none;
    }
}
