@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    --trancolor : rgb(255, 27, 27);
}

html,body{
    scroll-behavior: smooth;
}

section{
    /* height: 60vh;
    max-height: 100vh; */
    padding-top: 7.5rem;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

section nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0  0 6px rgba(48, 48, 48, 0.542);
    z-index: 99;
}

section nav .logo{
    display: grid;
    place-items: center;
}

section nav .logo img{
    width: 5.25rem;
    cursor: pointer;
}

section nav ul{
    list-style: none;
    width: 40%;
    max-width: 650px;
    display: flex;
    justify-content: space-between;
}

section nav #menu{
    display: none;
}

section nav ul li a{
        text-decoration: none;
        color: rgb(55, 53, 53);
        font-weight: 550;
        font-size: 1rem;
        transition: transform 0.3s ease-in-out;
}

section nav ul li a:hover{
    color: var(--trancolor);
}

section nav ul li a::after{
    content: '';
    height: 2.5px;
    background: rgb(255, 40, 40);
    display: block;
    transform: scaleX(0);

    transition: transform 0.3s ease-in-out;
    transform-origin: left;
}

section nav ul li a:hover::after{
    transform: scaleX(1.0);
    transform-origin: right;
}

section nav .icon{
    width: 8%;
    display: flex;
    justify-content: space-between;
}

section nav .icon i{
    font-size: 1.15rem;
    cursor: pointer;
    transition: transform 0.2s linear;
}

section nav .icon i:hover{
    color: var(--trancolor);
}

    
/* "================================(Main Section)============================" */

section .main{
    width: 100%;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
}

section .main .main-image{
    width: 40%;
    padding: 1rem;
    display: flex;
    align-items: start;
    justify-content: center;
    img {
    width: 100%; 
    position: relative;
    bottom: 7%;
}
}

.text-section{
    max-width: 58%;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-text p {
    font-size: 3.75rem;
    line-height: 5rem;
}

section .main .main-text p span{
    margin-left: 3px;
    color: var(--trancolor);
    font-family: mv boli;
    vertical-align: 5px;
    font-size: 4.75rem;
}

section .para1 {
    text-align: justify;
}

section .main_btn {
    width: fit-content;
    background: var(--trancolor);
    border-radius: 3.125rem; 
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s;
}

section .main_btn:hover{
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.747);
}

section .main_btn a{
    color: white;
    font-weight: 500;
    margin-right: 3px;
    text-decoration: none;
    transition: all 0.3s;
}

section .main_btn i{
    color: white;
    transition: all 0.3s;
}

section .main_btn:hover i{
    transform: translateX(0.3125rem);
}



/* "ABOUT SECTION" */

.about {
    width: 100%;
    margin-top: 4rem;
    padding:  4.375rem 1.05rem; 
}

.about .about_main {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 1rem;
}

