* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@font-face{
    font-family: Quentin;
    src: url(fontes/Quentin.ttf);
}

@font-face{
    font-family: Bungee;
    src: url(fontes/Bungee-Regular.ttf);
}

body{
    padding-top: 78px;
}

#nav-bar {
    display: flex;
    align-items: center;
}

.navbar{
    padding: 10px 20px;
    background-color: #121619;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: fixed;
    top: 0%;
    z-index: 1000;
    width: 100%;
}

.navbar li {

    padding: 10px 20px;
}

.navbar a{

    color: #FFFFFF !important;
    
}

.navbar a:hover {
    color: #FD9D3E !important;
    transition: 0.3s;
}

.btnn{

     border: 4px groove #FFFFFF;
    color: #FFFFFF ;
     text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #FD9D3E;
    padding: 10px 20px;

}

.navbar-toggler {
    background-color: #FD9D3E;
}

.navbar-toggler-icon {
    filter: invert(1); 
}



header{
    width: 100%;
     min-height: 100vh;
    background-image: url(images/chef-bg-11.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin-top: 78px; */
}



.heading-box h1{

    margin-top: 53px;
    font-family: Bungee;
    text-align: center;
    letter-spacing: 3px; 
    font-size: 4.3rem;
    color: #FFFFFF;
}


.heading-box p{

    font-family: Quentin;
    text-align: center;
    letter-spacing: 1px; 
    font-weight: 700;
    font-size: 2rem;
    color: #FD9D3E;
   


}

.heading-box span{

    color: #FD9D3E;
    margin-top: 53px;
    font-family: Bungee;
    text-align: center;
    letter-spacing: 3px; 
    font-size: 4.2rem;
     

}

.images-box {
    position: relative;
    width: 100%;
    height: 500px;
}

.box1 {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.box1 img {
     
    /* width: auto;
    max-width: none; */
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.5));
}

.box2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.leave-box1 {
    position: absolute;
    top: 10%;
    right: 15%;
}

.leave-box2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

.leave-box3 {
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.leave-box4 {
    position: absolute;
    top: 20%;
    left: 20%;
}


.leave-box1 img,
.leave-box4 img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 20px;
    }

}



.main-box{
    width: 100%;
    padding: 100px 10px;
    position: relative;
    background-color: #FD9D3E;
    
}


.yellow-image,
.yellow-image-2 {
    position: absolute;
    left: 0;
    width: 100%;
}

.yellow-image {
    top: 0;
    transform: translateY(-60%);
}

.yellow-image-2 {
    bottom: 0;
    transform: translateY(60%);
}


.yellow-image img{
    width: 100%;
}


.yellow-image-2 img{
    width: 100%;
}


