/* ================================
   RESET
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #202c43;
    background: #ffffff;

    font-size: 18px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* ================================
   GLOBAL
================================ */

.site-container {
    width: 100%;
    max-width: 1540px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;
}


/* ================================
   HEADER
================================ */

.site-header {
    position: relative;

    background: #ffffff;
}

.header-inner {
    min-height: 145px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-top: 28px;
}


/* ================================
   LOGO
================================ */

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    display: block;

    width: 249px;
    height: 54px;

    object-fit: contain;
}


/* ================================
   TOP NAVIGATION
================================ */

.top-navigation {
    display: flex;

    align-items: center;

    gap: 34px;

    font-size: 18px;
    font-weight: 400;
}

.top-navigation a {
    transition: opacity .2s ease;
}

.top-navigation a:hover {
    opacity: .65;
}


/* mobilna sekcja "Ważne informacje" */
.mobile-important {
    display: none;
}


/* ================================
   MAIN
================================ */

.site-main {
    padding-top: 42px;
    padding-bottom: 90px;
}

.layout {
    display: grid;

    grid-template-columns: 380px minmax(0, 1fr);

    gap: 70px;
}


/* ================================
   SIDEBAR
================================ */

.sidebar {
    min-width: 0;
}

.sidebar-nav {
    font-size: 17px;
}

.sidebar-nav > a,
.sidebar-group-title,
.sidebar-submenu a {
    border-bottom: 1px solid #e9edf2;
}

.sidebar-nav > a {
    display: block;

    padding: 14px 0;
}

.sidebar-group-title {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 0;

    cursor: default;
}

.sidebar-group-title span {
    padding-right: 18px;
}

.sidebar-submenu {
    padding-left: 20px;
}

.sidebar-submenu a {
    display: block;

    padding: 13px 0;

    line-height: 1.45;
}


/* ================================
   CONTENT
================================ */

.content {
    min-width: 0;
}

.content-inner {
    max-width: 940px;
}

.content p {
    margin-top: 0;
    margin-bottom: 34px;
}

.content h1,
.content h2,
.content h3 {
    color: #202c43;

    font-weight: 500;
}

.content h1 {
    margin-top: 0;

    font-size: 38px;
}

.content h2 {
    font-size: 30px;
}

.content h3 {
    margin-top: 38px;
    margin-bottom: 5px;

    font-size: 20px;
}

.content ul {
    margin-top: 0;

    padding-left: 24px;
}


/* ================================
   FOOTER
================================ */

.site-footer {
    background: #e4e5e8;

    padding-top: 64px;
    padding-bottom: 54px;
}

.footer-inner {
    max-width: 1480px;
}

.footer-logo {
    display: block;

    width: 249px;
    height: 54px;

    margin-bottom: 26px;

    object-fit: contain;
}

.footer-inner p {
    max-width: 1400px;

    margin: 0 0 26px;

    font-size: 18px;
    line-height: 1.55;
}

.footer-contact {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 18px;
}


