/* Start Global */

:root {
    --main-color: #415b40;
    --second-color: #FFFFFF;
    --third-color: #f5c86d;
    --fourth-color: #37432d;

    --mdb-red: #f44336;
    --mdb-pink: #e91e63;
    --mdb-purple: purple-500;
    --mdb-indigo: #3f51b5;
    --mdb-blue: #2196f3;
    --mdb-cyan: #00bcd4;
    --mdb-teal: #009688;
    --mdb-green: #4caf50;
    --mdb-yellow: #ffeb3b;
    --mdb-orange: #ff9800;
    --mdb-white: #fff;
    --mdb-black: #000;
    --mdb-gray: #757575;
    --mdb-gray-dark: #4f4f4f;
    --mdb-gray-50: #fbfbfb;
    --mdb-gray-100: #f5f5f5;
    --mdb-gray-200: #eee;
    --mdb-gray-300: #e0e0e0;
    --mdb-gray-400: #bdbdbd;
    --mdb-gray-500: #9e9e9e;
    --mdb-gray-600: #757575;
    --mdb-gray-700: #616161;
    --mdb-gray-800: #4f4f4f;
    --mdb-gray-900: #262626;
    --mdb-primary: #f5c86d;
    --mdb-secondary: #9fa6b2;
    --mdb-success: #14a44d;
    --mdb-danger: #dc4c64;
    --mdb-warning: #e4a11b;
    --mdb-info: #54b4d3;
    --mdb-light: #fbfbfb;
    --mdb-dark: #332d2d;
    --mdb-primary-rgb: 245,200 ,109;
    --mdb-secondary-rgb: 159,166,178;
    --mdb-success-rgb: 20,164,77;
    --mdb-danger-rgb: 220,76,100;
    --mdb-warning-rgb: 228,161,27;
    --mdb-info-rgb: 84,180,211;
    --mdb-light-rgb: 251,251,251;
    --mdb-dark-rgb: 51,45,45;
    --mdb-white-rgb: 255,255,255;
    --mdb-black-rgb: 0,0,0;
    --mdb-body-color-rgb: 79,79,79;
    --mdb-body-bg-rgb: 255,255,255;
    --mdb-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --mdb-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --mdb-gradient: linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));
    --mdb-body-font-family: var(--mdb-font-roboto);
    --mdb-body-font-size: 1rem;
    --mdb-body-font-weight: 400;
    --mdb-body-line-height: 1.6;
    --mdb-body-color: #4f4f4f;
    --mdb-body-bg: #fff;
    --mdb-border-width: 1px;
    --mdb-border-style: solid;
    --mdb-border-color: #e0e0e0;
    --mdb-border-color-translucent: rgba(0,0,0,0.175);
    --mdb-border-radius: 0.25rem;
    --mdb-border-radius-sm: 0.25rem;
    --mdb-border-radius-lg: 0.5rem;
    --mdb-border-radius-xl: 1rem;
    --mdb-border-radius-2xl: 2rem;
    --mdb-border-radius-pill: 50rem;
    --mdb-link-color: #3b71ca;
    --mdb-link-hover-color: #386bc0;
    --mdb-code-color: #e91e63;
    --mdb-highlight-bg: #fff9c4
}

body {
    font-family: "Zain", sans-serif;
    font-style: normal;
    font-size: 25px;
    background-color: var(--main-color);
    color: var(--second-color);
}

.zindex {
    z-index: 5;
}

h2 {
    font-weight: 600;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--third-color);
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.spacing {
    height: 100px;
}

.px-auto {
    padding-left: 50px;
    padding-right: 50px
}

.bg-dark {
    background-color: var(--fourth-color);
}

/* End Global */

/* Start Logo */

#logo {
    z-index: 1510;
    top: 0px;
    left: 52%;
    animation-name: mymove;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    width: 10% !important;
}

@media (max-width: 576px) {
    #logo {
        width: 50%;
        top: 10px;
        left: 20%;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    #logo {
        width: 50%;
        top: 20px;
        left: 25%;
    }
}

/* End Logo */

/* Start Header */

