@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&family=Montserrat:wght@700&family=Poppins&family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body{
    background: linear-gradient(90deg, #ff9f43, #fc7a63);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: center;
}
#banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}
#banner a{
    text-decoration: none;
}
#banner #logo{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#banner #logo img{
    width: auto;
    height: 100%;
    border-radius: 50%;
}
#banner ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
#banner ul li{
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
}
#banner ul li::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 8px;
    background: linear-gradient(60deg, rgb(255, 83, 83), rgb(22, 22, 22) 100px);
    opacity: .5;
    z-index: -1;
    transition: .3s;
}
#banner ul li:hover{
    color: #f1f1f1;
    transform: scale(1.1);
}
#banner ul li:hover::before{
    opacity: 1;
}

#burger_menu{
    width: 40px;
    height: 25px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 50px;
    z-index: 999;
}
#burger_menu .burger_line{
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: all .4s;
}
#burger_menu_conent{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translatey(-100%);
    transition: all .4s;
}
#burger_menu_conent ul{
    width: 100%;
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;;
    padding: 0;
    margin-top: 40px;
}
#burger_menu_conent ul li{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgb(32, 32, 32);
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
#burger_menu_conent ul li:hover{
    color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}


#landing{
    width: 100%;
    height: 70vh;
    background: url(/img/fotobudka-img.jpg) no-repeat center center / cover;;
    position: relative;
    box-shadow: inset 0px -10px 20px 15px rgba(0, 0, 0, .6),
                0px 0px 20px 15px rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}
#landing h1{
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    z-index: 1;
    margin: 0;
    padding: 0;
}
#landing h2{
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    z-index: 1;
    margin: 0;
    padding: 0;
}
#landing::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.6);
}
#content{
    font-size: 6rem;
    width: 80%;
    margin: 40px auto;
}
#content h3{
    font-size: 1.2rem;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, .5);
}
#content p{
    font-size: 1rem;
}
#content ul{
    font-size: 1rem;
    text-align: left;
    list-style: none;
    padding: 0;
}
li::before {
    content: '✔';
    margin-right: 0.5em;
    color: rgb(3, 126, 3);
}
#pakiety{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
}
.pakiet{
    flex: 1 1 300px;
    min-height: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
    transition: .3s;
    max-width: 620px;
}
.pakiet:hover{
    transform: scale(1.02);
    background: rgb(255, 229, 144);
}
.pakiet h2{
    font-size: 1.5rem;
    margin: 0 0 0 0;
    padding: 0;
}
.pakiet p{
    font-size: 1rem;
    font-weight: 500;
}
.pakiet ul{
    font-size: 1rem;
    font-weight: 500;
    list-style: none;
    text-align: left;
    padding: 0;
    width: 100%;
}
a{
    text-decoration: none;
    color: #000;

}
#ciekawostka{
    width: 100%;
    padding: 50px 45px;
    background: #fff;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, .5);
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 8px;
}
#ciekawostka h2{
    font-size: 2.5rem;
    margin: -30px 0 20px 0;
}
#ciekawostka h3{
    box-shadow: 0 0 0 0;
    margin: 0;
    padding: 0;
}
#oferta_obejmuje{
    text-align: left;
    display: flex;
    flex-direction: column;
}
#oferta_obejmuje h3{
    width: 100%;
    box-shadow: 0 0 0 0;
    margin: 0;
}
#oferta_obejmuje ul{
    font-size: 1rem;
    font-weight: 500;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 1rem;
    width: 100%;

}
@media screen and (max-width: 1024px){
    #burger_menu{
        display: flex;
    }
    #banner ul{
        display: none;
    }
}