:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --success: #28A745;
    --blue-accent: #0074D9;
    --tour-blue: #0277BD;
    --tour-blue-dark: #01579B;
    --tour-sand: #D4A76A;
    --tour-sand-dark: #B8894E;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(2,119,189,0.88) 0%, rgba(1,87,155,0.88) 100%), url('/images/kronborg-schloss.webp') center/cover no-repeat;
    color: var(--white);
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--tour-sand);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* 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(--tour-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--tour-blue-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Featured Cards */
.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.feature-card-content {
    padding: 1.5rem;
}

/* Day Separator */
.day-separator {
    background: linear-gradient(135deg, var(--tour-blue) 0%, var(--tour-blue-dark) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-separator h3 {
    color: var(--white);
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.day-separator .day-number {
    background-color: var(--tour-sand);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.day-separator .day-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* Timeline */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background-color: var(--light-gray);
    z-index: 0;
}

.timeline-item {
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.timeline-badge {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--tour-blue);
    border-radius: 50%;
    z-index: 1;
}

.timeline-badge.highlight {
    background-color: var(--tour-sand);
    width: 24px;
    height: 24px;
    left: 8px;
    border: 3px solid var(--tour-blue);
}

.timeline-content {
    padding: 1rem;
    background-color: var(--light);
    border-radius: 8px;
}

.timeline-content.highlight {
    background-color: rgba(2,119,189,0.06);
    border-left: 3px solid var(--tour-blue);
}

/* CTA Buttons */
.btn-primary {
    background-color: var(--tour-blue);
    border-color: var(--tour-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--tour-blue-dark);
    border-color: var(--tour-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--tour-blue);
    color: var(--tour-blue);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--tour-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-sand {
    background-color: var(--tour-sand);
    border-color: var(--tour-sand);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-sand:hover {
    background-color: var(--tour-sand-dark);
    border-color: var(--tour-sand-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--tour-blue);
    margin-bottom: 1rem;
}

/* Images */
.img-feature {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
}

/* Accordion */
.accordion-item {
    background-color: var(--white);
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.accordion-button:not(.collapsed) {
    color: var(--tour-blue);
    background-color: rgba(2,119,189,0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(2,119,189,0.25);
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--white);
}

/* Insider Tips */
.insider-tip {
    background-color: rgba(212,167,106,0.15);
    border-left: 4px solid var(--tour-sand);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.insider-tip h4 {
    color: var(--tour-sand-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.insider-tip h4 svg {
    margin-right: 0.5rem;
}

/* Hotel Tips */
.hotel-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hotel-card .hotel-region {
    display: inline-block;
    background-color: var(--tour-blue);
    color: var(--white);
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Season Badges */
.season-badges {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.season-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    background-color: var(--light-gray);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
}

.season-badge.active {
    background-color: var(--tour-blue);
    color: var(--white);
}

.season-badge svg {
    margin-right: 0.25rem;
}

/* UNESCO Badge */
.unesco-badge {
    display: inline-block;
    background-color: #1A237E;
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TOC */
.toc {
    background-color: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc h3 {
    color: var(--tour-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.toc li {
    margin-bottom: 0.4rem;
}

.toc a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.toc a:hover {
    color: var(--tour-blue);
}

.toc .toc-sub {
    padding-left: 1.2rem;
    margin-top: 0.3rem;
}

/* Map */
#route-map {
    height: 400px;
    border-radius: 8px;
    margin: 1.5rem 0;
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--tour-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

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

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus {
    outline: 3px solid rgba(2,119,189,0.5);
    outline-offset: 2px;
}

@media (forced-colors: active) {
    .btn:focus,
    .form-control:focus,
    a:focus {
        outline: 3px solid SelectedItem;
    }
}

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

    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-badge {
        left: 5px;
    }

    .timeline-badge.highlight {
        left: 3px;
    }

    .day-separator {
        flex-direction: column;
        text-align: center;
    }

    #route-map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 1.25rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-sand {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .back-to-top {
        bottom: 5rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}
