body {
    margin: 0;
    font-family: 'Times New Roman' sans-serif;
}

#menu-toggle {
    display: none;

}

#main-nav {
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
    background-color: #333;
    color: white;
}

#main-nav img {
    max-height: 80px;
    width: 150px;
    display: block;
}

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

.hamburger > span {
    background-color: white;
    width: 25px;
    height: 3px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 80px;
    left: -150%;
    height: calc(100vh - 65px);
    background-color: #444;
    padding: 20px 15px;
    box-sizing: border-box;
    width: 100vw;
    transition: all 0.3s;

}
.nav-links li {
    margin: 20px 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    width: 100%;
}

#menu-toggle:checked ~ .nav-links {left: 0}
#menu-toggle:checked ~ label span:first-child {display:none}
#menu-toggle:checked ~ label span:nth-child() {rotate: -45deg;}
#menu-toggle:checked ~ label span:nth-child() {rotate: 45deg;}



/*Normalna wersja strony na komputery*/
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    .nav-links {
        height: auto;
        width: auto;
        flex-direction: row;
        position: static;
        background-color: transparent;
    }
    .nav-links li {   margin: 0 20px;}
    .nav-links li a { font-size: 1.2rem;}
    
    }

 #tło {
    
    background-image: url(default_page/css/main.jpg);
    min-height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    #tło {
        min-height: 180px;
        aspect-ratio: 16/9;
    }
}

.content {
    
    height: 150px;
    width: 300px;
    background-color: rgba(195, 247, 92, 0.3);
    border-radius: 10px;
    display: flex;  
    flex-direction: column;
    align-items:center;
    padding: 25px;
    font-family: 'Times New Roman', Times, serif;    
    color: #581515;
    margin-left: 100px;
    
}

.button{
    background-color: #581515;
    color: white;
    padding: 12px;
    border-radius: 7px;
    text-decoration: none;
    cursor: pointer;
    border: none;

  }

  h1{
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    
  }

  .kawa{
    font-style: italic;
    width: 100%;
    max-width: 420px;
    background-color: #fff;
    color: #222;
    padding: 32px 15px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    margin: 24px auto;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
  }


  .kawa img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: #f6f6f6;
    border: 1px solid #eee;
    transition: box-shadow 0.2s;
  }


  @media (max-width: 600px) {
    .kawa {
        max-width: 95vw;
        padding: 12px 4vw;
        font-size: 0.95rem;
    }
    .kawa img {
        max-width: 90vw;
    }
  }
  #kontakt {
    font-size: 10px;
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
#wybór {
    display: flex;
    gap: 10px;
}
@media (max-width: 768px) {
    #wybór {
        flex-direction: column;
        align-items: center; 
    }
}
