@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    font-family: "Nunito", sans-serif;
}

.navbar-brand{
    width: 30%;
}

.logo{
    width: 50%;
}

.bg-dark-new{
    background: #000000;
}

.nav-link{
    color: #FFFFFF;
}

.active{
    color: #d43307 !important;
}

.nav-link:hover{
    color: #d43307 !important;
}

.btn-red, .btn-red:hover{
    background: #d43307;
    color: #FFFFFF;
    padding: 10px 20px;
    margin-left: 30px;
    border-radius: 50px;
}

/* Hero Section */
.banner{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 83vh;
}

.banner-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 83vh;
    align-content: center;
}

.banner-content h2{
    font-size: 70px;
    font-weight: 800;
    color: #FFFFFF;
}

.banner-content span{
    color: #d43307;
}

.banner-content p{
    font-size: 18px;
    color: #FFFFFF;
}

.about-us{
    padding-bottom: 4%;
    padding-top: 4%;
}

.about-us-bg{
    background: url('../images/about.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.about-us-content{
    padding-left: 30px;
}

.main-title{
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d43307;
}

.about-us-content h2{
    font-size: 40px;
    font-weight: 600;
}

.chefs-special{
    padding-bottom: 4%;
}

.card{
    border: none;
    border-radius: 20px;
}

.card img{
    border-radius: 20px 20px 0px 0px;
}

.menu{
    padding-bottom: 4%;
}

.menu-card img{
    border-radius: 20px;
}

.footer{
    background: #000000;
    padding-top: 4%;
    padding-bottom: 4%;
}

.footer-logo{
    width: 30%;
}

.social-icons i{
    font-size: 35px;
    color: #FFFFFF;
}

.contact a{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
}

.branding{
    color: #FFFFFF;
    font-size: 18px;
}

.branding span{
    color: #d43307;
    font-weight: 800;
}

.branding a{
    color: #d43307;
    text-decoration: none;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .banner{
        height: 40vh;
    }

    .banner-content{
        height: 40vh;
    }

    .banner-content h2{
        font-size: 50px;
    }
}

@media screen and (max-width: 820px) {
    .banner-content h2{
        font-size: 45px;
    }

    .btn-red, .btn-red:hover{
        width: 28%;
    }

    .navbar-toggler {
        border-color: white;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

@media screen and (max-width: 540px) {
    .banner {
        height: 58vh;
    }

    .banner-content {
        height: 65vh;
    }

    .banner-content h2 {
        font-size: 27px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .btn-red, .btn-red:hover {
        width: 52%;
        margin-left: 0px;
    }

    .logo {
        width: 150px;
    }

    .about-us {
        padding-bottom: 14%;
        padding-top: 14%;
    }

    .main-title{
        font-size: 17px;
    }

    .about-us-content h2{
        font-size: 35px;
    }

    .menu {
        padding-bottom: 14%;
        padding-top: 14%;
    }
    
    .footer-logo {
        width: 70%;
    }

    .footer {
        padding-bottom: 14%;
        padding-top: 14%;
    }

    .mob-width{
        width: 50%;
    }

    .mob-align-width{
        width: 100%;
        text-align: center !important;
    }
    
    .social-icons{
        margin-top: 4%;
    }

    .contact{
        margin-top: 4%;
    }
}


@media screen and (max-width: 375px) {
    .banner {
        height: 68vh;
    }

    .banner-content {
        height: 65vh;
    }

    
}