/* =========================================
   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);
}


/* =========================================
   ZAJĘCIA
========================================= */

.classes-section {
    width: 100%;

    padding: 35px 4vw 55px;
}

.classes-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    grid-template-rows:
        auto auto;

    column-gap: 20px;
    row-gap: 20px;

    align-items: stretch;
}


/* =========================================
   KAFELKI ZE ZDJĘCIAMI
========================================= */

.class-image {
    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 11px;

    box-shadow:
        0 16px 25px rgba(65, 45, 35, 0.15);
}

.class-image img {
    width: 100%;
    height: 100%;

    display: block;

   
}


/* =========================================
   KAFELKI Z TEKSTEM
========================================= */



/* =========================================
   EFEKT HOVER — TYLKO TEKST
========================================= */

.class-content:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 32px rgba(65, 45, 35, 0.22);
}



/* =========================================
   OPIS
========================================= */

.class-content {
    min-height: 190px;

    width: 88%;

    margin-left: 6%;

    padding: 15px 20px;

    background-color: #f1e7de;

    border: 1px solid rgba(110, 88, 73, 0.2);

    border-radius: 45px;

    box-shadow:
        0 16px 25px rgba(65, 45, 35, 0.15);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* =========================================
   CZAS ZAJĘĆ
========================================= */

.class-duration {
    margin-top: auto;

    padding-top: 18px;

    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 14px;

    color: #8f7561;
}

.class-duration img {
    width: 18px;
    height: 18px;

    display: block;

    object-fit: contain;
}

/* =========================================
   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);
}


/* =========================================
   RESPONSYWNOŚĆ — TABLET / MAŁY LAPTOP
========================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 30px;
    }

    .navigation a {
        font-size: 18px;
    }

    .navigation .nav-button {
        font-size: 18px;
    }

}


/* =========================================
   RESPONSYWNOŚĆ — TABLET
========================================= */

@media (max-width: 900px) {

    /* =========================
       HEADER
    ========================== */

    .header {
        padding: 24px 4vw 15px;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
        margin-top: 0;
    }


    /* =========================
       ZAJĘCIA
    ========================== */

    .classes-section {
        padding: 25px 4vw 50px;
    }

    .classes-container {
        width: 100%;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        column-gap: 25px;
        row-gap: 25px;

        align-items: start;
    }


    /* =========================
       KOLEJNOŚĆ ELEMENTÓW
       
       Zdjęcie → tekst
       Zdjęcie → tekst
       itd.
    ========================== */

    .class-image:nth-child(1) {
        order: 1;
    }

    .class-content:nth-child(6) {
        order: 2;
    }

    .class-image:nth-child(2) {
        order: 3;
    }

    .class-content:nth-child(7) {
        order: 4;
    }

    .class-image:nth-child(3) {
        order: 5;
    }

    .class-content:nth-child(8) {
        order: 6;
    }

    .class-image:nth-child(4) {
        order: 7;
    }

    .class-content:nth-child(9) {
        order: 8;
    }

    .class-image:nth-child(5) {
        order: 9;
    }

    .class-content:nth-child(10) {
        order: 10;
    }


    /* =========================
       ZDJĘCIA
    ========================== */

    .class-image {
        width: 100%;

        height: auto;

        aspect-ratio: auto;

        overflow: hidden;
    }

    .class-image img {
        width: 100%;
        height: auto;

        display: block;
    }


    /* =========================
       TEKST
    ========================== */

    .class-content {
        width: 100%;

        margin-left: 0;

        min-height: 190px;

        padding: 18px 20px;
    }


    /* =========================
       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;
    }


    /* =========================
       DEKORACJA — WYŁĄCZONA
    ========================== */

    .footer-decoration {
        display: none;
    }


    /* =========================
       KONTAKT
    ========================== */

    .footer-contact {
        padding-left: 0;
    }


    /* =========================
       SOCIAL MEDIA
    ========================== */

    .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ŚĆ — TELEFON
========================================= */

@media (max-width: 600px) {

    /* =========================
       HEADER
    ========================== */

    .header {
        padding: 20px 15px 15px;
    }

    .header-container {
        gap: 18px;
    }

    .logo {
        width: min(220px, 75vw);
    }

    .navigation {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 10px 18px;

        margin-top: 0;
    }

    .navigation a {
        font-size: 14px;
        padding: 5px 0;
    }

    .navigation .nav-button {
        padding: 8px 13px;
        font-size: 14px;
    }


    /* =========================
       ZAJĘCIA
    ========================== */

    .classes-section {
        padding: 15px 15px 40px;
    }

    .classes-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* =========================
       KOLEJNOŚĆ
       
       Nadal:
       zdjęcie → tekst
    ========================== */

    .class-image:nth-child(1) {
        order: 1;
    }

    .class-content:nth-child(6) {
        order: 2;
    }

    .class-image:nth-child(2) {
        order: 3;
    }

    .class-content:nth-child(7) {
        order: 4;
    }

    .class-image:nth-child(3) {
        order: 5;
    }

    .class-content:nth-child(8) {
        order: 6;
    }

    .class-image:nth-child(4) {
        order: 7;
    }

    .class-content:nth-child(9) {
        order: 8;
    }

    .class-image:nth-child(5) {
        order: 9;
    }

    .class-content:nth-child(10) {
        order: 10;
    }


    /* =========================
       ZDJĘCIA
    ========================== */

    .class-image {
        width: 100%;

        height: auto;

        aspect-ratio: auto;

        overflow: hidden;
    }

    .class-image img {
        width: 100%;
        height: auto;

        display: block;
    }


    /* =========================
       TEKST
    ========================== */

    .class-content {
        width: 100%;

        min-height: auto;

        margin-left: 0;

        padding: 20px;
    }


    /* =========================
       FOOTER
    ========================== */

    .footer {
        background-image: url("../images/footer-bg-mobile.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }


    /* =========================
       GŁÓWNY UKŁAD FOOTERA
    ========================== */

    .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;
    }


    /* =========================
       NAWIGACJA
    ========================== */

    .footer-navigation {
        grid-area: navigation;
    }


    /* =========================
       INFORMACJE
    ========================== */

    .footer-information {
        grid-area: information;
    }


    /* =========================
       KONTAKT
    ========================== */

    .footer-contact {
        grid-area: contact;

        padding-left: 0;
    }


    /* =========================
       DEKORACJA
    ========================== */

    .footer-decoration {
        display: none;
    }


    /* =========================
       SOCIAL MEDIA
    ========================== */

    .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;
    }


    /* =========================
       ELEMENTY FOOTERA
    ========================== */

    .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
    ========================== */

    .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;
    }

}