/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


html,
body {
    min-height: 100%;
}


body {
    font-family: Georgia, "Times New Roman", serif;

    background-color: #f5eee8;

    color: #503c32;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}


main {
    flex: 1;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}



/* =========================================
   KOLORY
========================================= */

:root {

    --background: #f5eee8;

    --background-dark: #ebe0d5;

    --card: #f1e7de;

    --brown: #503c32;

    --brown-light: #927964;

    --brown-button: #a9917d;

    --line: #b49a83;

    --white: #ffffff;

}



/* =========================================
   HEADER
========================================= */

.header {

    width: 100%;

    padding: 28px 4vw 10px;

    background-color: var(--background);

}


.header-container {

    max-width: 1240px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}



/* =========================================
   LOGO
========================================= */

.logo {

    width: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.logo img {

    width: 100%;

    height: auto;

    display: block;

}



/* =========================================
   NAWIGACJA
========================================= */

.navigation {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 65px;

    margin-top: -35px;

}


.navigation a {

    position: relative;

    font-size: 22px;

    font-weight: 400;

    color: #58463c;

    padding: 8px 0;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        transform 0.25s ease;

}


.navigation a:hover {

    color: #8f7561;

    text-shadow:
        0 3px 8px rgba(80, 60, 50, 0.18);

    transform: translateY(-1px);

}



/* =========================================
   AKTYWNA ZAKŁADKA
========================================= */

.navigation a.active {

    color: #503c32;

    text-shadow:
        0 3px 7px rgba(80, 60, 50, 0.26);

}


.navigation a.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 2px;

    border-radius: 10px;

    background-color: #9b816c;

    box-shadow:
        0 5px 7px rgba(80, 60, 50, 0.25);

}



/* =========================================
   PRZYCISK ZAPISZ SIĘ
========================================= */

.navigation .nav-button {

    padding: 9px 17px;

    border-radius: 8px;

    background-color: var(--brown-button);

    color: #fff;

    font-size: 22px;

    box-shadow:
        0 4px 10px rgba(80, 60, 50, 0.16);

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;

}


.navigation .nav-button:hover {

    background-color: #806a58;

    color: #fff;

    box-shadow:
        0 6px 14px rgba(80, 60, 50, 0.22);

    transform: translateY(-1px);

}



/* =========================================
   GRAFIK — GŁÓWNA SEKCJA
========================================= */

.schedule-section {

    width: 100%;

    padding: 30px 4vw 60px;

}


.schedule-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

}


/* =========================================
   KARTA GRAFIKU
========================================= */

.schedule-card {
    width: 100%;

    padding: 20px;

    background-color: #f1e7de;

    border: 1px solid rgba(110, 88, 73, 0.2);

    border-radius: 12px;

    box-shadow:
        0 16px 25px rgba(65, 45, 35, 0.15);

    overflow: hidden;
}


/* =========================================
   FITSEY
========================================= */

.fitsey-widget {
    width: 100%;
}


/* właściwy widget Fitssey */

lb-schedule-widget {
    display: block;

    width: 100%;
    min-height: 600px;
}



/* =========================================
   JEŻELI FITSEY BĘDZIE W IFRAME
========================================= */

.schedule-card iframe {

    width: 100%;

    min-height: 650px;

    display: block;

    border: none;

}



/* =========================================
   FOOTER
========================================= */

.footer {

    background-color: #eee3d8;

    background-image:
        url("../images/footer-bg.png");

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    color: #503c32;

}



/* =========================================
   GŁÓWNY KONTENER FOOTERA
========================================= */

.footer-container {

    width: 100%;

    max-width: 1400px;

    min-height: 125px;

    margin: 0 auto;

    padding: 16px 24px 14px;

    display: grid;

    grid-template-columns:
        1.3fr
        1.3fr
        2.6fr
        1.4fr
        0.6fr;

    align-items: stretch;

}



/* =========================================
   KOLUMNY
========================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}



/* =========================================
   NAGŁÓWKI
========================================= */

.footer-column h3 {

    margin: 0 0 8px;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 0.5px;

    color: #503c32;

}



/* =========================================
   LINKI
========================================= */

.footer-column a {

    margin-bottom: 6px;

    font-size: 13px;

    color: #584238;

    text-decoration: underline;

    transition:
        color 0.2s ease,
        text-shadow 0.2s ease;

}


.footer-column a:hover {

    color: #8f7561;

    text-shadow:
        0 2px 6px rgba(80, 60, 50, 0.18);

}



/* =========================================
   OZDOBNA PRZERWA
========================================= */