header {
    height: 80px;
    background-color: transparent;
    transition: background-color 0.4s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

header {
    animation-name: movelang;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

/* Start Navbar */

/* Hidden checkbox */

#menu-toggle {
    display: none;
}

/* Menu button */

.menu-button {
    position: fixed;
    top: 20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

/* Before menu open (☰) */
.menu-button::before {
    content: "☰";
    color: white;
}

/* After menu close (✖) */

#menu-toggle:checked + .menu-button::before {
    content: "✖";
    color: white;
}

/* Main menu */

.curtain-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 91, 64, 0.9);
    display: flex;
    justify-content: left;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
    padding-left: 20px;
}

.curtain-menu ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.curtain-menu ul li {
    margin: 20px 0;
}

.curtain-menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: white;
    transition: 0.3s;
}

.curtain-menu ul li a:hover {
    color: #f39c12;
}

#menu-toggle:checked + .menu-button + .curtain-menu {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .menu-button {
        top: 20px;
        left: 20px;
    }
}

/* End Navbar */

/* Start Menu Language */
.menu-language {
    text-align: left;
    z-index: 1510;
    display: inline-block;
    left: 150px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .menu-language {
        left: 75% !important;
        /* top: 40px !important; */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .menu-language {
        left: 75% !important;
        /* top: 40px !important; */
    }
}

.menu-language .dropdown {
    cursor: pointer;
}

.menu-language .dropdown:hover .dropdown-content {
    display: block;
    margin-top: -40px;
    max-width: 50px !important;
}

.menu-language .dropbtn::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url(../images/globe-solid.svg);
    background-size: 14px 14px;
    transform: translateY(3px);
    margin-right: 7px;
    opacity: 1;
}

.menu-language .dropbtn::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url(../images/chevron-down-solid.svg);
    background-size: 12px 12px;
    margin-left: 5px;
}

@keyframes movelang {
    from {
        top: 50px;
    }
    to {
        top: 0px;
    }
}


/* End Menu Language */

/* Start Social Media */

.socialmedia {
    top: 20px;
    right: 50px;
    display: inline-block;
    z-index: 1000;
}

.socialmedia ul li {
    margin-right: 15px;
}

@media (max-width: 576px) {
    .socialmedia {
        display: none;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .socialmedia {
        display: none;
    }

    .socialmedia ul li {
        margin-right: 5px;
    }
}

/* End Social Media */

/* Start Hero */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: slideZoom 18s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeOverlay 18s infinite;
}

.caption {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 15px 20px;
    font-size: 45px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeText 18s infinite;
}

@media (max-width: 576px) {
    .caption {
        visibility: hidden;
    }
}

@keyframes slideZoom {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
    5% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    30% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    40% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0; }
}

@keyframes fadeOverlay {
    0%, 100% { opacity: 0; }
    5%, 30% { opacity: 1; }
    40%, 100% { opacity: 0; }
}

@keyframes fadeText {
    0%, 100% { opacity: 0; }
    5%, 30% { opacity: 1; }
    40%, 100% { opacity: 0; }
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }

.slide:nth-child(1) .caption, .slide:nth-child(1) .overlay { animation-delay: 0s; }
.slide:nth-child(2) .caption, .slide:nth-child(2) .overlay { animation-delay: 6s; }
.slide:nth-child(3) .caption, .slide:nth-child(3) .overlay { animation-delay: 12s; }

/* End Hero */

/* Start Text Animation */

#hero-animi {
    position: absolute;
    top: 30%;
    left: 15%;
    animation-name: myhero;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

.t3xts {
    position: relative;
    perspective: 1000px;
    z-index: 3;
    font-size: 3.5vw;
    letter-spacing: 2px;
}