.about .about_main .image {
    filter: drop-shadow(0px 0px 0.375rem rgba(0, 0, 0, 0.412)); /* 6px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .about_main .image img {
    max-width: 28vw; /* 560px */
    max-height: 25rem; /* 400px */
    animation: spin 4.5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about_text{
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.15rem;
}

.about .about_main .about_text h2 span {
    color: var(--trancolor);
    margin-right: 1rem; 
    font-family: mv boli;
}

.about .about_main .about_text h2 {
    font-size: 3.25rem;
    position: relative;
}

.about .about_main .about_text h3 {
    width: fit-content;
    cursor: pointer;
    font-size: 1.85rem;
    /* margin: 0 0 1.875rem 0; 30px */
}

.about .about_main .about_text h3::after {
    content: "";
    width: 95%;
    height: 0.25rem; /* 4px */
    border-radius: 1.25rem; /* 20px */
    background: rgb(255, 40, 40);
    display: block;
    margin: auto;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: left;
}

.about .about_main .about_text h3:hover::after {
    transform: scaleX(1.0);
    transform-origin: right;
}

.about .about_main .about_text p {
    width: 90%;
    text-align: justify;
    line-height: 1.375rem;
}

.about .about-btn{
    background: var(--trancolor);
    text-decoration: none;
    width: fit-content;
    padding: 1rem;
    color: black;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.about .about-btn:hover{
    color: white;
}



/* "------------------------ MENU CARDS --------------------------------------------" */

.menu{
    width: 100%;
    padding: 4.375rem 0 0 0;

    h1{
        font-size: 3.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.menu h1 span{
    color: var(--trancolor);
    margin-left: 1rem;
    font-family: mv boli;
}

.menu h1 span::after{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--trancolor);
    display: block;
    position: relative;
    bottom: 15px;
}


.menu .menu-box{
    width: 100%;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.55rem;
}

.menu .menu-box .menu-card{
    width: 100%;
    max-width: 37.5rem;
    height: 100%;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.625rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.205);
}

.menu .menu-box .menu-card .menu-image{
    width: 100%;
    max-height: 17.5rem;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
        position: relative;
}


.menu .menu-box .menu-card .menu-image img{
    width: 100%;
    max-height: 17.5rem;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}

.menu .menu-box .menu-card .menu-image:hover img {
transform: scale(1.1); 
}


.menu .menu-box .menu-card .menu-image .small-card{
        width: fit-content;
        cursor: pointer;
        position: absolute;
        top: 5%;
        right: 5%;
        opacity: 1;
        border-radius: 7px;
}

.menu .menu-box .menu-card .menu-image .small-card i{
    font-size: 1.25rem;
    filter: drop-shadow(0 0 1px white);
    transition: all 0.2s linear;
}

.menu .menu-box .menu-card .menu-image .small-card:hover i{
    color: var(--trancolor);
    filter: drop-shadow(0 0 1.5px white);
    text-shadow: 0 0 1px rgba(23, 23, 23, 0.349);
}

.menu .menu-box .menu-card .menu-info h2{
    width: 50%;
    text-align: center;
    cursor: pointer;
    margin: 0px auto;
}

.menu .menu-box .menu-card .menu-info h2:hover{
    color: var(--trancolor);
    text-shadow: 0 0 0.5px rgba(0, 0, 0, 0.382);
}

.menu .menu-box .menu-card .menu-info p{
        width: 100%;
        text-align: center;
        margin: 2px 0px;
}

.menu .menu-box .menu-card .menu-info h3{
    text-align: center;
}

.menu .menu-box .menu-card .menu-info .menu-icon{
    background:linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-position: center;
    text-align: center;
    margin-bottom: 0.5rem;
}

.menu .menu-box .menu-card .menu-info .menu-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
        text-decoration: none;
        color: white;
        background-color: black;
        padding: 0.625rem 1.125rem;
        border-radius: 5px;
        margin: auto;
        margin-bottom: -0.5rem;
    
}

.menu .menu-box .menu-card .menu-info .menu-btn:hover{
    font-weight: 525;
    background-color: rgb(252, 56, 56);
}





/* "---------------------------Gallery Section------------------------------------------------------" */

.gallery {
    width: 100%;
    padding: 4.375rem 0 0 0; 

    h2 {
        font-size: 3.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.gallery h2 span {
    color: var(--trancolor);
    margin-left: 1rem;
    font-family: mv boli;
}

.gallery h2 span::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--trancolor);
    display: block;
    position: relative;
    bottom: 15px;
}

.gallery .gallery-Box {
    width: 100%;
    padding: 2.5rem; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5625rem; /* 25px */
}

.gallery .gallery-Box .gallery-image {
    width: 100%;
    max-width: 37.5rem;
    height: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.205);
}

