
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/* MENU (Komputer) */
@media (min-width: 769px) {
    aside {
        width: 250px;
        background-color: #ffffff;
        padding: 20px;
        position: fixed;
        height: 105vh;
        overflow-y: auto;
        border-right: none;
        border-bottom: 1px solid #999;
    }

    .logo img {
        width: 240px;
        height: auto;
        margin-bottom: 40px;
        margin-top: 50px;
        margin-left: 8px; /* Odsunięcie logo od lewej o 0.5 cm */
    }

    ol {
        list-style: none;
        margin-top: 10px; /* Menu bliżej logo */
        padding-left: 28px; /* Odsunięcie menu od lewej o 0.5 cm */
    }

    ol li {
        padding: 4px 0;
        font-size: 18px;
        text-align: left;
    }

    ol li a {
        text-decoration: none;
        color: #4a4a4a;
    }

    ol li.kontakt {
        color: #4a4a4a;
        margin-bottom: 40px; /* Odsunięcie kreski o 3 cm pod wyrazem kontakt */
    }

    .socials {
        margin-top: 5px; /* Ikonki zaraz pod kreską */
        display: flex;
        justify-content: center;
        padding-left: 8px; /* Odsunięcie ikon od lewej o 0.5 cm */
    }

    .socials .iconss {
        display: flex;
        gap: 32px; /* Większe odstępy między ikonami */
    }

    .socials .iconss ion-icon {
        font-size: 28px; /* Pomniejszone ikonki */
        color: #4a4a4a;
    }
}

/* FILMY (Komputer) */
@media (min-width: 769px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: calc(100vw - 250px);
        margin-left: 250px;
    }

    .video-wrapper {
        position: relative;
        overflow: hidden;
        margin-bottom: 1px;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 90vh;
        border: none;
    }
}

/* RESPONSYWNOŚĆ (Telefon) – BEZ ZMIAN */
@media (max-width: 768px) {
    aside {
        width: 100%;
        height: 105px;
        position: static;
        padding: 5px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        border-bottom: 1px solid #999;
        overflow: hidden;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

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

    ol {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        list-style-type: none;
    }

    ol li {
        padding: 0;
        font-size: 10px;
        text-align: center;
        margin: 0;
    }

    ol li a {
        text-decoration: none !important;
        color: #4a4a4a !important;
    }

    ol li.kontakt {
        color: #4a4a4a;
        border-bottom: none;
    }

    hr {
        display: none;
    }

    .socials {
        order: 3;
        margin-left: auto;
    }

    .socials .iconss {
        display: flex;
        gap: 10px;
    }

    .socials .iconss ion-icon {
        font-size: 22px;
        color: #4a4a4a !important;
    }

    .video-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        width: 100vw;
    }

    .video-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 1px !important;
    }

    .video-wrapper iframe {
        width: 100vw;
        height: 90vh;
        margin: 0 !important;
        padding: 0 !important;
    }
}
