/* kalender.css - v3.3 (Big White Hero Title) */

:root {
    --db-red: #8B2332;
    --db-red-hover: #6a1b26;
    --db-grey-btn: #54595F;
    --db-text-main: #333;
    --db-text-meta: #7A7A7A;
    --db-divider: #E0E0E0;
}

.db-calendar-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--db-text-main);
    box-sizing: border-box;
}

/* --- HERO SECTION (NÆSTE TURNERING - TOPPEN) --- */
.db-hero-wrapper {
    text-align: right;
    color: #ffffff; /* Sikrer at alt tekst i denne container er hvid */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.db-hero-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    opacity: 0.9; /* Lidt gennemsigtig for at lade titlen skinne */
}

/* DEN STORE ÆNDRING HER: */
.db-hero-title {
    display: block;
    font-size: 48px; /* Markant større størrelse */
    font-weight: 700; /* Fed skrift */
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1; /* Stram linjehøjde for headline-look */
    letter-spacing: -1px; /* Lidt tættere bogstaver */
    /* Farven arves som #ffffff fra wrapperen */
}

.db-hero-date {
    display: block;
    font-size: 32px;
    font-weight: 400;
}

/* --- RESTEN AF KALENDER STYLING (Uændret) --- */
.db-main-title {
    color: var(--db-red);
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.db-section-header {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 0; 
}

.db-section-spacer {
    margin-top: 120px; 
}

.db-sub-title {
    color: var(--db-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    display: block;
}

.db-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid var(--db-divider);
    gap: 30px;
}

.db-event-group .db-event-row:last-child {
    border-bottom: none;
}

.db-date-col {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 160px;
}

.db-day {
    font-size: 58px;
    font-weight: 700;
    color: var(--db-red);
    line-height: 1;
    letter-spacing: -2px;
}

.db-date-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.db-month {
    font-size: 15px;
    color: var(--db-text-meta);
    font-weight: 400;
}

.db-year {
    font-size: 15px;
    color: var(--db-text-meta);
}

.db-info-col {
    flex: 1;
}

.db-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--db-red);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.db-location-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.db-flag-icon {
    width: 12px;
    height: 12px;
    fill: #000;
}

.db-action-col {
    text-align: right;
    min-width: 180px;
}

.db-btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.db-btn-buy_tickets {
    background-color: var(--db-red);
}
.db-btn-buy_tickets:hover {
    background-color: var(--db-red-hover);
}

.db-btn-view_results {
    background-color: var(--db-grey-btn);
}
.db-btn-view_results:hover {
    background-color: #333;
}

.db-btn-disabled {
    background-color: #D3D3D3;
    color: #fff;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 768px) {
    .db-event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }
    .db-action-col {
        width: 100%;
        text-align: left;
    }
    .db-btn {
        width: 100%;
        display: block;
    }
    .db-main-title {
        font-size: 40px;
    }
    .db-section-spacer {
        margin-top: 80px; 
    }
    
    /* Hero mobil justering */
    .db-hero-wrapper {
        text-align: center;
        margin-top: 20px;
        padding: 0 20px; /* Lidt luft i siderne på mobil */
    }
    /* Også større på mobil, men lidt mindre end desktop */
    .db-hero-title { 
        font-size: 32px; 
    }
    .db-hero-date { 
        font-size: 24px; 
    }
}