.footer-decoration {

    position: relative;

    height: 100%;

    min-height: 95px;

    margin: 0 40px;

    border-left:
        2px solid rgba(120, 94, 76, 0.45);

    border-right:
        2px solid rgba(120, 94, 76, 0.45);

}



/* =========================================
   KONTAKT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding-left: 20px;

}



/* =========================================
   ELEMENT KONTAKTOWY
========================================= */

.contact-item {

    display: flex;

    align-items: flex-start;

    margin-bottom: 6px;

    font-size: 13px;

    line-height: 1.25;

    color: #584238;

}



/* =========================================
   IKONY KONTAKTOWE
========================================= */

.contact-icon {

    width: 25px;

    min-width: 25px;

    margin-right: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    color: #8f7561;

}



/* =========================================
   SOCIAL MEDIA
========================================= */

.socials {

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;

    gap: 16px;

    height: 100%;

    min-height: 95px;

}


.socials a {

    width: 24px;

    height: 24px;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


.socials a:hover {

    transform: translateY(-2px);

    opacity: 0.7;

}


.socials img {

    width: 20px;

    height: 20px;

    display: block;

    object-fit: contain;

}



/* =========================================
   COPYRIGHT
========================================= */

.copyright {

    min-height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 6px 20px;

    background-color: #c5b09c;

    color: #fff;

    text-align: center;

    font-size: 10px;

}

/* =========================================
   MODAL — REGULAMIN
========================================= */

.modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background-color: rgba(50, 38, 31, 0.55);

    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}


/* =========================================
   OKNO REGULAMINU
========================================= */

.regulamin-modal {
    position: relative;

    width: min(900px, 100%);
    height: min(88vh, 800px);

    background-color: #f5eee8;

    border: 1px solid rgba(110, 88, 73, 0.25);

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(50, 38, 31, 0.30);

    overflow: hidden;
}


/* =========================================
   TREŚĆ
========================================= */

.regulamin-content {
    height: 100%;

    overflow-y: auto;

    padding: 45px 55px 50px;
}


/* PASEK PRZEWIJANIA */

.regulamin-content::-webkit-scrollbar {
    width: 8px;
}

.regulamin-content::-webkit-scrollbar-track {
    background: #ebe0d5;
}

.regulamin-content::-webkit-scrollbar-thumb {
    background: #b49a83;

    border-radius: 10px;
}


/* =========================================
   TYTUŁ
========================================= */

.regulamin-content h2 {
    max-width: 750px;

    margin-bottom: 8px;

    padding-right: 35px;

    font-size: clamp(25px, 3vw, 38px);

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #49362d;
}


/* =========================================
   DATA
========================================= */

.regulamin-date {
    margin-bottom: 15px;

    font-size: 14px;

    color: #927964;
}


/* =========================================
   LINIA
========================================= */

.regulamin-line {
    width: 180px;

    height: 1px;

    margin-bottom: 30px;

    background-color: #927764;
}


/* =========================================
   PARAGRAFY
========================================= */

.regulamin-content p {
    margin-bottom: 11px;

    font-size: 14px;

    line-height: 1.55;

    color: #584238;
}

.regulamin-content strong {
    font-weight: 600;

    color: #503c32;
}


/* =========================================
   DANE FIRMY
========================================= */

.regulamin-company {
    padding-left: 18px;

    line-height: 1.6 !important;
}


/* =========================================
   PARAGRAFY — §
========================================= */

.regulamin-content h3 {
    margin-top: 29px;
    margin-bottom: 12px;

    font-size: 18px;

    font-weight: 400;

    color: #503c32;
}


/* =========================================
   ZAMYKANIE
========================================= */

.modal-close {
    position: absolute;

    top: 10px;
    right: 15px;

    z-index: 2;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    color: #6f5849;

    font-family: Arial, sans-serif;

    font-size: 32px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.modal-close:hover {
    color: #503c32;

    transform: scale(1.1);
}

/* =========================================
   POWRÓT NA GÓRĘ
========================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(80, 60, 50, 0.35);
    border-radius: 50%;

    background-color: rgba(241, 231, 222, 0.95);
    color: #503c32;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    box-shadow: 0 5px 15px rgba(65, 45, 35, 0.18);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.25s ease;
}


/* POKAZANA */

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* HOVER */

.back-to-top:hover {
    background-color: #a9917d;
    color: #fff;

    transform: translateY(-2px);
}




/* =========================================
   RESPONSYWNOŚĆ — 1100 PX
========================================= */

@media (max-width: 1100px) {

    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1.2fr
            1.2fr
            1.5fr
            0.8fr;

        column-gap: 25px;
    }

    .footer-decoration {
        display: none;
    }

}


