/* =========================================
   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);
}


/* =========================================
   KONTAKT — GŁÓWNA SEKCJA
========================================= */

.contact-section {
    width: 100%;

    padding: 45px 4vw 65px;
}

.contact-container {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 65px;

    align-items: stretch;
}


/* =========================================
   LEWA STRONA — INFORMACJE
========================================= */

.contact-information {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 20px 10px 20px 20px;
}


/* =========================================
   POJEDYNCZY BLOK KONTAKTOWY
========================================= */

.contact-block {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 32px;
}


/* =========================================
   IKONY
========================================= */

.contact-icon {
    width: 52px;
    min-width: 52px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #e9ddd2;

    color: #8f7561;

    box-shadow:
        0 8px 18px rgba(65, 45, 35, 0.10);
}

.contact-icon span {
    font-size: 25px;

    line-height: 1;
}


/* =========================================
   TEKST KONTAKTOWY
========================================= */

.contact-text {
    padding-top: 2px;
}

.contact-text h3 {
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 1px;

    color: #503c32;
}

.contact-text p,
.contact-text a {
    font-size: 17px;

    line-height: 1.5;

    color: #6c5749;
}

.contact-text a {
    transition:
        color 0.2s ease,
        text-shadow 0.2s ease;
}

.contact-text a:hover {
    color: #8f7561;

    text-shadow:
        0 2px 6px rgba(80, 60, 50, 0.16);
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.contact-socials {
    margin-top: 10px;

    padding-top: 25px;

    border-top: 1px solid rgba(120, 94, 76, 0.25);

    width: 85%;
}

.contact-socials h3 {
    margin-bottom: 15px;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 1px;

    color: #503c32;
}


/* =========================================
   LINKI SOCIAL MEDIA
========================================= */

.social-links {
    display: flex;

    align-items: center;

    gap: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #e9ddd2;

    box-shadow:
        0 7px 16px rgba(65, 45, 35, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-4px);

    background-color: #dfd0c3;

    box-shadow:
        0 11px 20px rgba(65, 45, 35, 0.16);
}

.social-links img {
    width: 20px;
    height: 20px;

    object-fit: contain;
}


/* =========================================
   MAPA
========================================= */

.contact-map {
    width: 100%;

    min-height: 500px;

    overflow: hidden;

    border-radius: 20px;

    background-color: #e8ddd3;

    box-shadow:
        0 18px 30px rgba(65, 45, 35, 0.16);
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 500px;

    display: block;

    border: 0;
}


/* =========================================
   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
========================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding-left: 20px;
}


/* =========================================
   ELEMENT KONTAKTOWY FOOTERA
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    margin-bottom: 6px;

    font-size: 13px;

    line-height: 1.25;

    color: #584238;
}


/* =========================================
   IKONY FOOTERA
========================================= */

.contact-item .contact-icon {
    width: 25px;
    min-width: 25px;

    height: auto;

    margin-right: 7px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: none;

    box-shadow: none;

    border-radius: 0;

    color: #8f7561;
}

.contact-item .contact-icon span {
    font-size: 18px;
}


/* =========================================
   SOCIAL MEDIA FOOTER
========================================= */

.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ŚĆ — 1100 PX
========================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 30px;
    }

    .navigation a {
        font-size: 18px;
    }

    .navigation .nav-button {
        font-size: 18px;
    }

    .contact-container {
        grid-template-columns:
            1fr 1.2fr;

        gap: 40px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1.2fr
            1.2fr
            1.5fr
            0.8fr;

        column-gap: 25px;
    }

    .footer-decoration {
        display: none;
    }

}


/* =========================================
   RESPONSYWNOŚĆ — MAŁY LAPTOP / TABLET
========================================= */

@media (max-width: 900px) {

    .header-container {
        flex-direction: column;

        gap: 25px;
    }

    .navigation {
        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

        margin-top: 0;
    }


    /* KONTAKT */

    .contact-section {
        padding: 35px 5vw 55px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-information {
        padding: 10px 20px;
    }

    .contact-map {
        min-height: 450px;
    }

    .contact-map iframe {
        min-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;
    }


    /* KONTAKT */

    .contact-section {
        padding: 25px 15px 40px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-information {
        padding: 5px 10px;
    }

    .contact-block {
        gap: 15px;

        margin-bottom: 25px;
    }

    .contact-icon {
        width: 45px;
        min-width: 45px;

        height: 45px;
    }

    .contact-icon span {
        font-size: 22px;
    }

    .contact-text h3 {
        font-size: 13px;
    }

    .contact-text p,
    .contact-text a {
        font-size: 15px;
    }

    .contact-socials {
        width: 100%;
    }

    .contact-map {
        min-height: 350px;

        border-radius: 15px;
    }

    .contact-map iframe {
        min-height: 350px;
    }


    /* 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;
    }

}