/* Nawigacja */
.topnav {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9); /* Półprzezroczyste tło */
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;



}

.topnav a {
    float: right;
    display: grid;
    place-items: center;
    height: 80px;
    color: #f2f2f2;
    padding: 16px 16px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    margin-right: 20px;

}

.topnav .icon {
    display: none;
    font-size: 50px;
}

.topnav .logo {
    height: 80px;
    margin-right: 20px;
    position: absolute;
    left: 20px;
    z-index: 1001; /* Ustawiamy wyższy z-index, aby logo było na wierzchu */

}

/* Responsywność */
@media screen and (max-width: 1105px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
        line-height: 40px;
        
    }

    .topnav.responsive {
        position: fixed;
        width: 100%;
        z-index: 1000;

    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
        padding: 16px 16px;

    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        margin-left: 20px;

    }
    .responsive_guwno {
        margin-top: 80px;
    }
}

/* Styl dla obrazka */
img {
    transition: all 0.3s ease; /* Opcjonalnie: dodaje efekt przejścia */
}

/* Zmiana wyglądu kursora po najechaniu na obrazek */
img:hover {
    cursor: pointer;
}