.gallery .gallery-Box .gallery-image img {
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

.gallery .gallery-Box .gallery-image .gallery-info {
    margin: 1rem;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(29, 29, 29, 0.701);
    opacity: 0;
    position: absolute;
    z-index: 90;
    transition: all 0.2s linear;

    h3 {
        font-size: 2rem;
        color: yellow;
        font-weight: 525;
    }

    p {
        width: 100%;
        color: white;
        margin-bottom: 2.5rem;
        text-align: center;
    }
}

.gallery .gallery-Box .gallery-image .gallery-info .gallery-btn {
    text-decoration: none;
    color: black;
    background-color: var(--trancolor);
    padding: 0.625rem 1.5625rem;
    border-radius: 6px;

    transition: all 0.3s linear;
}

.gallery .gallery-Box .gallery-image:hover .gallery-info {
    opacity: 1;
}

.gallery .gallery-Box .gallery-image:hover .gallery-btn {
    transform: translateY(-2rem);
}


/* ------------ Review Section ------------------  */

.review {
    width: 100%;
    padding-top: 4.375rem; /* 70px */
    
    h1 {
        font-size: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.review h1 span {
    color: var(--trancolor);
    margin-left: 1rem;
    font-family: mv boli;
}

.review h1 span::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--trancolor);
    display: block;
    position: relative;
    bottom: 15px;
}

.review .review-box {
    width: 100%;
    height: fit-content;
    padding: 1.875rem 1.5rem;
    display: flex;
    justify-content: space-evenly;
    gap: 0.75rem;
}

.review .review-box .review-card {
    width: 23.4%;
    max-width: 400px;
    cursor: pointer;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.487);
    border-radius: 8px;
    padding: 0.625rem 0.5rem;
}

.review .review-box .review-card .review-profile{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s linear;
}

.review .review-box .review-card:hover .review-profile{
    transform: translateY(-1.875rem);
}

.review .review-box .review-card .review-profile img{
    width: 60%;
    max-height: 11.25rem;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid gray;
}

.review .review-box .review-card .review-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4375rem;
        text-align: center;
}

.review .review-box .review-card .review-text .name{
    color: black;
    transition: all 0.3s linear;
}

.review .review-box .review-card:hover .review-text .name{
    transform: translateY(-1.875rem);
}

.review .review-box .review-card .review-text .review-icon{
    background:linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: flex;
    gap: 0.375rem;
}

.review .review-box .review-card .review-text .review-social{
    display: flex;
    gap: 0.375rem;
}

.review .review-box .review-card .review-text .review-social i:nth-child(1):hover {
    color: #4267B2;
} 

.review .review-box .review-card .review-text .review-social i:nth-child(2):hover {
    color: #f50c59;
}

.review .review-box .review-card .review-text .review-social i:nth-child(3):hover{
    color: #1DA1F2;
}

.review .review-box .review-card .review-text .review-social i:nth-child(4):hover{
    color: #2053b9;
}

.review .review-box .review-card .review-text p{
        width: 90%;
        font-size: 0.75rem;
        font-weight: 550;
        color: #373535;
        margin: 0.625rem 0px;
        text-align: justify;
}


/*" ------=====------ Order Section --------====----------  "*/


.order {
    width: 100%;
    padding-top: 4.375rem; /* 70px */
    background-image: url('/Images/bg2.jpg');
    background-size: cover;
    background-position: center;

    h1 {
        font-size: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.order h1 span {
    color: var(--trancolor);
    margin-right: 1rem;
    font-family: mv boli;
}

.order h1 span::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--trancolor);
    display: block;
    position: relative;
   bottom: 15px;
}