.box{
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0px;
    text-align: center;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.box img{
    max-width: 210px;
    width: 100%;
    transition: transform 0.4s ease;
}

.box:hover img{
    transform: translateY(-10px);
}

.box:hover{
    transform: translateY(-5px);
}


.box h2{
    font-family: Bungee;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #121619;
    font-size: 1.4rem;
    margin-top: 20px;
}

.box p{
    color: #121619;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.6;
    letter-spacing: 1px;
}


@media (max-width: 768px) {

   
    body{
        padding-top: 70px;
    }

    header {

        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .heading-box h1 {
        font-size: 2rem;
        margin-top: 20px;
    }

    .heading-box span {
        font-size: 2rem;
    }

    .heading-box p {
        font-size: 1.2rem;
    }

    .images-box {
        height: 300px;
        margin-top: 30px;
    }


    .box1 {
        position: absolute;
        bottom: -26px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .box1 img {
        width: 400px;
        max-width: none;
    }


    .leave-box1 {
        top: 5%;
        right: 5%;
        transform: scale(0.4);
    }

    .leave-box4 {
        top: 5%;
        left: 5%;
        transform: scale(0.4);
    }

    
    .leave-box2,
    .leave-box3 {
        display: none;
    }

    .leave-box1 img,
    .leave-box4 img {
        opacity: 0.7;
    }


    .main-box{
       
        padding: 80px 10px;
       
    
    }

    .box{
        padding: 30px 20px;
    }

    .box img{
        max-width: 160px;
    }

    .box h2{
        font-size: 1.3rem;
    }

    .box p{
        font-size: 0.85rem;
        line-height: 1.5;
    }

     .yellow-image {
        transform: translateY(-80%);
    }

  
}



.speciality-box{

    width: 100%;
    padding: 100px 10px;
    background-color: #FFFFFF;
   

}


.speciality-Card{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 10px;
    text-align: center;
    /* height: 100%; */
    cursor: pointer;
    

}

.speciality-Card h2{
    font-family: Bungee;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #121619;
    font-size: 1.4rem;
    margin-top: 60px;
    transition: 0.3s;
}

.speciality-Card-image{
    
    /* width: 100%;
    height: 100%; */
    position: relative;
    width: fit-content;
    
}

.speciality-Card-image img{
    max-width: 100%;
    width: 300px;
   display: block;
   transition: transform 0.4s ease;
    
}


.speciality-Card:hover img{

     transform: scale(1.08);
    
}



.speciality-Card-border{
    position: absolute;
    border: 4px solid #121619;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 25px;
    left: 25px;
    transition: all 0.3s ease;
}

.speciality-Card-border-2{
    position: absolute;
    border: 4px solid #121619;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: -25px;
    right: 25px;
    transition: all 0.3s ease;
}



.speciality-Card:hover .speciality-Card-border {
    top: 5px;
    left: 5px;
}

.speciality-Card:hover .speciality-Card-border-2 {
    top: -5px;
    right: 5px;
}

.speciality-Card:hover h2 {
    color: #FD9D3E;
    letter-spacing: 2px;
}


@media (max-width: 768px) {

    .speciality-Card-image img {
        width: 230px;
    }

    .speciality-Card-border {
        top: 13px;
        left: 13px;
    }

    .speciality-Card-border-2 {
        top: -13px;
        right: 13px;
    }

    .speciality-Card h2 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

}























.main-container{

    background-color: #121619;
    padding: 130px 80px;
    position: relative;
}

.heading-container h4{

    font-family: Quentin;
    text-align: center;
    letter-spacing: 1px; 
    font-weight: 700;
    font-size: 2.1rem;
    /* padding-bottom: 2%; */
    color: #FD9D3E;
    padding-top: 100px;


}

.heading-container h3{

    
    font-family: Bungee;
    text-align: center;
    letter-spacing: 2px; 
    font-size: 3rem;
     color: #FFFFFF;
     

}

.menu-container{

    border: 4px groove #FFFFFF;
    background-color: #2b2c2d;
    padding: 20px 20px;
    color: #FFFFFF;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    
}

.menu-container .row{
    row-gap: 15px;
}


#userChoice{
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
}

#userChoice option{
    background-color: #2b2c2d;
     font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

#userChoice option:hover{
    background-color: #FD9D3E !important;
    
}


.menu:hover{

    color: #FD9D3E;
}



.white-image{
    position: absolute;
    top: -150px;
    left: 0;
}

.white-image img{
    width: 100%;
}

.white-image-2{
    position: absolute;
    bottom: -240px;
    left: 0;
}

.white-image-2 img{
    width: 100%;
}


#show{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    
}

.card{
    border: 1px solid red;
    border: none;
    width: 100%;
    margin-top: 20px;
    background-color: #121619;
     transition: 0.3s;
     cursor: pointer;

}

.card:hover{
    transform: translateY(-8px);

}

.card img{
    width: 100%;
    height: 290px;
    object-fit: cover;

}

.card h2{
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 6%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    
}

.card p{
    padding-top: 2%;
    text-align: center;
    letter-spacing: 1px;
    color: #999999;
    
    
}

.card h4{
    
    text-align: center;
    letter-spacing: 1px; 
    font-weight: 700;
    font-size: 1.05rem;
    color: #b6b6b6;

}

.card span{
    text-align: center;
    letter-spacing: 1px; 
    font-weight: 700;
    font-size: 1.05rem;
    padding-bottom: 2%;
    color: #FD9D3E;
}


@media (max-width: 768px){

    .main-container{
        padding: 80px 30px;
    }

    .heading-container h3{
        font-size: 2rem;
    }

    .heading-container h4{
        font-size: 1.5rem;
    }

    .card{
        padding: 10px 20px;
    }



    .white-image{
        top: -60px;
    }

    .white-image-2{
        bottom: -60px;
    }
  

}