/* ================================
   MOBILE MENU BUTTON
================================ */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #202c43;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {

    .layout {
        grid-template-columns: 280px minmax(0, 1fr);

        gap: 40px;
    }

    .top-navigation {
        gap: 20px;

        font-size: 16px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 800px) {

    body {
        font-size: 16px;
    }


    /* ============================
       GLOBAL
    ============================ */

    .site-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* ============================
       HEADER
    ============================ */

    .header-inner {
        min-height: 95px;

        align-items: center;

        padding-top: 0;
    }


    /* ============================
       LOGO
    ============================ */

    .logo img {
        width: 249px;
        height: 54px;
    }


    /* ============================
       HAMBURGER
    ============================ */

    .mobile-menu-toggle {
        display: block;

        flex-shrink: 0;
    }


    /* ============================
       TOP MENU
    ============================ */

    .top-navigation {
        position: absolute;

        top: 95px;
        left: 0;
        right: 0;

        z-index: 1000;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px 20px 20px;

        background: #ffffff;

        border-top: 1px solid #e9edf2;

        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    }

    .top-navigation.is-open {
        display: flex;
    }

    .top-navigation > a {
        display: block;

        padding: 14px 0;

        border-bottom: 1px solid #e9edf2;

        font-size: 16px;
    }


    /* ============================
       UKRYCIE DESKTOPOWEGO LINKU
       WAŻNE INFORMACJE
    ============================ */

    .desktop-important-link {
        display: none !important;
    }


    /* ============================
       MOBILE IMPORTANT MENU
    ============================ */

    .mobile-important {
        display: block;

        border-bottom: 1px solid #e9edf2;
    }

    .mobile-important-toggle {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        padding: 14px 0;

        border: 0;

        background: transparent;

        color: #202c43;

        font-family: inherit;
        font-size: 16px;
        font-weight: 400;

        text-align: left;

        cursor: pointer;
    }

    .mobile-important-arrow {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        font-size: 20px;
        line-height: 1;

        transition: transform .25s ease;
    }

    .mobile-important.is-open .mobile-important-arrow {
        transform: rotate(180deg);
    }


    /* submenu domyślnie zamknięte */

    .mobile-important-menu {
        display: none;

        padding: 0 0 10px 14px;
    }

    .mobile-important.is-open .mobile-important-menu {
        display: block;
    }

    .mobile-important-menu a {
        display: block;

        padding: 11px 0;

        border-bottom: 1px solid #eef1f4;

        font-size: 15px;
        line-height: 1.4;
    }

    .mobile-important-menu a:last-child {
        border-bottom: 0;
    }


    /* ============================
       MAIN
    ============================ */

    .site-main {
        padding-top: 25px;
        padding-bottom: 55px;
    }

    .layout {
        display: block;
    }


    /* ============================
       SIDEBAR
       całkowicie ukryty na mobile
    ============================ */

    .sidebar {
        display: none;
    }


    /* ============================
       CONTENT
    ============================ */

    .content {
        width: 100%;
    }

    .content-inner {
        max-width: none;
    }

    .content p {
        margin-bottom: 25px;
    }

    .content h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .content h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .content h3 {
        font-size: 19px;
    }


    /* ============================
       FOOTER
    ============================ */

    .site-footer {
        padding-top: 44px;
        padding-bottom: 40px;
    }

    .footer-logo {
        width: 249px;
        height: 54px;

        margin-bottom: 25px;
    }

    .footer-inner p {
        font-size: 16px;
    }

    .footer-contact {
        font-size: 16px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        min-height: 88px;
    }

    .logo img {
        width: 200px;
        height: auto;
    }

    .top-navigation {
        top: 88px;

        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-logo {
        width: 200px;
        height: auto;
    }

    .footer-contact {
        flex-wrap: wrap;
    }

}

/* ================================
   CONTENT LINKS / BUTTONS
================================ */

.reservation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    background: #2f6eb5;
    color: #ffffff;

    border-radius: 2px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;

    transition:
        background-color .2s ease,
        opacity .2s ease;
}

.reservation-button:hover {
    background: #245c9b;
    opacity: 1;
}

.content-link {
    color: #2f6eb5;
    text-decoration: underline;
}

.content-link:hover {
    text-decoration: none;
}
/* ================================
   DOWNLOAD LINKS
================================ */

.download-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin-top: -10px;
    margin-bottom: 30px;
}

.download-links a {
    color: #1769aa;
    text-decoration: underline;

    line-height: 1.6;
}

.download-links a:hover {
    text-decoration: none;
}

.company-details {
    margin-top: 25px;
}

.company-details p {
    margin-bottom: 22px;
}
.content-numbered-list,
.service-fees {
    padding-left: 24px;
}

.content-numbered-list li,
.service-fees li {
    margin-bottom: 12px;
}
.uppercase-text {
    text-transform: uppercase;
}