@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');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: gilroy;
}

@font-face {
    font-family: gilroy;
    src: url(./fonts/Gilroy/Gilroy-Regular.ttf);
}

@font-face {
    font-family: jockey;
    src: url(./fonts/Jockey_One/JockeyOne-Regular.ttf);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: jockey;
}

/* Colors */

:root {
    --primary-color: #221e20;
    --secondary-color: #fae1c4;
}

/* Font Sizes */

:root {

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 0.8vw;

    --tiny-font-size: 0.6vw;

    --general-horizental-padding: 5%;

    --general-vertical-padding: 15%;

}

@media (min-width:1025px) and (max-width:1434px) {

    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 1.7vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 20%;

    }

}

@media (min-width:768px) and (max-width:1025px) {

    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 25%;

    }

}

@media (min-width:500px) and (max-width:768px) {

    :root {

        --enormous-font-size: 15vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 35%;

    }

}

@media (max-width:500px) {

    :root {

        --enormous-font-size: 17vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

        --general-horizental-padding: 5%;

        --general-vertical-padding: 45%;

    }

}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.index-body {
    width: 100%;
    height: auto;
}





/* ========================================= 

                NAVBAR

========================================= */




nav {
    width: 100%;
    height: 150px;
    /*background: radial-gradient(circle at center,*/
    /*        #FDEED7 0%,*/
    /*        #F1D6B2 40%,*/
    /*        #B49A80 100%);*/
    position: fixed;
    position: absolute;
    top: 0%;
    left: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 5%;
    z-index: 100;
}

.arabic-nav {
    direction: rtl;
}

nav .drawer-btn {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

nav .drawer-btn svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    cursor: pointer;
}

nav .nav-background {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 1;
}

nav .nav-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav .logo-pseudo-anchor {
    width: 15%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 42.5%;
    opacity: 0;
    z-index: 2;
}

