@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&family=Oooh+Baby&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100;200;300;400;500;600;700;800;900&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Scheherazade+New:wght@400;500;600;700&display=swap");

@font-face {
    font-family: "svn-miller_bannerregular";
    src: url("./assets/fonts/svn-miller_banner-webfont.woff2") format("woff2"), url("./assets/fonts/svn-miller_banner-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "calibribold";
    src: url("./assets/fonts/calibrib-webfont.woff2") format("woff2"), url("./assets/fonts/calibrib-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "calibriregular";
    src: url("./assets/fonts/calibri-webfont.woff2") format("woff2"), url("./assets/fonts/calibri-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #CBAB7A;
    --text-color: #272A31;
    --navbar-height: 140px;
}

@media only screen and (max-width: 1200px) {
    :root {
        --navbar-height: 110px;
    }
}

html,
body {
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100vh;
    font-family: "calibriregular", sans-serif !important;
    margin: 0px;
    padding: 0px;
}

/* RTL (Arabic) specific adjustments for global elements */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: 'Noto Sans Arabic', 'Amiri', 'Scheherazade New', 'Arial Unicode MS', 'Tahoma', sans-serif !important;
}

body[dir="rtl"] * {
    font-family: 'Noto Sans Arabic', 'Amiri', 'Scheherazade New', 'Arial Unicode MS', 'Tahoma', sans-serif !important;
}

/* ========================================
   MOBILE MENU STYLES
   ======================================== */

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-content {
    text-align: center;
    padding: 40px 20px;
    padding-top: 70px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 20px;
    position: relative;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.mobile-nav a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(203, 171, 122, 0.3);
}

.mobile-nav a::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-nav a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
}

/* Mobile Language Section */
.mobile-language-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 999;
}

.mobile-language-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 15px 0;
    text-align: center;
}

.mobile-language-switcher {
    display: block;
    text-align: center;
    position: relative;
}

/* Ensure mobile language switcher is visible in mobile menu */
.mobile-menu-content .mobile-language-switcher {
    display: block !important;
}

.mobile-language-switcher .language-dropdown-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-language-switcher .language-dropdown-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mobile-language-switcher .language-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1001;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-language-switcher .language-dropdown-content.show {
    opacity: 1;
    visibility: visible;
}

.mobile-language-switcher .language-option {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    color: var(--text-color);
}

.mobile-language-switcher .language-option:hover {
    background: #f8f9fa;
}

.mobile-language-switcher .language-option.active {
    background: var(--primary-color);
    color: white;
}

/* Mobile Language Section Animation */
.mobile-language-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-language-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

