/* Hero Header Styles - Mobilens Rejse */
:root {
    --color-cream: #faf6f1;
    --color-coffee: #2d1810;
    --color-coffee-light: #5c3d2e;
    --color-copper: #b87333;
    --color-copper-light: #d4956a;
    --color-terracotta: #c1666b;
    --color-sage: #4a7c59;
    --color-gold: #c9a227;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
}

/* Fixed Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(184, 115, 51, 0.3);
}

.top-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}

.top-nav__brand:hover {
    color: var(--color-copper-light);
}

.top-nav__stops {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-nav__stop {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
}

.top-nav__stop:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-copper-light);
    color: white;
}

.top-nav__stop.active {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: white;
}

.top-nav__stop.completed {
    background: rgba(74, 124, 89, 0.6);
    border-color: var(--color-sage);
    color: white;
}

/* Helper text indicator (H) */
.top-nav__helper {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.top-nav__helper:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.6);
    color: white;
}

.top-nav__helper.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.top-nav__helper.completed {
    background: rgba(37, 99, 235, 0.4);
    border-color: rgba(37, 99, 235, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

/* Assignment indicator (A) */
.top-nav__assignment {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}

.top-nav__assignment:hover {
    background: rgba(201, 162, 39, 0.15);
    color: white;
    border-color: var(--color-gold);
}

.top-nav__assignment.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

.top-nav__assignment.completed {
    background: rgba(201, 162, 39, 0.5);
    border-color: var(--color-gold);
    color: white;
}

/* Separator dot */
.top-nav__sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
}

/* Hero Header - Bottom-aligned layout */
.hero-header {
    min-height: 60vh;
    margin-top: 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    font-family: var(--font-body);
}

.hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 24, 16, 0.85) 0%, rgba(45, 24, 16, 0.4) 40%, transparent 70%);
    pointer-events: none;
}

.hero-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0;
    padding: 2rem 3rem 2.5rem;
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-copper), var(--color-gold));
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.hero-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-copper-light), transparent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Hero Question Cards - Compact left-aligned */
.hero-questions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    perspective: 1000px;
}

.hero-question-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.6rem 1.25rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.hero-question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-question-card:hover::before {
    left: 100%;
}

.hero-question-card:hover {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.25) 0%, rgba(201, 162, 39, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--color-copper-light);
}

.hero-question-card .q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-copper), var(--color-gold));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.4);
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-header {
        min-height: 50vh;
    }

    .hero-content {
        padding: 1.5rem 1.25rem 2rem;
    }

    .top-nav {
        padding: 0.5rem 1rem;
    }

    .top-nav__brand {
        font-size: 0.95rem;
    }

    .top-nav__stop {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .top-nav__helper {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
        border-radius: 4px;
    }

    .top-nav__assignment {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
        border-radius: 4px;
    }

    .top-nav__sep {
        font-size: 0.5rem;
    }

    .top-nav__stops {
        gap: 0.25rem;
    }

    .hero-header h1 {
        font-size: 1.75rem;
    }

    .hero-questions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .hero-question-card {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-question-card .q-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}