/* Frivillig Side Stilarter */

/* Hero Sektion */
.frivillig-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.frivillig-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.frivillig-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.section.artist-intro {
    background-image: url('../assets/images/doodle.webp'), url('../assets/images/4k_tekstur.webp');
    background-position: center bottom, center center;
    background-size: contain, cover;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--bg-dark);
    position: relative;
    padding-bottom: 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
}

.frivillig-hero-title {
    font-family: 'Silver Forte Grunge', var(--font-heading);
    font-size: 5rem;
    color: var(--accent-orange);
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8);
    transform: rotate(-2deg);
}

/* Sektioner Generelt */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-col {
    padding: 20px;
}

.image-col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0 var(--accent-orange);
}

/* Sektion 1 */
.frivillig-content-1 {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-desc-light {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.danish-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.danish-list li {
    margin-bottom: 5px;
}

/* Slider Prikker */
.slider-dots-container {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    padding-left: 20px;
    /* Juster med tekstkolonne omtrent */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: var(--accent-orange);
}

/* Sektion 2 */
.frivillig-content-2 {
    background-color: #E0E0E0;
    background-image: url('../assets/images/4k_tekstur.webp');
    background-size: cover;
    background-position: center;
    /* Lysegrå */
    color: var(--text-black);
    position: relative;
}

/* Skribleri Linje Dekor (Pseudo) */
.frivillig-content-2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q250,40 500,20 T1000,20' fill='none' stroke='%23FF5500' stroke-width='4' stroke-opacity='0.8' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

.section-desc-dark {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.frivillig-content-2 .section-title {
    /* Sikr at titel er synlig på lys baggrund */
    color: var(--accent-orange);
    text-shadow: none;
    /* Renere look på lys baggrund */
    mix-blend-mode: normal;
}


/* Responsiv */
@media (max-width: 768px) {
    .frivillig-hero-title {
        font-size: 3rem;
    }

    .grid-layout {
        grid-template-columns: 1fr;
    }

    .slider-dots-container {
        justify-content: center;
        padding-left: 0;
    }

    .frivillig-content-2::before {
        background-size: contain;
        height: 20px;
        top: -10px;
    }
}