* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1F4D36;
    --bg-color: #171B20;
    --secondary-color: #F8C70E;
}
body{
    /* font-family:"Nunito", sans-serif;
     */
     font-family: "Nunito ",sans-serif;
     background-color: #303336;
}
img {
    width: 100%;
}

.main-nav {
    background-color: var(--bg-color);
    /* background-color: rgb(234, 4, 4); */
    /* background-color: rgb(142, 3, 3); */

    /* background: linear-gradient (toright,#8B0000 to #B22222); */
    padding: 10px 0;

}

.nav-logo{
    display: flex;
    align-items: center;
    color: white;
    
}
.nav-logo p {
    font-weight: bold;
    text-align: center;
margin: 0 !important;
color: #FF0000;
font-size: larger;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-btn {
    /* background-color: #F8C70E; */
    background-color:  #FF0000;

    /* background-color: #000; */
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.nav-btn:hover{
    background-color: yellow;
    color: #000;
}
/* =========================================================CAROUSEL==================================================================================== */
/*                   =========CONTROLS=================== */
.carousel-custom-controls {
    position: absolute;
    top: 50%;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.outer {
    background-color: black;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
}

.inner {
    /* background-color: rgb(203, 112, 15); */
    background-color: #FF0000;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    position: relative;
    border-radius: 50%;
}
/* ===========================================================SLIDES============================================================== */

.dishes {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 70px;
    /* flex-wrap: wrap; */
    background-image: url("imgs/Bakgrounds/res-bg-image3.jpg");
    /* background: linear-gradient (#8B0000 to #B22222); */
    background-color: #8B0000;
   
}

.dishes img {
    max-width: 100%;
    height: auto;
    flex: 1 1 300px;
}

.dishes .text {
    flex: 1 1 300px;
    color: white;
}
#img{
    width: 150px !important;
}
/* ================================================================Modal ================================================================ */
.modal-content {
    background-color: #000;
    color: #fff;
    border: none;
}

.modal-header {
    border: none;
}

.modal.right .modal-dialog {
    position: fixed;
    margin: 0;
    right: 0;
    top: 0;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease-out;
}

.modal.right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
}

/* ======================================         modal content     ======================================================================= */
.modal-body {
    padding: 0px !important;
}

.modal-body .container {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #ddd;
    margin-bottom: 0.9rem;
}

.contact-item i {
    color: var(--yellow);
    font-size: 1.1rem;
    min-width: 26px;
    text-align: center;
}

.updates-title {
    /* font-size: rem; */
    font-weight: 700;
    margin: 2.2rem 0 1rem;
}

/* input + button */
.input-signup .form-control {
    height: 52px;
    border-radius: 0;
    border: 0;
}

.input-signup .btn-sign {
    background: var();
    color: white;
    background-color: var(--secondary-color);
    border-radius: 0;
    border: 0;
    font-weight: 700;
    padding: 0 28px;
    height: 52px;
    box-shadow: none;
}


/* ==============================Our Progress ============================================================== */
.blog {

    padding: 80px;
    /* background-color: var(--bg-color); */
    background-color: #303336;
}

.blogs {
    gap: 20px;
}

.card {
    width: 30%;
    height: 60vh;
    display: flex;
    /* justify-content: space-between; */
}

.blogs .card div img {
    width: 50px;

}

.blogs .card div {
    padding: 15px;

}

.bg-fixed {
    background-image: url("imgs/Bakgrounds/ttten-1.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 5px;
}

/* ==========================================================Menue ======================================================= */
.menu-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================================================================================================================================= */

/* 
.main-nav * {
    outline: 1px solid red;
} */


/* responsive */
/* responsive */
@media (min-width: 1200px) {
    .gallery img {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .gallery img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .images {
        grid-template-columns: 1fr;
        width: 80%;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav {
        padding: 10px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .images {
        grid-template-columns: 1fr;
        width: 95%;
        gap: 10px;
    }
}
