* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#menu-toggle {
    display: none;
}

#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(123, 110, 110);
    color: white;
    padding: 15px 10px;
    height: 60px;
}

#logo {
    width: 80px;
    height: 80px;
}

.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger > span {
    background-color: white;
    width: 30px;
    height: 4px;
    display: block;
    border-radius: 20%;
}
.nav-links a {
    text-decoration: none;
    color: white;
    display: block;
    width: 100%;
    font-size: 1.5rem;
}
.nav-links li a:hover {
    cursor: pointer;
    text-decoration: underline;
    color:antiquewhite;
    transition: 0.3s ease;
}
.nav-links li a:active {
    color:rgb(238, 214, 183);
    transition: 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 60px;
    left: -150%;
    height: calc(100vh - 60px);
    width: 100%;
    background-color: rgba(123, 110, 110, 0.99);
    transition: all 0.3s;
}

#menu-toggle:checked ~ .nav-links {left: 0;}
#menu-toggle:checked ~ label span:first-child {display: none;}
#menu-toggle:checked ~ label span:nth-child(2){rotate: -45deg;}
#menu-toggle:checked ~ label span:nth-child(3){rotate: +45deg; margin-top: -9px;}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        background-color: transparent;
    }
    .nav-links li{margin: 0 20px;}
    .nav-links li a{font-size: 1.2rem;}
}

.nasze_kawy {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 30px 20px;
}
.nasze_kawy h1 {
    display: block;
    width: 100%;
    font-size: 1.5rem;
}
.nasze_kawy {     
    justify-content: center;  
    gap: 20px;
}

.nasze_kawy .kawy {
    width: 450px;
    background-color: rgba(123, 110, 110, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 20px 10px;
}
.nasze_kawy .kawy h2 {
    padding: 20px;
}
.nasze_kawy .kawy p {
    padding-bottom: 20px;
}

.nasze_kawy .kawy img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .nasze_kawy .kawy {
        width: 90%;
    }
}

.hero {
    background-image: url('img/kawiarnia.jpg'); 
    background-size: cover;      
    background-position: center;  
    width: 100vw;               
    height: calc(100vh - 65px);        
    display: flex;            
    justify-content: center;    
    align-items: center;       
}
.overlay {
    color: white;
    background-color: rgba(123, 110, 110, 0.9);
    padding: 35px;            
    border-radius: 8px;      
    text-align: center;     
}
.overlay h1 {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
}
.overlay p {
    margin: 0;
    font-size: 1.2rem;
}