/* =========================================
   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-button {
    color: #fff;

    background-color: var(--brown-button);

    box-shadow:
        0 4px 10px rgba(80, 60, 50, 0.16);

    transform: none;
}

.navigation a.active-button:hover {
    color: #fff;

    background-color: #806a58;

    box-shadow:
        0 6px 14px rgba(80, 60, 50, 0.22);

    transform: translateY(-1px);
}


/* =========================================
   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;
}


/* =========================================
   SEKCJA ZAPISÓW
========================================= */

.signup-section {
    width: 100%;

    padding: 55px 4vw 70px;
}

.signup-container {
    width: 100%;
    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 30px;
}


/* =========================================
   KAFEL ZAPISU
========================================= */

.signup-card {
    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #d8c9bc;

    box-shadow:
        0 18px 32px rgba(65, 45, 35, 0.16);

    isolation: isolate;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   ZDJĘCIE
========================================= */

.signup-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;

    transition:
        transform 0.7s ease;
}


/* =========================================
   WARSTWA NA ZDJĘCIU
========================================= */

.signup-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            to bottom,
            rgba(50, 35, 27, 0.08),
            rgba(50, 35, 27, 0.48)
        );

    transition:
        background 0.35s ease;
}


/* =========================================
   EFEKT HOVER KAFELKA
========================================= */

.signup-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 40px rgba(65, 45, 35, 0.23);
}

.signup-card:hover img {
    transform: scale(1.06);
}

.signup-card:hover .signup-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(50, 35, 27, 0.12),
            rgba(50, 35, 27, 0.58)
        );
}


/* =========================================
   ZAWARTOŚĆ KAFELKA
========================================= */

.signup-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    padding: 30px;
}


/* =========================================
   MAŁY TEKST
========================================= */

.signup-small {
    margin-bottom: 12px;

    font-size: 14px;

    letter-spacing: 2px;

    text-shadow:
        0 2px 8px rgba(40, 25, 18, 0.35);
}


/* =========================================
   GŁÓWNY NAPIS
========================================= */

.signup-content h2 {
    margin: 0;

    font-size: 48px;
    font-weight: 400;

    letter-spacing: 1px;

    text-shadow:
        0 4px 14px rgba(40, 25, 18, 0.4);
}


/* =========================================
   STRZAŁKA
========================================= */

.signup-arrow {
    margin-top: 22px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 50%;

    font-size: 25px;

    line-height: 1;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.signup-card:hover .signup-arrow {
    background-color: rgba(255, 255, 255, 0.18);

    transform: translateX(5px);
}


/* =========================================
   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
========================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 30px;
    }

    .navigation a {
        font-size: 18px;
    }

    .navigation .nav-button {
        font-size: 18px;
    }

    .signup-container {
        gap: 20px;
    }

    .signup-card {
        height: 500px;
    }

    .signup-content h2 {
        font-size: 40px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1.2fr
            1.2fr
            1.5fr
            0.8fr;

        column-gap: 25px;
    }

    .footer-decoration {
        display: none;
    }

}


/* =========================================
   RESPONSYWNOŚĆ — TABLET / MAŁY LAPTOP
========================================= */

@media (max-width: 900px) {

    .header-container {
        flex-direction: column;

        gap: 25px;
    }

    .navigation {
        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

        margin-top: 0;
    }


    /* ZAPIS */

    .signup-section {
        padding: 40px 5vw 55px;
    }

    .signup-container {
        grid-template-columns: 1fr;
    }

    .signup-card {
        height: 450px;
    }


    /* 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ŚĆ — TELEFON
========================================= */

@media (max-width: 600px) {

    .header {
        padding: 20px;
    }

    .logo {
        width: 210px;
    }

    .navigation {
        gap: 15px;
    }

    .navigation a {
        font-size: 14px;
    }

    .navigation .nav-button {
        font-size: 14px;
    }


    /* ZAPIS */

    .signup-section {
        padding: 25px 15px 40px;
    }

    .signup-container {
        gap: 20px;
    }

    .signup-card {
        height: 360px;

        border-radius: 15px;
    }

    .signup-content {
        padding: 20px;
    }

    .signup-small {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .signup-content h2 {
        font-size: 30px;
    }

    .signup-arrow {
        width: 42px;
        height: 42px;

        font-size: 21px;
    }


    /* 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;
    }

}