.order .order-main {
    width: 100%;
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.order .order-main .order-img {
    width: 40%;
    min-width:  15.625rem;
}

.order .order-main .order-img img {
    width: 100%;
    max-height: 30rem;
}

.order .order-main form {
    width: fit-content;
    padding: 1.875rem 2.5rem; 
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.15rem; 
    box-shadow: 0 0 4px rgba(58, 58, 58, 0.481);
    border-radius: 8px;
}


.order .order-main form .input {
    display: flex;
    flex-direction: column;
}

.order .order-main form .input label {
    color: #333333;
    margin-bottom: 0.4rem;
    font-weight: 550;
    text-shadow: 0px 0px 0.3px rgba(28, 28, 28, 0.278);
}

.order .order-main form .input input {
    width: fit-content;
    padding: 0.5rem 1.25rem;
    color: #777777;
    border: 1.3px solid #cccccc;
    outline: none;
    border-radius: 5px;
}

.order .order-main form .input input:focus {
    border: 1.3px solid #FF5722;
}

.order .order-main form .input select {
    width: fit-content;
    height: 2.3rem; 
    padding: 0.5rem 0.95rem;
    color: #3b3b3b;
    border: 1.3px solid #cccccc;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.order .order-main form .input textarea {
    width: fit-content;
    height: 2.5rem;
    padding: 0.5rem 0.95rem;
    color: #777777;
    border: 1.3px solid #cccccc;
    outline: none;
    border-radius: 5px;
}


.order .order-main form .order-btn{
    width: fit-content;
    text-decoration: none;
    background: black;
    color: white;
    padding: 0.5rem 0.7rem; 
    font-weight: 450;
    border-radius: 6px;
    transition: all 0.2s linear;
}

.order .order-main form .order-btn:hover{
    color: white;
    background: var(--trancolor);
    font-weight: 500;
}


/* "=============================OUR TEAM===========================================" */

.team{
    width: 100%;
    background-image: url(/Images/bg1.jpg);
    background-position: center;
    background-size: cover;

    h1{
        font-size: 3.5rem;
        margin-top: 0.625rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.team h1 span{
    color: var(--trancolor);
    margin-left: 1rem;
    font-family: mv boli;
}

.team  h1 span::after{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--trancolor);
    display: block;
    position: relative;
    bottom: 15px;
}

.team .teambox {
    width: 100%;
    padding: 5rem 0 5.625rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.team .teambox .profile {
    width: 17vw; 
    height: 17vw;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(57, 57, 57, 0.32);
    transition: all 0.4s linear;
    cursor: pointer;
}

.team .teambox .profile:hover {
    border-radius: 1.25rem;
}

.team .teambox .profile img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 6px rgba(57, 57, 57, 0.32);
    z-index: 2;
    position: relative;
    transition: all 0.4s linear;
}

.team .teambox .profile:hover img {
    border-radius: 1.25rem; 
    transform: translateY(-5rem);
}

.team .teambox .profile .info {
    max-width: 17.5rem;
    position: absolute;
    text-align: center;
    transition: all 0.4s linear;
    opacity: 0;
}

.team .teambox .profile:hover .info {
    transform: translateY(3.8rem); 
    opacity: 1;
}

.team .teambox .profile .info .name{
    color: var(--trancolor);
    margin: -0.375rem 0px;
}

.team .teambox .profile .info .bio{
    width: 100% ;
    margin: auto;
    text-align: center;
    font-size: 0.9rem;
    color: #373737;
    margin-bottom: 5px;
}

.team .teambox .profile .info .team-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}

.team .teambox .profile .info .team-icon i:nth-child(1):hover{
    color: #4267B2;   
}

.team .teambox .profile .info .team-icon i:nth-child(2):hover{
    color: #f50c59;
}

.team .teambox .profile .info .team-icon i:nth-child(3):hover{
    color: #1DA1F2;
}



/* "===========================Footer==========================================" */

footer {
    width: 100%;
    padding: 2.5rem 2rem 1.25rem 2rem;
    background: #f5f5f5;
    border-top: 1px solid rgba(26, 26, 26, 0.366);
}

footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1.5rem;
}

footer .footer-main .footer-tag {

display: flex;
flex-direction: column;
align-items: center;

    h2 {
        margin-bottom: 1.25rem; 
    }

    p {
        text-align: center;
        margin-top: 5px;
    }
}

footer .footer-main #footer-icons{
display: flex;
flex-direction: column;
align-items: flex-start;    }