/* =========================================
   RESPONSYWNOŚĆ — 900 PX
========================================= */

@media (max-width: 900px) {


    .header-container {

        flex-direction: column;

        gap: 25px;

    }


    .navigation {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

        margin-top: 0;

    }


    .schedule-section {

        padding:
            25px 20px 45px;

    }


    .schedule-card {

        min-height: 550px;

    }


    /* =========================
       FOOTER
    ========================== */

    .footer {

        background-image:
            url("../images/footer-bg-tablet.png");

        background-repeat: no-repeat;

        background-position: center;

        background-size: cover;

    }


    .footer-container {

        width: 100%;

        max-width: 1024px;

        padding: 25px 4vw 20px;

        display: grid;

        grid-template-columns:
            1.2fr
            1.2fr
            1.5fr
            0.8fr;

        column-gap: 25px;

        min-height: auto;

    }


    .footer-decoration {

        display: none;

    }


    .footer-contact {

        padding-left: 0;

    }


    .socials {

        height: auto;

        min-height: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 12px;

    }

    .modal-overlay {
        padding: 20px;
    }

    .regulamin-modal {
        width: 100%;
        height: 88vh;

        border-radius: 12px;
    }

    .regulamin-content {
        padding: 40px 40px 45px;
    }

    .regulamin-content p {
        font-size: 14px;
    }

}



/* =========================================
   RESPONSYWNOŚĆ — 600 PX
========================================= */

@media (max-width: 600px) {


    .header {

        padding: 20px;

    }


    .logo {

        width: 210px;

    }


    .navigation {

        gap: 15px;

    }


    .navigation a {

        font-size: 14px;

    }


    .navigation .nav-button {

        font-size: 14px;

    }


    .schedule-section {

        padding:
            20px 15px 40px;

    }


    .schedule-label {

        margin-left: 0;

    }


    .schedule-line {

        margin-left: 0;

    }


    .schedule-header h1 {

        font-size: 42px;

    }


    .schedule-header p {

        font-size: 14px;

    }


    .schedule-card {

        padding: 10px;

        min-height: 500px;

        border-radius: 10px;

    }


    .fitsey-placeholder {

        min-height: 450px;

    }


    .schedule-card iframe {

        min-height: 600px;

    }


    /* =========================
       FOOTER
    ========================== */

    .footer {

        background-image:
            url("../images/footer-bg-mobile.png");

        background-repeat: no-repeat;

        background-position: center;

        background-size: cover;

    }


    .footer-container {

        width: 100%;

        max-width: 100%;

        padding: 30px 25px 22px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-template-areas:
            "navigation information"
            "contact contact"
            "socials socials";

        column-gap: 25px;

        row-gap: 25px;

        min-height: auto;

    }


    .footer-navigation {

        grid-area: navigation;

    }


    .footer-information {

        grid-area: information;

    }


    .footer-contact {

        grid-area: contact;

        padding-left: 0;

    }


    .footer-decoration {

        display: none;

    }


    .socials {

        grid-area: socials;

        width: 100%;

        min-height: auto;

        height: auto;

        margin-top: 0;

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: center;

        gap: 22px;

    }


    .footer-column h3 {

        margin-bottom: 10px;

        font-size: 13px;

    }


    .footer-column a {

        margin-bottom: 7px;

        font-size: 13px;

    }


    .contact-item {

        margin-bottom: 8px;

        font-size: 13px;

    }


    .contact-icon {

        width: 25px;

        min-width: 25px;

    }


    .copyright {

        min-height: 30px;

        padding: 7px 15px;

        font-size: 9px;

        line-height: 1.3;

    }

    .modal-overlay {
        padding: 12px;
    }

    .regulamin-modal {
        width: 100%;
        height: 92vh;

        border-radius: 11px;
    }

    .regulamin-content {
        padding: 38px 20px 35px;
    }

    .regulamin-content h2 {
        font-size: 25px;

        line-height: 1.15;
    }

    .regulamin-date {
        font-size: 12px;
    }

    .regulamin-line {
        width: 130px;

        margin-bottom: 25px;
    }

    .regulamin-content h3 {
        margin-top: 25px;

        font-size: 16px;
    }

    .regulamin-content p {
        margin-bottom: 10px;

        font-size: 13px;

        line-height: 1.55;
    }

    .regulamin-company {
        padding-left: 10px;
    }

    .modal-close {
        top: 7px;
        right: 9px;

        width: 34px;
        height: 34px;

        font-size: 29px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 42px;
        height: 42px;

        font-size: 22px;
    }

}