/* =========================================================
   KOSKENKUISKE – FOOTER
   ========================================================= */

.site-footer {
    margin-top: 0;

    padding: 58px 0 24px;

    border-top: 4px solid #d9a62e;

    background:
        linear-gradient(
            135deg,
            #195b59 0%,
            #124a49 100%
        );

    color: #ffffff;
}


/* =========================================================
   FOOTER – PÄÄSISÄLTÖ
   ========================================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr;

    gap: 56px;

    align-items: start;
}


/* =========================================================
   FOOTER – OTSIKOT
   ========================================================= */

.site-footer h2,
.site-footer h3 {
    margin-top: 0;

    color: #f0c85a;
}


.site-footer h2 {
    margin-bottom: 8px;

    font-family: "Great Vibes", cursive;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
}


.site-footer h3 {
    margin-bottom: 14px;

    font-family:
        "Cabin",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 1.05rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* =========================================================
   FOOTER – TEKSTIT
   ========================================================= */

.site-footer p {
    margin-top: 0;
    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.92);

    font-family:
        "Cabin",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;
}


.footer-brand p {
    margin-bottom: 0;
}


/* =========================================================
   FOOTER – AJANVARAUSPAINIKE
   ========================================================= */

.site-footer .footer-booking-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    margin-top: 6px;
    padding: 0 28px;

    border: 1px solid #c99728;
    border-radius: 7px;

    background: #d9a62e;
    color: #165b59;

    font-family:
        "Cabin",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.10);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.site-footer .footer-booking-button:hover,
.site-footer .footer-booking-button:focus {
    background: #f0c85a;
    color: #123f3e;

    transform: translateY(-2px);

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   FOOTER – ALARIVI
   ========================================================= */

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.18);

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    font-size: 14px;

    color:
        rgba(255, 255, 255, 0.72);
}


/* =========================================================
   FOOTER – ALLE 950 PX
   Footer muuttuu päällekkäiseksi samassa kohdassa,
   jossa sivuston palvelukortit muuttuvat kahteen sarakkeeseen.
   ========================================================= */

@media (max-width: 950px) {

    .site-footer {
        padding-top: 48px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 36px;

        text-align: center;

        justify-items: center;
    }


    .footer-brand,
    .footer-contact,
    .footer-booking {
        width: 100%;

        text-align: center;
    }


    .site-footer h2,
    .site-footer h3,
    .site-footer p {
        text-align: center;
    }


    .footer-booking {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .footer-bottom {
        margin-top: 38px;

        text-align: center;
    }
}


/* =========================================================
   FOOTER – PIENET MOBIILIT
   ========================================================= */

@media (max-width: 520px) {

    .site-footer {
        padding-top: 42px;
        padding-bottom: 20px;
    }


    .footer-grid {
        gap: 30px;
    }


    .site-footer h2 {
        font-size: 2.25rem;
    }


    .site-footer .footer-booking-button {
        min-width: 170px;
    }


    .footer-bottom {
        margin-top: 32px;
        padding-top: 18px;
    }
}