/* ==========================================================
   SJUNG MED OSS
   ========================================================== */

.join-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 560px;
    padding: 90px 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    /* Tar bort den gamla bakgrunden från själva sektionen */
    background: none !important;
}

/* Separat animerat bakgrundslager */
.join-section::before {
    content: "";
    position: absolute;
    inset: -6%;
    z-index: -1;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("/images/aterskenbilder-2-0/sjungmedoss_bakgrund.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation: joinZoom 28s ease-in-out infinite alternate;
    will-change: transform;
}


/* ==========================================================
   INNEHÅLL OCH TYPOGRAFI
   ========================================================== */

.join-section .sp-module-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-section h1,
.join-section h2,
.join-section h3 {
    margin-top: 0;
    margin-bottom: 24px;

    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.join-section h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
}

.join-section p {
    max-width: 700px;
    margin: 0 auto 32px;

    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
}


/* ==========================================================
   KNAPP
   Samma knappklass som i Hero
   ========================================================== */

.join-section .hero-button {
    margin-top: 10px;
}

.join-section .hero-button:hover {
    transform: translateY(-2px);
}


/* ==========================================================
   KEN BURNS – DATOR
   ========================================================== */

.join-section {
    background-size: 100% auto !important;
    background-position: 50% 50% !important;
    animation: joinZoom 18s ease-in-out infinite alternate !important;
    will-change: background-size, background-position;
}

@keyframes joinZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}


/* ==========================================================
   MOBIL
   ========================================================== */

@media (max-width: 768px) {

    .join-section {
        min-height: 420px;
        padding: 70px 25px;
    }

    .join-section::before {
        animation: none;
        transform: scale(1.04);
    }

    .join-section p {
        font-size: 1.05rem;
    }
}


/* ==========================================================
   RESPEKTERA MINSKAD RÖRELSE
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .join-section {
        animation: none;
    }
}