/* Mobile Menu Additional Styles */
@media (min-width: 1200px) {
    .mobile-language-switcher {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .navbar-main {
        position: relative;
        padding: 0px !important;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1002;
    }

    .mobile-language-switcher .language-dropdown-btn {
        background: transparent;
        border: 1px solid var(--text-color);
        color: var(--text-color);
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-language-switcher .language-dropdown-btn:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

    .mobile-language-switcher .language-dropdown-content {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 120px;
        z-index: 1001;
    }

    .mobile-language-switcher .language-option {
        display: block;
        width: 100%;
        padding: 10px 15px;
        border: none;
        background: transparent;
        text-align: left;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .mobile-language-switcher .language-option:hover {
        background: #f5f5f5;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .app-container {
        padding: 0px 50px;
    }

    .navbar-main ul {
        gap: 0px !important;
    }

    .navbar-main ul li {
        font-size: 15px;
    }

    .mobile-language-section {
        display: flex !important;
        gap: 20px;
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide ALL desktop navigation elements */
    .desktop-nav,
    .desktop-nav-right,
    .desktop-nav li,
    .desktop-nav-right li {
        display: none !important;
    }

    /* Hide desktop language switcher */
    .desktop-nav-right .language-switcher {
        display: none !important;
    }

    /* Hide mobile language switcher from navbar only */
    .navbar-container .mobile-language-switcher {
        display: none;
    }

    /* Adjust navbar layout for mobile */
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        position: relative;
    }

    .navbar-logo {
        order: 1;
        text-align: center;
    }

    .mobile-menu-toggle {
        order: 2;
    }

    /* Ensure no desktop nav shows */
    .navbar-container ul:not(.mobile-nav) {
        display: none !important;
    }

    /* Hide any remaining desktop navigation elements */
    .navbar-container>ul {
        display: none !important;
    }

    /* Ensure mobile menu is the only navigation visible */
    .navbar-main .desktop-nav,
    .navbar-main .desktop-nav-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 0px 20px !important;
    }

    .navbar-main {
        padding: 15px 0 !important;
    }

    .navbar-container {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-main img {
        width: 100px;
        height: 70px;
    }

    .mobile-language-switcher {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .app-container {
        padding: 0px 15px !important;
    }

    .navbar-main ul {
        gap: 10px;
    }

    .navbar-main ul li {
        font-size: 12px;
    }

    .navbar-main img {
        width: 80px;
        height: 60px;
    }
}

.navbar-main {
    position: fixed;
    top: 0;
    z-index: 10000;
    transition: all ease 1s;
    background: #ffffff;
    padding: 20px 0 20px;
    border: none;
    left: 0;
    right: 0;
}

.navbar-main.navbar-scrolled {
    padding: 20px 0 20px;
    transition: all ease 1s;
    border: 1px solid #F6F6F6;
}

.app-container {
    padding: 0px 190px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-main img {
    object-fit: cover;
    object-position: center;
}

.navbar-main ul {
    display: flex;
    list-style-type: none;
    gap: 45px;
    margin: 0px;
    padding: 0px;
    margin: 20px 0px 0ps;
}

.navbar-main ul li {
    font-family: "calibribold", sans-serif;
    color: var(--text-color);
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    padding: 5px 0px;
}

.navbar-main ul li a {
    text-decoration: none;
    color: inherit;
}

.navbar-main ul li:hover {
    color: var(--primary-color);
}

.navbar-main ul li:hover::before {
    background-color: var(--text-color);
}

.navbar-main ul li::before {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    content: " ";
    position: absolute;
    left: 0px;
    bottom: 0px;
}

/* grid widths */

.desktop-width-50 {
    width: 50%;
    margin: 0px auto;
}

@media only screen and (max-width: 1500px) {
    .app-container {
        padding: 0px 50px;
    }
}

.main-button {
    background: var(--primary-color) !important;
    font-size: 17px;
    padding: 10px 25px;
    border: none;
    text-align: center;
    color: #272A31 !important;
    letter-spacing: 3px;
    font-weight: normal;
    text-transform: uppercase;
    border: 1px solid var(--primary-color) !important;
    display: inline-block;
    font-family: "calibribold", sans-serif;
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.main-button:hover {
    background: #272A31 !important;
    color: white !important;
    border: 1px solid #272A31 !important;
}

h2 {
    font-size: 35px;
    line-height: 40px;
    font-family: "Domine", serif;
    font-weight: normal;
    margin: 0px;
    margin-bottom: 20px;
}

h3 {
    font-size: 25px;
    line-height: 35px;
    font-family: "Domine", serif;
    font-weight: normal;
    margin: 0px;
    margin-bottom: 20px;
}

blockquote {
    background: none;
    text-align: left;
    padding: 0 0 0 30px;
    border-left: 5px solid #CBAB7A;
    margin: 0px;
}

blockquote p {
    font-size: 35px !important;
    line-height: 40px !important;
    font-family: "Domine", serif;
    margin: 0px;
}

blockquote p:first-child {
    margin-bottom: 10px;
}

blockquote cite {
    color: #CBAB7A;
    font-size: 15px;
    letter-spacing: 2px;
    font-family: "calibriregular", sans-serif !important;
    display: block;
}

/* Footer */

.footer-main {
    background: #1a1a1a;
    color: white;
    padding: 60px 0px 0px 0px;
}

.footer-main .app-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-hours p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-hours strong {
    color: var(--primary-color);
}

.footer-bottom {
    background: #0f0f0f;
    padding: 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 12px;
    margin: 5px 0;
}

.footer-bottom span {
    color: var(--primary-color);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0px 0px 0px;
    }

    .footer-main .app-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-contact p,
    .footer-section ul li a,
    .footer-hours p {
        font-size: 13px;
    }

    .page-info {
        left: 30px !important;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0px 0px 0px;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-contact p,
    .footer-section ul li a,
    .footer-hours p {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

.page-info {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    left: 60px;
    z-index: 99;
}

html[dir="rtl"] .page-info {
    left: auto;
    right: 60px;
}

.page-info p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    position: relative;
    text-shadow: 0px -1px 6px rgb(0, 0, 0);
    font-weight: bold;
}

.page-info p:last-child {
    color: var(--primary-color);
}

/* Did you know section */

.did-you-know-section {
    width: 100%;
    background-color: #F6F6F6;
    padding: 50px 0px;
}

.did-you-know-section .app-container {
    display: flex;
    justify-content: center;
}

.dyks-container {
    width: 100%;
    max-width: 750px;
    gap: 40px;
    display: flex;
    align-items: center;
}

.image-dyks img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    border: 5px solid var(--primary-color);
    flex-shrink: 0;
}

.content-dyks p {
    color: #29343A;
    line-height: 28px;
    font-size: 18px;
    margin: 0px 0px 10px;
}

.banner-bottom {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.banner-bottom-content {
    position: absolute;
    bottom: 70px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

.banner-bottom-content h5 {
    font-size: 85px;
    line-height: 90px;
    font-family: "Oooh Baby", serif;
    text-align: center;
    text-shadow: 0 0 4px rgb(0, 0, 0);
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
}

.explore-section {
    padding: 80px 0px;
}

/* .explore-slide {
    margin: 0;
    border: 5px solid #ffffff;
    box-shadow: 0px 25px 52px -25px rgba(0, 0, 0, 0.5);
}

.content-es-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    overflow: hidden;
}

.content-es-slider img {
    opacity: 0;
    pointer-events: none;
}

.content-es-slider h3 {
    font-size: 25px;
    line-height: 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.explore-slide.slick-center {
    transform: scale(1.5);
    position: relative;
    z-index: 3;
}

.explore-slide:not(.slick-center) {
    transform: scale(1.2);
    position: relative;
    z-index: 2;
} */

.explore-slider .slick-list {
    padding: 60px !important;
}

.explore-slide {
    position: relative;
    transition: transform 0.3s, opacity 0.3s;
    text-align: center;
    border: 5px solid #ffffff;
    box-shadow: 0px 25px 52px -25px rgba(0, 0, 0, 0.5);
}

.slick-center.explore-slide {
    transform: scale(1.3);
    z-index: 2;
    box-shadow: none;
}

.explore-slide img {
    width: 100%;
}

.explore-slide h3 {
    font-size: 25px;
    line-height: 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

.sidebar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 0px;
}

.sidebar-wrapper .app-container {
    width: 100%;
    display: flex;
}

.sidebar-container-sw {
    width: 100%;
    max-width: 490px;
    padding-right: 120px;
    box-sizing: border-box;
}

html[dir="rtl"] .sidebar-container-sw {
    padding-right: auto;
    padding-left: 120px;
}

.sidebar-container-sw span:first-child {
    color: var(--primary-color);
    font-size: 14px;
}

.sidebar-menu {
    background: transparent;
    border: 1px solid #272A31;
    padding: 30px 30px 40px 30px;
    margin: 50px 0;
    position: relative;
    border-left: 64.4px solid #272A31;
    min-height: 270px;
}

.sidebar-title {
    position: absolute;
    top: 333px;
    left: -64.4px;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    background: #272A31;
    color: #ffffff;
    padding: 15px 25px;
    font-family: "Domine", serif;
    font-size: 30px;
}

.sidebar-menu ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.sidebar-menu ul li a {
    border-bottom: 1px solid #CBAB7A;
    display: block;
    padding: 10px 20px 10px 0;
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.content-container-sw {
    flex-grow: 1;
    box-sizing: border-box;
}

@media only screen and (max-width: 1800px) {
    .sidebar-title {
        font-size: 20px;
        left: -60px;
        top: 300px;
    }
}

@media only screen and (max-width: 1200px) {
    .sidebar-menu {
        display: none;
    }

    .sidebar-wrapper .app-container {
        flex-direction: column;
    }

    .sidebar-container-sw {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .dyks-container {
        flex-direction: column;
        justify-content: center;
    }

    .banner-bottom {
        height: 50vh;
    }

    .banner-bottom-content {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .banner-bottom-content h5 {
        font-size: 50px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 480px) {

    .banner-bottom-content h5 {
        font-size: 40px;
        line-height: 45px;
    }
}