footer .footer-main .footer-tag p:hover {
    color: #ffb217;
}

footer .footer-main .footer-tag .footer-icon {
    width: 1.5vw;
    cursor: pointer;
    overflow-x: hidden;
    display: flex;
    gap: 1rem;
    transition: all 0.2s linear;
}

footer .footer-main .footer-tag .footer-icon:hover {
    width: 100%;

    p {
        color: #333333;
    }
}


footer .footer-main .footer-tag i{
    margin-top: 0.625rem;
    display: grid;
}



footer .footer-main .footer-tag .footer-icon .fa-facebook:hover{
    color: #3863b7;
}

footer .footer-main .footer-tag .footer-icon .fa-twitter:hover{
    color: #1DA1F2;
}

footer .footer-main .footer-tag .footer-icon .fa-instagram:hover{
    color: #f50c59;
}

footer .footer-main .footer-tag .footer-icon .fa-github:hover{
    color: #333;
}



footer .end{
    margin-top: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* "================================Ending Things============================" */


::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-track{
    border-radius: 5px;
    box-shadow: inset 0 0 5px #37373774;
}

::-webkit-scrollbar-thumb{
    background: var(--trancolor);
    border-radius: 5px;
}


/* [=================================================== MEDIA QUERIES START =================================================== ] */ 

@media (max-width : 1000px) {
section .main .main-image{
    width: 40%;
    align-items: center;
    img {
    max-width: 100%;
    min-width: 15.625rem; }         }

section nav ul{
    width: 50%;}

section nav .icon{
    width: 10%;     }

footer .footer-main .footer-tag h2 {
        font-size: 1.25rem; }
}


@media (max-width : 800px) { 
html, body{
    font-size: 14px;    }

.order .order-main form {
    max-width: 70%;
    padding: 1.5rem 2rem; 
    gap: 1.25rem 2rem;      }

.order .order-main form .input textarea,
.order .order-main form .input select,    
.order .order-main form .input input {
    width: 100%;
    max-width: 100%;}
}

@media (max-width : 700px) { 
html, body{
    font-size: 12px;    }

footer .footer-main .footer-tag h2 {
        font-size: 1.1rem; }
footer .footer-main .footer-tag p {
        font-size: 0.9rem; }
}


@media (max-width : 580px) {
    #Home nav{
        justify-content: space-between;
        padding: 0 1.75rem;}
    #Home nav ul, #Home nav .icon{
        display: none; }
   #Home nav #menu {
        display: block; 
        font-size: 2rem;} 

    section .main{
        gap: 2rem;
        flex-direction: column-reverse; }
    
    section .main .main-image{
    width: auto;
    height: 50%;
    img {
    bottom: unset; }         }

.text-section{
    height: 50%;
    max-width: 100%;
    padding: 1rem 1rem; }

.main-text p {
    font-size: 3rem;
    line-height: 4rem;  }

section .main .main-text p span{
    font-size: 3.5rem;  }

section .para1 {
    width: 100%; }

.about {
    padding:  2rem 1rem;    }

.about .about_main {
    flex-direction: column;
    align-items: center;    }

.about .about_main .image {
    height: 50%;
    width: 100%;
}
.about .about_main .image img {
    width: 70%;
    max-width: 340px;
    max-height: unset; 
}

.about_text{
    max-width: 100%;
    padding: 0 1rem;    }

.about .about_main .about_text p {
    width: 95%; }

.menu h1 span::after{
    bottom: 0.8% }

.menu #pizza{
    display: none;  }

.menu .menu-box{
    padding: 1.5rem 1.25rem;
    grid-template-columns: 48% 48%;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 1.5rem 1rem;
    justify-content: space-evenly;
}

.menu .menu-box .menu-card .menu-info h2{
    width: 90%;}

.gallery h2 span::after {
    bottom: 0.25rem;
}