nav .nav-end {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

nav .nav-end .nav-btn {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    border: none;
    transition: all linear 0.3s;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width:600px) {
    nav .nav-end .nav-btn {
        display: none;
    }
}

nav .nav-end .nav-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

nav .nav-end .lang-switcher {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    position: relative;
}

nav .nav-end .lang-switcher svg {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

nav .nav-end .lang-switcher ul {
    width: auto;
    height: auto;
    background-color: #221e20;
    position: absolute;
    top: 200%;
    right: 0%;
    border-radius: 16px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all linear 0.3s;
}

.langs-ul-active {
    opacity: 1 !important;
    pointer-events: initial !important;
}

nav .nav-end .lang-switcher ul li {
    width: auto;
    height: auto;
    color: white;
}

nav .nav-end .lang-switcher ul li a {
    width: auto;
    height: auto;
    padding: 20px;
    display: block;
    color: white;
    text-decoration: none;
}

.nav-drawer {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 100%;
    left: 0%;
    background: radial-gradient(circle at center,
            #FDEED7 0%,
            #F1D6B2 40%,
            #B49A80 100%);
    z-index: 101;
    display: flex;
    transition: all ease-in-out 1s;
    overflow: hidden;
}

.arabic-nav-drawer {
    direction: rtl;
}

.nav-drawer .nav-drawer-links {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    padding: 2% 2% 2% 4%;
}

@media (min-width:1025px) and (max-width:1200px) {
    .nav-drawer .nav-drawer-links {
        width: 40%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .nav-drawer .nav-drawer-links {
        width: 40%;
    }
}

@media (max-width:768px) {
    .nav-drawer .nav-drawer-links {
        width: 50%;
        padding-bottom: 50px;
    }
}

.nav-drawer .nav-drawer-links .nav-drawer-links-header {
    width: 100%;
    height: auto;
    padding: 10px 5%;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-header svg {
    width: 50px;
    height: 50px;
    stroke: #221e20;
    cursor: pointer;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    padding: 5%;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-body a {
    font-size: var(--regular-font-size);
    color: #221e20;
    text-decoration: none;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    padding: 5%;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer h2 {
    color: #221e20;
    font-size: var(--big-font-size);
    padding-bottom: 20px;
    position: relative;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer h2::after {
    content: '';
    width: 20%;
    height: 1px;
    background-color: #221e20;
    position: absolute;
    top: 100%;
    left: 0%;
}

.arabic-nav-drawer .nav-drawer-links .nav-drawer-links-footer h2::after {
    right: 0%;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width:768px) {
    .nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials {
        flex-wrap: wrap;
    }
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials a {
    width: 50px;
    height: 50px;
    padding: 10px;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.212);
    transition: all linear 0.3s;
    color: #221e20;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials a:hover {
    background-color: #221e20;
    scale: 1.2;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials a svg {
    width: 100%;
    height: 100%;
    color: #221e20;
    fill: #221e20;
    transition: all linear 0.3s;
}

.nav-drawer .nav-drawer-links .nav-drawer-links-footer .nav-drawer-socials a:hover svg {
    color: white;
    fill: white;
}

.nav-drawer .nav-drawer-dishes {
    width: 70%;
    height: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 5%;
    gap: 20px;
}

@media (min-width:1025px) and (max-width:1200px) {
    .nav-drawer .nav-drawer-dishes {
        width: 60%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .nav-drawer .nav-drawer-dishes {
        width: 60%;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .nav-drawer .nav-drawer-dishes {
        width: 50%;
        grid-template-columns: repeat(1,1fr);
        padding-bottom: 50px;
    }
}

@media (max-width:500px) {
    .nav-drawer .nav-drawer-dishes {
        width: 50%;
        grid-template-columns: repeat(1,1fr);
        padding-bottom: 50px;
    }
}

.nav-drawer .nav-drawer-dishes .nav-drawer-dish {
    height: auto;
    text-decoration: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width:768px) {
    .nav-drawer .nav-drawer-dishes .nav-drawer-dish:nth-child(n+4) {
        display: none;
    }
}

.nav-drawer .nav-drawer-dishes .nav-drawer-dish img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.nav-drawer .nav-drawer-dishes .nav-drawer-dish span {
    color: #221e20;
    display: block;
    margin-top: 20px;
}

.nav-drawer-open {
    bottom: 0%;
}

.whatsapp-aside {
    width: auto;
    height: auto;
    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 99;
}

.whatsapp-aside a {
    width: 50px;
    height: 50px;
    display: block;
    padding: 10px;
    border-radius: 50%;
    background-color: white;
    color: #221e20;
    border: 1px solid #221e201a;
    transition: all linear 0.3s;
}

.whatsapp-aside a:hover {
    scale: 1.2;
}

.whatsapp-aside a svg {
    width: 100%;
    height: 100%;
    fill: #221e20;
}




/* ========================================= 

                INDEX

========================================= */




.index-body section {
    width: 100%;
    height: auto;
}

.index-body section .intro {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-body section .intro video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: intro_vid 30s linear infinite;
    position: absolute;
    top: 0%;
    left: 0%;
    filter: brightness(70%);
}

@keyframes intro_vid {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(0.01px);
    }
}

.index-body section .intro .intro-dets {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-top: 5%;
}

.index-body section .intro .intro-dets h1 {
    font-size: var(--big-font-size);
    color: white;
    text-align: center;
}

.index-body section .intro .intro-dets p {
    font-size: var(--intermediate-font-size);
    color: white;
    text-align: center;
}

.index-body section .intro .intro-dets a {
    width: fit-content;
    height: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.041);
    color: white;
    border: 1px solid #ffffff4f;
    backdrop-filter: blur(5px);
    border-radius: 16px;
    text-decoration: none;
    transition: all linear 0.3s;
    margin-top: 20px;
}

.index-body section .index-our-story-con {
    width: 100%;
    height: auto;
    background-color: var(--primary-color);
    padding: 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .index-our-story-con {
        height: 160vw;
        justify-content: start;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body section .index-our-story-con {
        height: 230vw;
        justify-content: start;
    }
}

@media (min-width:400px) and (max-width:500px) {
    .index-body section .index-our-story-con {
        height: 260vw;
        justify-content: start;
    }
}

@media (max-width:400px) {
    .index-body section .index-our-story-con {
        height: 270vw;
        justify-content: start;
    }
}

.index-body section .index-our-story-con h2 {
    width: 100%;
    text-align: center;
    font-size: var(--regular-font-size);
    color: white;
}

.index-body section .index-our-story-con p {
    width: 60%;
    text-align: center;
    color: white;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body section .index-our-story-con p {
        width: 70%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .index-our-story-con p {
        width: 80%;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body section .index-our-story-con p {
        width: 90%;
    }
}

@media (max-width:500px) {
    .index-body section .index-our-story-con p {
        width: 100%;
    }
}

.index-body section .index-our-story-con .story-imgs-anchor {
    width: 50px;
    height: 50px;
    background-color: transparent;
    position: absolute;
    bottom: 10%;
    left: 0%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
}

.index-body section .index-our-story-con .index-story-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

/* base for all images */
.index-body section .index-our-story-con .index-story-container img {
    width: 40%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transform-origin: center center;
}

@media (min-width:1025px) and (max-width:1100px) {
    .index-body section .index-our-story-con .index-story-container img {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .index-our-story-con .index-story-container img {
        width: 70%;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body section .index-our-story-con .index-story-container img {
        width: 90%;
    }
}

@media (max-width:500px) {
    .index-body section .index-our-story-con .index-story-container img {
        width: 90%;
    }
}

/* initial states (scale 0) with your layout */

.index-body section .index-our-story-con .index-story-container .story-stage-1-img {
    transform: translate(200px, 10px) rotateZ(-20deg) scale(0);
    z-index: 4;
}

.index-body section .index-our-story-con .index-story-container .story-stage-2-img {
    transform: translate(0, 0) rotateZ(0deg) scale(0);
    z-index: 3;
}

.index-body section .index-our-story-con .index-story-container .story-stage-3-img {
    transform: translate(-200px, -50px) rotateZ(10deg) scale(0);
    z-index: 2;
}

/* POP state – trigger animation when class is added */

.index-body section .index-our-story-con .index-story-container .story-stage-1-img.story-img-pops {
    animation: pop-img-1 1s ease-in-out forwards;
}

.index-body section .index-our-story-con .index-story-container .story-stage-2-img.story-img-pops {
    animation: pop-img-2 1s ease-in-out forwards;
    animation-delay: 0.15s;
}

.index-body section .index-our-story-con .index-story-container .story-stage-3-img.story-img-pops {
    animation: pop-img-3 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

/* keyframes: 0 → 1.2 → 1 for each image */

@keyframes pop-img-1 {
    0% {
        opacity: 0;
        transform: translate(200px, 10px) rotateZ(-20deg) scale(0);
    }
    60% {
        opacity: 1;
        transform: translate(200px, 10px) rotateZ(-20deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(200px, 10px) rotateZ(-20deg) scale(1);
    }
}

@media (min-width:768px) and (max-width:1025px) {

    @keyframes pop-img-1 {
        0% {
            opacity: 0;
            transform: translate(80%, -40px) rotateZ(-15deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(80%, -40px) rotateZ(-15deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(80%, -40px) rotateZ(-15deg) scale(1);
        }
    }
    
}

@media (min-width:500px) and (max-width:768px) {

    @keyframes pop-img-1 {
        0% {
            opacity: 0;
            transform: translate(100%, -40px) rotateZ(-10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(100%, -40px) rotateZ(-10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(100%, -40px) rotateZ(-1deg) scale(1);
        }
    }
    
}

@media (max-width:500px) {

    @keyframes pop-img-1 {
        0% {
            opacity: 0;
            transform: translate(100%, -40px) rotateZ(-10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(100%, -40px) rotateZ(-10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(100%, -40px) rotateZ(-1deg) scale(1);
        }
    }
    
}

@keyframes pop-img-2 {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotateZ(0deg) scale(0);
    }
    60% {
        opacity: 1;
        transform: translate(0, 0) rotateZ(0deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotateZ(0deg) scale(1);
    }
}

@media (min-width:768px) and (max-width:1025px) {

    @keyframes pop-img-2 {
        0% {
            opacity: 0;
            transform: translate(-20%, 160%) rotateZ(-10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(-20%, 160%) rotateZ(-10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(-20%, 160%) rotateZ(-10deg) scale(1);
        }
    }
    
}

@media (min-width:500px) and (max-width:768px) {

    @keyframes pop-img-2 {
        0% {
            opacity: 0;
            transform: translate(0, 200%) rotateZ(0deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(0, 200%) rotateZ(0deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(0, 200%) rotateZ(0deg) scale(1);
        }
    }
    
}

@media (max-width:500px) {

    @keyframes pop-img-2 {
        0% {
            opacity: 0;
            transform: translate(0, 200%) rotateZ(0deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(0, 200%) rotateZ(0deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(0, 200%) rotateZ(0deg) scale(1);
        }
    }
    
}

@keyframes pop-img-3 {
    0% {
        opacity: 0;
        transform: translate(-200px, -50px) rotateZ(10deg) scale(0);
    }
    60% {
        opacity: 1;
        transform: translate(-200px, -50px) rotateZ(10deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-200px, -50px) rotateZ(10deg) scale(1);
    }
}

@media (min-width:768px) and (max-width:1025px) {

    @keyframes pop-img-3 {
        0% {
            opacity: 0;
            transform: translate(-80%, -80%) rotateZ(10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(-80%, 80%) rotateZ(10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(-80%, 80%) rotateZ(10deg) scale(1);
        }
    }
    
}

@media (min-width:500px) and (max-width:768px) {

    @keyframes pop-img-3 {
        0% {
            opacity: 0;
            transform: translate(-100%, -100%) rotateZ(10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(-100%, 100%) rotateZ(10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(-100%, 100%) rotateZ(10deg) scale(1);
        }
    }
    
}

@media (max-width:500px) {

    @keyframes pop-img-3 {
        0% {
            opacity: 0;
            transform: translate(-100%, -100%) rotateZ(10deg) scale(0);
        }
        60% {
            opacity: 1;
            transform: translate(-100%, 100%) rotateZ(10deg) scale(1.2);
        }
        100% {
            opacity: 1;
            transform: translate(-100%, 100%) rotateZ(10deg) scale(1);
        }
    }
    
}









































.index-body section .index-location-con {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    position: relative;
}

.index-body section .index-location-con .index-location-con-dets {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.index-body section .index-location-con .index-location-con-dets h2 {
    width: 100%;
    text-align: center;
    font-size: var(--regular-font-size);
    color: #221e20;
}

.index-body section .index-location-con .index-location-con-dets p {
    width: 100%;
    text-align: center;
    color: #221e20;
}

.index-body section .index-location-con .index-location-con-map-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
}

.index-body section .index-location-con .index-location-con-map-container iframe {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 3px solid #221e20 !important;
    padding: 5px;
    position: relative;
}

@media (max-width:550px) {
    .index-body section .index-location-con .index-location-con-map-container iframe {
        width: 90vw;
        height: 90vw;
    }
}

.index-body section .index-location-con .index-location-con-map-container .location-con-iframe-dets {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #221e20;
    position: absolute;
    top: -10%;
    transform: translateX(-40%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

@media (max-width:550px) {
    .index-body section .index-location-con .index-location-con-map-container .location-con-iframe-dets {
        width: 42vw;
        height: 42vw;
        transform: translateX(-30%);
    }
}

.index-body section .index-location-con .index-location-con-map-container .location-con-iframe-dets p {
    width: 80%;
    text-align: center;
    color: white;
}

.index-body section .index-location-con .index-location-con-map-container a {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #221e20;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    transition: all linear 0.3s;
    border: 1px solid #221e2070;
}

.index-body section .index-location-con .index-location-con-map-container a span {
    color: white;
}

.index-body section .index-location-con .index-location-con-map-container a svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.index-body section .index-location-con .index-location-con-map-container a:hover {
    background-color: white;
}

.index-body section .index-location-con .index-location-con-map-container a:hover span {
    color: #221e20;
}

.index-body section .index-location-con .index-location-con-map-container a:hover svg {
    stroke: #221e20;
}

.index-body section .index-menu-con {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #221e20;
}

.index-body section .index-menu-con .index-menu-con-backgrounds {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}


/* MENU ANIMATION */


.index-body section .index-menu-con .index-menu-con-backgrounds {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.index-body section .index-menu-con .index-menu-con-backgrounds img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    animation: imgs_chngr 12s linear infinite;
    opacity: 0;
    filter: brightness(60%);
}

.index-body section .index-menu-con .index-menu-con-backgrounds img:nth-child(1) {
    animation-delay: 0s;
}

.index-body section .index-menu-con .index-menu-con-backgrounds img:nth-child(2) {
    animation-delay: 4s;
}

.index-body section .index-menu-con .index-menu-con-backgrounds img:nth-child(3) {
    animation-delay: 8s;
}

@keyframes imgs_chngr {

    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}



/* END */


.index-body section .index-menu-con .index-menu-con-dets {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.index-body section .index-menu-con .index-menu-con-dets h2 {
    width: 100%;
    text-align: center;
    font-size: var(--regular-font-size);
    color: white;
}

.index-body section .index-menu-con .index-menu-con-dets p {
    width: 100%;
    text-align: center;
    color: white;
}

.index-body section .index-menu-con .index-menu-con-dets a {
    width: auto;
    height: auto;
    padding: 20px;
    text-decoration: none;
    background-color: #221e20;
    color: white;
    border-radius: 16px;
    transition: all linear 0.3s;
    border: 1px solid #221e2041;
}

.index-body section .index-menu-con .index-menu-con-dets a:hover {
    background-color: white;
    color: #221e20;
}

.index-body section .index-best-dishes-con {
    width: 100%;
    height: auto;
    padding: 5%;
    background-color: #221e20;
}

.index-body section .index-best-dishes-con h2 {
    width: 100%;
    text-align: center;
    font-size: var(--regular-font-size);
    color: white;
}

.index-body section .index-best-dishes-con p {
    width: 100%;
    text-align: center;
    color: white;
}

.index-body section .index-best-dishes-con .swiper {
    width: 100%;
    height: 100%;
    margin-top: 50px;
}

.index-body section .index-best-dishes-con .swiper-slide {
    height: auto;
    font-size: 18px;
    text-decoration: none;
}

.index-body section .index-best-dishes-con .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.index-body section .index-best-dishes-con .swiper-slide span {
    display: block;
    margin-top: 20px;
    color: white;
}

.index-body section .index-best-dishes-con .swiper-pagination {
    position: unset;
    margin-top: 20px;
}

.index-body section .index-best-dishes-con .swiper-pagination .swiper-pagination-bullet {
    background-color: white;
}

.index-body section .index-opening-vid-con {
    width: 100%;
    height: auto;
    padding: 5%;
    padding-bottom: calc(5% + 50px);
    background-color: #221e20;
    display: flex;
    justify-content: center;
}

.index-body section .index-opening-vid-con .index-opening-vid-container {
    width: 70%;
    height: auto;
    position: relative;
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .index-opening-vid-con .index-opening-vid-container {
        width: 80%;
        height: 400px;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body section .index-opening-vid-con .index-opening-vid-container {
        width: 90%;
        height: 600px;
    }
}

@media (max-width:500px) {
    .index-body section .index-opening-vid-con .index-opening-vid-container {
        width: 90%;
        height: 600px;
    }
}

.index-body section .index-opening-vid-con .index-opening-vid-container::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 5%;
    border-radius: 16px;
    background: radial-gradient(circle at center,
            #FDEED7 0%,
            #F1D6B2 40%,
            #B49A80 100%);
}

.index-body section .index-opening-vid-con .index-opening-vid-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
}



/* ========================================= 

                ABOUT US

========================================= */



.about-us-body {
    height: auto;
}

.arabic-about-us-body {
    direction: rtl;
}

.about-us-body section {
    width: 100%;
    height: auto;
}

.about-us-body section .intro {
    width: 100%;
    height: 100vh;
    display: flex;
}

@media (max-width:1025px) {
    .about-us-body section .intro {
        flex-direction: column;
    }
}

.about-us-body section .intro .intro-sec {
    width: 60%;
    height: 100%;
    position: relative;
    transition: all linear 0.3s;
    cursor: pointer;
    border-right: 1px solid white;
}

.arabic-about-us-body section .intro .intro-sec {
    border-left: 1px solid white;
    border-right: unset;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec {
        width: 100%;
        height: 60%;
        border-right: none;
        border-bottom: 1px solid white;
    }

    .about-us-body section .intro .intro-sec:last-child {
        border-bottom: none;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec {
        width: 100%;
        height: 50%;
        border-right: none;
        border-bottom: 1px solid white;
    }

    .about-us-body section .intro .intro-sec:last-child {
        border-bottom: none;
    }
}

.about-us-body section .intro .intro-sec:last-child {
    border-right: none;
}

.arabic-about-us-body section .intro .intro-sec:last-child {
    border-left: none;
}

.about-us-body section .intro .intro-sec img {
    width: 100%;
    height: 100%;
    filter: brightness(60%);
    object-fit: cover;
}

.about-us-body section .intro .intro-sec .intro-sec-dets {
    min-width: 20vw;
    height: auto;
    position: absolute;
    bottom: 0%;
    left: 10%;
    opacity: 0;
    pointer-events: none;
    transition: all linear 0.3s;
}

@media (max-width:1025px) {
    .about-us-body section .intro .intro-sec .intro-sec-dets {
        left: 5%;
    }
}

.about-us-body section .intro .intro-sec .intro-sec-dets h2 {
    width: fit-content;
    height: auto;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec .intro-sec-dets h2 {
        padding: 15px;
    }
}

.about-us-body section .intro .intro-sec .intro-sec-dets div {
    width: auto;
    height: auto;
    margin-top: 20px;
    background-color: white;
    padding: 10% 5%;
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec .intro-sec-dets div {
        padding: 5%;
    }
}

.about-us-body section .intro .intro-sec .intro-sec-dets div h3 {
    font-size: var(--intermediate-font-size);
}

.about-us-body section .intro .intro-sec .intro-sec-dets div a {
    width: auto;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    margin-top: 20px;
    padding-right: 20px;
    transition: all linear 0.3s;
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec .intro-sec-dets div a {
        gap: 10px;
    }
}

.about-us-body section .intro .intro-sec .intro-sec-dets div a:hover {
    padding-right: 0px;
}

.about-us-body section .intro .intro-sec .intro-sec-dets div a span {
    color: var(--primary-color);
    font-size: var(--intermediate-font-size);
    font-weight: normal;
}

.about-us-body section .intro .intro-sec .intro-sec-dets div a svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.arabic-about-us-body section .intro .intro-sec .intro-sec-dets div a svg {
    transform: rotateY(180deg);
}

.about-us-body section .intro .intro-sec-1 .intro-sec-dets {
    opacity: 1;
    pointer-events: initial;
}



/* ========
    SEC 2
======== */



.about-us-body section .intro .intro-sec-2 {
    width: 20%;
    height: 100%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec-2 {
        width: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec-2 {
        width: 100%;
        height: 20%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec-2 {
        width: 100%;
        height: 25%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro .intro-sec-2:hover {
    width: 60%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec-2:hover {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec-2:hover {
        width: 100%;
        height: 60%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec-2:hover {
        width: 100%;
        height: 50%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro:has(.intro-sec-2:hover) .intro-sec-1 {
    width: 20%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro:has(.intro-sec-2:hover) .intro-sec-1 {
        width: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro:has(.intro-sec-2:hover) .intro-sec-1 {
        width: 100%;
        height: 20%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro:has(.intro-sec-2:hover) .intro-sec-1 {
        width: 100%;
        height: 25%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro .intro-sec-2:hover ~ .intro-sec-3 {
    width: 20%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec-2:hover ~ .intro-sec-3 {
        width: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec-2:hover ~ .intro-sec-3 {
        width: 100%;
        height: 20%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec-2:hover ~ .intro-sec-3 {
        width: 100%;
        height: 25%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro .intro-sec-2:hover .intro-sec-dets {
    opacity: 1;
    pointer-events: initial;
}

.about-us-body section .intro:has(.intro-sec-2:hover) .intro-sec-1 .intro-sec-dets {
    opacity: 0;
    pointer-events: none;
}



/* ========
    SEC 3
======== */



.about-us-body section .intro .intro-sec-3 {
    width: 20%;
    height: 100%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec-3 {
        width: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec-3 {
        width: 100%;
        height: 20%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec-3 {
        width: 100%;
        height: 25%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro .intro-sec-3:hover {
    width: 60%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro .intro-sec-3:hover {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro .intro-sec-3:hover {
        width: 100%;
        height: 60%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro .intro-sec-3:hover {
        width: 100%;
        height: 50%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-1,
.about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-2 {
    width: 20%;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-1,
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-2 {
        width: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-1,
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-2 {
        width: 100%;
        height: 20%;
    }
}

@media (max-width:768px) {
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-1,
    .about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-2 {
        width: 100%;
        height: 25%;
    }
}

/* ======================================================= */
/* ======================================================= */

.about-us-body section .intro .intro-sec-3:hover .intro-sec-dets {
    opacity: 1;
    pointer-events: initial;
}

.about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-1 .intro-sec-dets,
.about-us-body section .intro:has(.intro-sec-3:hover) .intro-sec-2 .intro-sec-dets {
    opacity: 0;
    pointer-events: none;
}


/* ====================
    ABOUT US SELF CON
==================== */


.about-us-body section .about-us-page-self-con {
    width: 100%;
    height: auto;
    padding: 5%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 1px solid white;
    background-color: red;
}

@media (min-width:500px) and (max-width:768px) {
    .about-us-body section .about-us-page-self-con {
        padding: 10% 5%;
    }
}

@media (max-width:500px) {
    .about-us-body section .about-us-page-self-con {
        padding: 15% 5%;
    }
}

.about-us-body section .about-us-page-self-con img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -300px;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 2;
    filter: brightness(60%);
    background-attachment: fixed;
}

@media (max-width:1025px) {
    .about-us-body section .about-us-page-self-con img {
        object-position: center 0vw;
    }
}

.about-us-body section .about-us-page-self-con .about-us-page-self-con-dets {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
}

@media (min-width:1025px) and (max-width:1443px) {
    .about-us-body section .about-us-page-self-con .about-us-page-self-con-dets {
        width: 70%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .about-us-body section .about-us-page-self-con .about-us-page-self-con-dets {
        width: 80%;
    }
}

@media (max-width:768px) {
    .about-us-body section .about-us-page-self-con .about-us-page-self-con-dets {
        width: 100%;
    }
}

.about-us-body section .about-us-page-self-con .about-us-page-self-con-dets h1 {
    text-align: center;
    font-size: var(--big-font-size);
    color: var(--primary-color);
    position: relative;
    z-index: 3;
    color: white;
}

.about-us-body section .about-us-page-self-con .about-us-page-self-con-dets p {
    text-align: center;
    color: var(--primary-color);
    margin-top: 20px;
    position: relative;
    z-index: 3;
    color: white;
}

.about-us-body section .about-us-page-self-con .about-us-page-self-socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.about-us-body section .about-us-page-self-con .about-us-page-self-socials a {
    width: auto;
    height: auto;
    text-decoration: none;
}

.about-us-body section .about-us-page-self-con .about-us-page-self-socials a svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: white;
    fill: var(--primary-color);
    color: var(--primary-color);
}

/* =======================
    ABOUT US HISTORY CON
======================= */

.about-us-body section .about-us-our-history-con {
    width: 100%;
    height: auto;
    border-top: 1px solid white;
    display: flex;
    justify-content: start;
    align-items: stretch;
}

@media (max-width:768px) {
    .about-us-body section .about-us-our-history-con {
        flex-direction: column-reverse;
    }
}

.about-us-body section .about-us-our-history-con img {
    width: 50%;
    object-fit: cover;
    filter: brightness(60%);
}

@media (max-width:768px) {
    .about-us-body section .about-us-our-history-con img {
        width: 100%;
    }
}

.about-us-body section .about-us-our-history-con .our-history-dets {
    width: 50%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

@media (max-width:768px) {
    .about-us-body section .about-us-our-history-con .our-history-dets {
        width: 100%;
        padding: 5% 5% 10% 5%;
    }
}

.about-us-body section .about-us-our-history-con .our-history-dets h2 {
    font-size: var(--big-font-size);
    padding: 20px 0px;
    color: var(--primary-color);
    border-bottom: 5px solid var(--secondary-color);
    margin-bottom: 10px;
}


/* =======================
    ABOUT US CLIENTS CON
======================= */


.about-us-body section .about-us-why-us-con {
    width: 100%;
    height: auto;
    background-color: rgb(245, 245, 245);
    border-top: 1px solid white;
}

.about-us-body section .about-us-why-us-con .why-us-dets {
    width: 100%;
    padding: 5%;
    padding-bottom: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.about-us-body section .about-us-why-us-con .why-us-dets h2 {
    font-size: var(--big-font-size);
    padding: 20px 0px;
    color: var(--primary-color);
    border-bottom: 5px solid var(--secondary-color);
    margin-bottom: 10px;
}




/* ========================================= 

                Contact Us

========================================= */




.contact-us-body {
    width: 100%;
    height: auto;
}

.contact-us-body section {
    width: 100%;
    height: auto;
}

.contact-us-body section .intro {
    width: 100%;
    height: 450px;
    object-fit: cover;
    padding: 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

.contact-us-body section .intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    filter: brightness(60%);
}

.contact-us-body section .intro h1 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
    color: white;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width:1025px) {
    .contact-us-body section .intro h1 {
        font-size: var(--huge-font-size);
    }
}

.contact-us-body section form {
    width: 30%;
    height: auto;
    margin-left: 35%;
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (min-width:1025px) and (max-width:1443px) {
    .contact-us-body section form {
        width: 50%;
        margin-left: 25%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .contact-us-body section form {
        width: 60%;
        margin-left: 20%;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .contact-us-body section form {
        width: 70%;
        margin-left: 15%;
    }
}

@media (max-width:500px) {
    .contact-us-body section form {
        width: 90%;
        margin-left: 5%;
    }
}

.contact-us-body section form p {
    color: #221e20;
    margin-bottom: 10px;
    text-align: center;
}

.contact-us-body section form .contact-us-page-socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-us-body section form .contact-us-page-socials a {
    width: 50px;
    height: 50px;
    color: #221e20;
    padding: 10px;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.089);
    transition: all linear 0.3s;
}

.contact-us-body section form .contact-us-page-socials a:hover {
    background-color: #221e20;
    scale: 1.2;
}

.contact-us-body section form .contact-us-page-socials a svg {
    width: 100%;
    height: 100%;
    color: #221e20;
    fill: #221e20;
    transition: all linear 0.3s;
}

.contact-us-body section form .contact-us-page-socials a:hover svg {
    fill: white;
    color: white;
}

.contact-us-body section form input {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.089);
}

.arabic-contact-us-body section form input {
    direction: rtl;
}

.contact-us-body section form textarea {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.089);
}

.arabic-contact-us-body section form textarea {
    direction: rtl;
}

.contact-us-body section form input[type=submit] {
    width: auto;
    height: auto;
    padding: 20px;
    border: 1px solid #221e2028;
    border-radius: 16px;
    background-color: var(--primary-color);
    color: white;
    transition: all linear 0.3s;
    cursor: pointer;
}

.contact-us-body section form input[type=submit]:hover {
    background-color: white;
    color: #221e20;
}



/* ========================================= 

                MENU

========================================= */




.menu-body {
    width: 100%;
    height: auto;
}

.menu-body section {
    width: 100%;
    height: auto;
}

.menu-body section .intro {
    width: 100%;
    height: 450px;
    object-fit: cover;
    padding: 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

.menu-body section .intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    filter: brightness(60%);
}

.menu-body section .intro h1 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
    color: white;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width:1025px) {
    .menu-body section .intro h1 {
        font-size: var(--huge-font-size);
    }
}

.menu-body section .menu-container {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5%;
    box-sizing: border-box;
    background-color: white; /* tweak as you like */
}




/* ========================================= 

                FOOTER

========================================= */




footer {
    width: 100%;
    height: auto;
    padding: 5% 5% 0% 5%;
    background: radial-gradient(circle at center,
            #FDEED7 0%,
            #F1D6B2 40%,
            #B49A80 100%);
}

.arabic-footer {
    direction: rtl;
}

footer .footer-body {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

@media (max-width:1025px) {
    footer .footer-body {
        flex-direction: column;
    }
}

footer .footer-body .footer-logo {
    width: 20%;
    height: auto;
}

@media (min-width:768px) and (max-width:1025px) {
    footer .footer-body .footer-logo {
        width: 40%;
        transform: translateX(-10%);
    }
}

@media (max-width:768px) {
    footer .footer-body .footer-logo {
        width: 40%;
        transform: translateX(-10%);
    }
}

footer .footer-body .footer-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

footer .footer-body .footer-logo .footer-socials p {
    color: #221e20;
}

footer .footer-body .footer-btns {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    footer .footer-body .footer-btns {
        width: 100%;
        padding-left: 4%;
        margin-top: 20px;
    }
}

footer .footer-body .footer-btns h2 {
    width: 100%;
    height: auto;
    display: block;
    color: #221e20;
    position: relative;
    padding-bottom: 20px;
}

footer .footer-body .footer-btns h2::after {
    content: '';
    width: 20%;
    height: 1px;
    background-color: #221e20;
    position: absolute;
    top: 100%;
    left: 0%;
}

.arabic-footer .footer-body .footer-btns h2::after {
    right: 0%;
}

footer .footer-body .footer-btns a {
    color: #221e20;
    text-decoration: none;
}

footer .footer-body .footer-btns a {
    text-underline-offset: 5px;
}

footer .footer-body .footer-socials {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
}

@media (max-width:1025px) {
    footer .footer-body .footer-socials {
        width: 100%;
        padding-left: 4%;
        margin-top: 20px;
    }
}

footer .footer-body .footer-socials h2 {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    position: relative;
    color: #221e20;
    margin-bottom: 10px;
}

footer .footer-body .footer-socials h2::after {
    content: '';
    width: 20%;
    height: 1px;
    background-color: #221e20;
    position: absolute;
    top: 100%;
    left: 0%;
}

.arabic-footer .footer-body .footer-socials h2::after {
    right: 0%;
}

footer .footer-body .footer-socials a {
    width: fit-content;
    height: auto;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #221e20;
}

footer .footer-body .footer-socials a svg {
    width: 30px;
    height: 30px;
    color: #221e20;
}

footer .footer-body .footer-mail-sub {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
}

@media (max-width:1025px) {
    footer .footer-body .footer-mail-sub {
        width: 100%;
        padding-left: 4%;
        margin-top: 20px;
    }
}

footer .footer-body .footer-mail-sub .footer-mail-sub-container h2 {
    width: 100%;
    height: auto;
    color: #221e20;
    margin-bottom: 10px;
}

footer .footer-body .footer-mail-sub .footer-mail-sub-container p {
    color: #221e20;
}

footer .footer-body .footer-mail-sub .footer-mail-sub-container form {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 20px;
    border: 1px solid #221e2071;
    border-radius: 16px;
}

footer .footer-body .footer-mail-sub .footer-mail-sub-container form input[type=email] {
    width: 70%;
    height: auto;
    padding: 20px;
    border-radius: 16px 0px 0px 16px;
    border: none;
}

.arabic-footer .footer-body .footer-mail-sub .footer-mail-sub-container form input[type=email] {
    border-radius: 0px 16px 16px 0px;
}

footer .footer-body .footer-mail-sub .footer-mail-sub-container form input[type=submit] {
    width: 30%;
    height: auto;
    padding: 20px;
    border-radius: 0px 16px 16px 0px;
    border: none;
    cursor: pointer;
}

.arabic-footer .footer-body .footer-mail-sub .footer-mail-sub-container form input[type=submit] {
    border-radius: 16px 0px 0px 16px;
}

footer .footer-body .footer-mail-sub .footer-address {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

footer .footer-body .footer-mail-sub .footer-address svg {
    width: 40px;
    height: 40px;
    color: #221e20;
}

footer .footer-credit {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    margin-top: 40px;
    position: relative;
}

footer .footer-credit::before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 100%;
    left: 0%;
    background-color: #221e2036;
}

footer .footer-credit p {
    color: #221e20;
}

footer .footer-credit a {
    color: #221e20;
    text-underline-offset: 5px;
}


/* EMAIL SUBSCRIBE MSG */


.toast {
  position: fixed;
  top: 200px;
  right: 18px;
  z-index: 99999;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #221e20;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast .title { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.toast .msg { font-size: 13px; opacity: .9; line-height: 1.4; }
.toast.ok { background: #221e20; }     /* success */
.toast.err { background: #b91c1c; }    /* error */

.toast button {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
}