@media (max-width: 576px) {
    .t3xts {
        letter-spacing: normal !important;
        font-size: 4vw;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .t3xts {
        letter-spacing: normal !important;
    }
}

.t3xt {
    transform-style: preserve-3d;
    position: absolute;
    top: 0;

}

.t3xt-out {
    animation: text-out 0.5s ease;
}

.t3xt-in {
    animation: text-in 0.5s ease;
}

@keyframes text-out {
    to {
        transform: rotateX(90deg);
        opacity: 0;
    }
}

@keyframes text-in {
    from {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.title-boxes {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 3;
    animation-name: mytitlebox;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

.title-boxes .dv-icon-box {
    margin-top: 25px;
}

.title-boxes .dv-icon-box .box-icon img {
    width: 12%;
    height: auto;
}

.title-boxes .dv-icon-box .box-icon h6 {
    font-size: 2vw;
}

@media (max-width: 576px) {
    .title-boxes .dv-icon-box .box-icon h6 {
        font-size: 3.5vw;
    }
}

.ref {
    background-color: #000;
    border-radius: 3px;
    padding: 5px 8px;
    position: absolute;
    font-size: 16px;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-weight: 300;
    font-family: sans-serif;
    text-decoration: none;
}

.ref::first-letter {
    font-size: 12px;
}

/* End Text Animation */

/* Start lines h2 */

.title-with-lines {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.line {
    background-color: var(--third-color);
    border-radius: 2px;
}

.line.big {
    width: 50px;
    height: 3px;
}

.line.small {
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
}

/* End lines h2 */

.media-29101 img {
    margin-bottom: 20px;
}

/* Start Animation */

@keyframes mymove {
    0% {
        top: -200%;
        left: 52%;
    }
    /* 75% {
        top: -25%;
        left: 43%;
    } */
    100% {
        top: 5px;
        left: 52%;
    }
}

@keyframes myhero {
    0% {
        top: 60%;
        left: 15%;
    }
    75% {
        top: 60%;
        left: 15%;
    }
    100% {
        top: 30%;
        left: 15%;
    }
}

@keyframes mytitlebox {
    0% {
        top: 90%;
        left: 15%;
    }
    75% {
        top: 90%;
        left: 15%;
    }
    100% {
        top: 60%;
        left: 15%;
    }
}

@keyframes pulse {
    0% {
        width: 0 !important;
    }
    40% {
        width: 3% !important;
    }
    60% {
        width: 3% !important;
    }
    100% {
        width: 6% !important;
    }
}

/* End Animation */

/* Start Slider */

.slider {
    background-color: var(--fourth-color);
}

.text-slider {
    text-align: justify;
    padding-top: 20px;
}

/* End Slider */

/* Start Menu list */

.end-list {
    border-bottom: 1px solid #f5c86d;
}

.btn-view-menus {
    border: 1px solid var(--third-color);
    border-radius: 0;
    color: var(--third-color);
    font-size: 1.5rem;
}

.btn-view-menus:hover {
    background-color: var(--third-color);
    color: var(--fourth-color);
    border: 1px solid var(--third-color);
}

/* End Menu list */

/* Start Video Section */

.video-section {
    background-color: var(--fourth-color);
}

.icon-true {
    color: var(--third-color);
}

/* End Video Section */

/* Start testimonials */

.testimonial-img {
    border-radius: 50%;
}

.item {
    border: 1px solid var(--third-color);
    border-radius: 25px;
}

/* End testimonials */

/* Start Footer */

footer {
    background-color: var(--fourth-color);
    border-top: 2px solid var(--third-color);
    font-size: 20px;
}

footer hr,
footer h4 {
    color: var(--third-color);
}

/* End Footer */

.nav-link {
    color: var(--third-color);
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px; /* Adjust to align with content */
}

.nav-tabs .nav-link:hover {
    color: var(--fourth-color);
    border-bottom-color: transparent;
    background-color: var(--third-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--second-color);
    background-color: transparent;

}

.nav-tabs {
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .nav-item {
    margin-right: 1rem;
}

.list-group {
    --mdb-list-group-bg: transparent;
    --mdb-list-group-border-color: none;
    --mdb-list-group-border-radius: none;
}

.list-group-item {
    color: var(--second-color);
}

.order-button {
    font-size: 1rem;
}

.badge {
    color: var(--third-color);
    font-size: 1.5rem;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-width: 1px;
    border: 1px solid var(--third-color);
    color: var(--main-color);
    background-color: var(--third-color);
}

.nav-tabs .nav-link {
    --mdb-nav-tabs-link-font-size: 1.5rem;
    --mdb-nav-tabs-link-color: var(--second-color);
    border-width: 1px;
    border: 1px solid var(--second-color);
    margin: 10px;
}

.hero-insed {
    background-image: url("../images/hero-insed.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    padding-top: 150px;
}


.img-thumbnail {
    padding: 0;
}


.list-group-item {
    padding: 10px;
}


/* Start gallery */

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid var(--third-color);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(55, 67, 45, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-controls {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-left {
    left: 25px;
}

.nav-right {
    right: 25px;
}

.lightbox-controls i {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    background: none;
}

.fullscreen-btn {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.hero-insed {
    background-image: url("../images/hero-insed.jpg");
    background-repeat: no-repeat;
    padding-top: 150px;
}

/* End gallery */