.gallery .gallery-Box {
    padding: 1.5rem 1.25rem; 
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5rem 1rem; 
}

.gallery .gallery-Box .gallery-image .gallery-info {
    gap: 3px;
    h3 {font-size: 1.5rem;}
}


.review h1 span::after {
    bottom: 0.8%;}

.review .review-box {
    width: 100%;
    height: fit-content;
    padding: 1.8rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}
.review .review-box .review-card {
    max-width: unset;
    width: 100%; }


.order h1 span::after {
   bottom: 0.8%;        }

.order .order-main {
    width: 100%;
    padding: 2rem;
    justify-content: center;
    .order-img {
        display: none;  }
}

.order .order-main form {
    width: 100%;
    max-width: unset;
    padding: 2rem; 
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 47%);
    gap: 1.5rem; 
}

.order .order-main form .input input {
    width: 100%;
    padding: 0.5rem;    }

.order .order-main form .input select {
    width: 100%;
    height: 4rem; 
    padding: 0.5rem;    }

.order .order-main form .input textarea {
    width: 100%;
    height: 4rem;
    padding: 0.5rem;
}

.team  h1 span::after{
    bottom: 0.8%;   }

.team .teambox .profile {
    width: 20vw; 
    height: 20vw;  }

.team .teambox .profile .info {
    max-width: 18vw;
    .bio{
        display: none;  }
}



footer .footer-main {
      display: grid;
        grid-template-columns: repeat(2, 1fr); /* 3 columns layout */
        gap: 1rem;  }

footer .footer-main .footer-tag:nth-child(5){
     grid-area: 2/2/3/3;
     h2{ margin: auto;}
     padding-left: 1rem;        }

footer .footer-main .footer-tag:nth-child(4) {
    grid-area: 3/1/4/3; }

footer .footer-main .footer-tag {
width: 100%;
height: 100%;
justify-content: space-between;
    p {margin-top: 0;}  }

footer .footer-main #footer-icons{
display: flex;
flex-direction: column;
align-items: start;    }

footer .footer-main .footer-tag .footer-icon {
    width: 2rem;
    overflow-x: visible; 
    p{ opacity: 0;}
}

footer .footer-main .footer-tag .footer-icon:hover {
    width: 100%;
    p {
        opacity: 1;
        color: #333333;
    }
}
}

@media (max-width : 450px) {

    .menu .menu-box{
    padding: 1.25rem;
    gap: 1.5rem 1rem;
}

    .gallery .gallery-Box .gallery-image .gallery-info .gallery-btn {
    padding: 0.5rem 1rem;}

    .gallery .gallery-Box .gallery-image .gallery-info {
    gap: 3px;
    h3 {font-size: 1.2rem;
    margin-top: 1.5rem;}
    p {font-size: 0.75rem;}     }

    .review h1{font-size: 8vw;}
    .team .teambox .profile .info .name{
    margin: 0px;}

    .order .order-main form .input textarea::placeholder,
    .order .order-main form .input select,
    .order .order-main form .input input::placeholder{
        font-size: 1rem;
    }
}


@media (max-width : 250px) { 
html, body{
    font-size: 10px;    }

.review .review-box {
    padding: 1.5rem;
    gap: 1.5rem;
}

.review .review-box .review-card {
    width: 100%;
    max-width: unset;}

.menu .menu-box .menu-card .menu-info h2{
    font-size: 1rem;
    max-width: 90%;}
.menu .menu-box .menu-card .menu-info p{
    font-size: 0.75rem; }


.review .review-box {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;  }

.about .about_main .about_text h2,
.menu h1,
.gallery h2,
.order h1,
.team h1{
        font-size: 2rem; }

footer .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5,1fr);
        gap: 1rem;  }

footer .footer-main .footer-tag:nth-child(5){
     grid-area: auto;
     h2{ margin: auto;}
     padding-left: 1rem;        }

footer .footer-main .footer-tag:nth-child(4) {
    grid-area: auto }
}