body {
    font-family: 'Cairo', sans-serif;
}

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

body {
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(220, 24%, 12%);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
    }
}

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

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
}

ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--white-color);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-semi-bold);
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
    font-weight: initial;
    font-size: 1.25rem;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close {
    opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
    .nav {
        height: 80px;
    }

    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--black-color);
        padding-top: 1rem;
    }
}



.nav__link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.nav__link:hover {
    background-color: var(--black-color-light);
}

/* ===== HEADER FIX ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    z-index: 9999;
}

/* ترتيب كامل للهيدر */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* الحاوية الأساسية */
.nav__data {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ===== DROPDOWN FIX ===== */

/* Desktop */


/* Mobile */
@media (max-width: 1118px) {

    .dropdown__menu,
    .dropdown__submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .dropdown__item.open .dropdown__menu {
        max-height: 600px;
    }

    .dropdown__subitem.open .dropdown__submenu {
        max-height: 600px;
    }

    .dropdown__link,
    .dropdown__sublink {
        justify-content: center;
        text-align: center;
    }
}



/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }
}

/*=============== DESKTOP DROPDOWN FIX ===============*/
@media screen and (min-width: 1118px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
        align-items: center;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
        background: transparent;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        right: 50%;
        left: auto;
        top: calc(100% + 18px);
        transform: translateX(50%);
        width: 230px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s, top .3s;
        z-index: 9999;
        background: var(--black-color-light);
    }

    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        right: 100%;
        left: auto;
        top: 0;
        width: 240px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s, right .3s;
        z-index: 9999;
        background: var(--black-color-lighten);
    }

    .dropdown__link,
    .dropdown__sublink {
        padding: 1rem 1.2rem;
        white-space: nowrap;
    }

    .dropdown__subitem .dropdown__link {
        padding: 1rem 1.2rem;
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        top: calc(100% + 8px);
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
    }
}

/* ❌ اخفاء زر المنيو في اللابتوب */
@media (min-width: 1119px) {
    .nav__toggle {
        display: none;
    }
}

/* الحاوية */
.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== زر المود (السويتش) ===== */
/* From Uiverse.io by Emil190313 */
.toggle {
    background-color: #b3844c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.input {
    display: none;
}

.icon {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    transition: transform 500ms;
}

.icon--moon {
    transition-delay: 200ms;
    color: black;
}

.icon--sun {
    transform: scale(0);
    color: yellow;
}

#switch:checked+.icon--moon {
    transform: rotate(360deg) scale(0);
}

#switch:checked~.icon--sun {
    transition-delay: 200ms;
    transform: scale(1) rotate(360deg);
}

@media (max-width: 768px){
    .icon-menu {
  --gap: 5px;
  --height-bar: 2.5px;
  --pos-y-bar-one: 0;
  --pos-y-bar-three: 0;
  --scale-bar: 1;
  --rotate-bar-one: 0;
  --rotate-bar-three: 0;
  width: 25px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  cursor: pointer;
  position: relative;
}

.bar {
  position: relative;
  height: var(--height-bar);
  width: 100%;
  border-radius: .5rem;
  background-color: #b38345;
}

.bar--1 {
  top: var(--pos-y-bar-one);
  transform: rotate(var(--rotate-bar-one));
  transition: top 200ms 100ms, transform 100ms;
}

.bar--2 {
  transform: scaleX(var(--scale-bar));
  transition: transform 150ms 100ms;
}

.bar--3 {
  bottom: var(--pos-y-bar-three);
  transform: rotate(var(--rotate-bar-three));
  transition: bottom 200ms 100ms, transform 100ms;
}

.check-icon:checked + .icon-menu > .bar--1 {
  transition: top 200ms, transform 200ms 100ms;
}

.check-icon:checked + .icon-menu > .bar--3 {
  transition: bottom 200ms, transform 200ms 100ms;
}

.check-icon:checked + .icon-menu {
  --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
  --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
  --scale-bar: 0;
  --rotate-bar-one: 45deg;
  --rotate-bar-three: -45deg;
}
}
/* From Uiverse.io by Creatlydev */ 


/* FIN ICON-MENU */





/* ===== زر اللغة ===== */
/* زر الترجمة */
.lang-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

/* الأيقونة */
.lang-btn i {
    font-size: 16px;
}





/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* الصورة */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* التظليل (نفس التصميم) */
.overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.35) 0%,
            rgba(15, 23, 34, 0.55) 40%,
            rgba(15, 23, 34, 0.85) 100%);

    z-index: 1;
}

/* الهيدر فوق الكل */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* ===== EXPLORE SECTION ===== */
.explore-section {
    width: 100%;
    background: #f5f4f1;
    padding: 90px 60px;
}

/* الحاوية */
.explore-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* ===== LEFT SIDE ===== */
.explore-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* الصورة المستطيلة */
.explore-top-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* STORES */
.stores-big-title {
    font-size: 80px;
    color: #c89b5a;
    font-weight: 500;
    line-height: 0.9;
}

/* الزر */
.explore-button {
    width: fit-content;
    padding: 12px 28px;
    background: #c89b5a;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: 0.3s;
}

.explore-button:hover {
    background: #b38345;
}

/* ===== RIGHT SIDE ===== */
.explore-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* EXPLORE OUR */
.explore-big-title {
    font-size: 72px;
    color: #c89b5a;
    font-weight: 500;
    line-height: 1;
}

/* صور الفاشن */
.fashion-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* كل عنصر */
.fashion-item {
    text-align: center;
}

/* الصورة البيضاوية */
.fashion-thumb {
    width: 100%;
    height: 260px;
    border-radius: 200px;
    overflow: hidden;
}

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

/* النص */
.fashion-label {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

/* ========================= */
/* 📱 TABLET */
@media (max-width: 1024px) {
    .explore-right {
        order: 1;
    }

    .explore-left {
        order: 2;
    }

    .explore-wrapper {
        grid-template-columns: 1fr;
    }

    .explore-big-title {
        font-size: 50px;
    }

    .stores-big-title {
        font-size: 60px;
    }

    .fashion-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================= */
/* 📱 MOBILE */
@media (max-width: 768px) {
    .explore-section {
        padding: 50px 20px;
    }

    /* نحذف الصورة المستطيلة */
    .explore-top-image {
        display: none;
    }

    .explore-big-title {
        font-size: 40px;
    }

    .stores-big-title {
        font-size: 45px;
    }

    .fashion-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .fashion-thumb {
        height: 200px;
    }

    .explore-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ===== PROMO SWIPER SECTION ===== */
.promo-section {
    width: 100%;
    padding: 60px 60px;
    background: #f5f4f1;
}

.promoSwiper {
    width: 100%;
    overflow: hidden;
}

.promo-slide-dynamic {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 442 / 452;
}

.promo-slide-dynamic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pagination dots */
.swiper-pagination {
    position: relative;
    margin-top: 22px;
}

.swiper-pagination-bullet {
    background: #c89b5a;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
}

/* Dark Mode */
body.dark-mode .promo-section {
    background: #081120;
}

body.dark-mode .promo-slide-dynamic img {
    filter: brightness(0.82);
}

/* Tablet */
@media (max-width: 1024px) {
    .promo-section {
        padding: 45px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .promo-section {
        padding: 35px 20px;
    }

    .promo-slide-dynamic {
        aspect-ratio: 442 / 452;
        border-radius: 22px;
    }
}

/* ===== FOOD SECTION ===== */
.food-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* الصورة */
.food-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* التظليل (نفس الهيرو بالضبط) */
.food-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.35) 0%,
            rgba(15, 23, 34, 0.55) 40%,
            rgba(15, 23, 34, 0.85) 100%);
    z-index: 1;
}

/* النص */
.food-content-home {
    position: absolute;
    right: 250px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 600px;
    text-align: right;
}

.food-content-home h2 {
    font-size: 60px;
    margin-bottom: 10px;
}

.food-content-home p {
    font-size: 76px;
    font-weight: 1000;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* الزر */
.food-btn {
    display: inline-block;
    background: #c89b5a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .food-section {
        height: 420px;
    }

    .food-section .food-content-home {
        right: 20px;
        left: 20px;
        top: auto;
        bottom: 35px;
        transform: none;
        max-width: 300px;
        text-align: right;
    }

    .food-section .food-content-home h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .food-section .food-content-home p {
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 14px;
        font-weight: 800;
    }

    .food-section .food-btn {
        font-size: 13px;
        padding: 9px 16px;
    }
}

.advantages-section {
    background: linear-gradient(180deg, #f8f6f2 0%, #f1ede6 100%);
    padding: 100px 60px;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.advantages-heading {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(200, 155, 90, 0.12);
    color: #b3844c;
    border: 1px solid rgba(200, 155, 90, 0.25);
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.advantages-title {
    font-size: 56px;
    line-height: 1.1;
    color: #b3844c;
    margin-bottom: 12px;
    font-weight: 700;
}

.advantages-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #5f564d;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.adv-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(180, 136, 79, 0.12);
    border-radius: 28px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(28, 20, 12, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(28, 20, 12, 0.1);
}

.adv-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffaf3 0%, #f3e5d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon-wrap img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.adv-card h3 {
    font-size: 22px;
    color: #2d241b;
    margin-bottom: 10px;
    font-weight: 700;
}

.adv-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #6c6257;
    margin: 0;
}

/* النقاط مخفية افتراضيًا */
.adv-dots {
    display: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .advantages-section {
        padding: 80px 30px;
    }

    .advantages-title {
        font-size: 44px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 20px;
    }

    .advantages-title {
        font-size: 34px;
    }

    .advantages-subtitle {
        font-size: 15px;
    }

    .advantages-container {
        position: relative;
    }

    .advantages-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 0;
    }

    .advantages-grid::-webkit-scrollbar {
        display: none;
    }

    .adv-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-radius: 24px;
        padding: 24px 18px 52px;
        position: relative;
    }

    .adv-card h3 {
        font-size: 20px;
    }

    .adv-card p {
        font-size: 14px;
    }

    /* النقاط داخل الكرت بصريًا */
    .adv-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        position: absolute;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        z-index: 5;
        pointer-events: none;
    }

    .adv-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        transition: 0.3s ease;
    }

    .adv-dots .dot.active {
        background: #c89b5a;
        transform: scale(1.25);
    }

    .advantages-grid {
        direction: ltr;
    }
}

/* ===== ENTERTAINMENT SECTION ===== */
.entertainment-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.entertainment-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entertainment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.35) 0%,
            rgba(15, 23, 34, 0.55) 40%,
            rgba(15, 23, 34, 0.85) 100%);
    z-index: 1;
}

.entertainment-content {
    position: absolute;
    right: 250px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 600px;
    text-align: right;
}

.entertainment-content h2 {
    font-size: 60px;
    margin-bottom: 10px;
}

.entertainment-content p {
    font-size: 76px;
    font-weight: 1000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.entertainment-btn {
    display: inline-block;
    background: linear-gradient(#596F75, #DF69A6);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .entertainment-section {
        height: 350px;
    }

    .entertainment-content {
        right: 20px;
        left: 20px;
        text-align: right;
    }

    .entertainment-content h2 {
        font-size: 28px;
    }

    .entertainment-content p {
        font-size: 18px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: #f5f4f1;
    padding: 100px 0;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* ===== الصور ===== */
.gallery-images {
    position: relative;
    width: 100%;
    height: 500px;
}

.gallery-images .img {
    position: absolute;
    object-fit: cover;
}

/* توزيع الصور مثل التصميم */
.img1 {
    width: 220px;
    height: 260px;
    left: 0;
    top: 120px;
}

.img2 {
    width: 180px;
    height: 120px;
    left: 300px;
    top: 0;
}

.img3 {
    width: 260px;
    height: 160px;
    right: 200px;
    top: 20px;
}

.img4 {
    width: 220px;
    height: 280px;
    right: 0;
    top: 140px;
}

.img5 {
    width: 200px;
    height: 240px;
    left: 120px;
    bottom: 0;
}

/* ===== النص ===== */
.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #b3844c;
}

.gallery-text h2 {
    font-size: 48px;
    line-height: 1.4;
    font-weight: 700;
}

/* ===== السوشال ===== */
.gallery-social {
    margin-top: 20px;
    text-align: center;
}

.gallery-social span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.icons i {
    font-size: 18px;
    color: #b3844c;
}

.icons a {
    color: #b3844c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icons svg {
    width: 24px;
    height: 24px;
}

.icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-container {
        position: relative;
        min-height: 760px;
    }

    /* الصور في الخلف */
    .gallery-images {
        position: relative;
        width: 100%;
        height: 560px;
        z-index: 1;
    }

    .gallery-images .img {
        position: absolute;
        object-fit: cover;
        transition: transform 0.15s linear;
        will-change: transform;
    }

    /* النص فوق الصور */
    .gallery-text {
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #b3844c;
        z-index: 5;
        width: 180px;
    }

    .gallery-text h2 {
        font-size: 34px;
        line-height: 1.5;
        font-weight: 700;
    }

    .gallery-social {
        margin-top: 14px;
        text-align: center;
    }

    .gallery-social span {
        display: block;
        margin-top: 8px;
        font-size: 14px;
    }

    .gallery-images .img {
        position: absolute;
        object-fit: cover;
        transition: transform 0.12s linear;
        will-change: transform;
    }

    .icons {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .icons i {
        font-size: 18px;
        color: #b3844c;
    }

    /* توزيع الصور العشوائي */
    .img1 {
        width: 145px;
        height: 180px;
        left: 0;
        top: 170px;
    }

    .img2 {
        width: 118px;
        height: 92px;
        left: 95px;
        top: 20px;
        z-index: 2;
    }

    .img3 {
        width: 118px;
        height: 170px;
        right: 0;
        top: 0;
    }

    .img4 {
        width: 110px;
        height: 190px;
        right: 10px;
        top: 195px;
    }

    .img5 {
        width: 150px;
        height: 175px;
        left: 110px;
        top: 350px;
        /* كانت 360 → نزلناها */
    }
}

.site-footer {
    background: #f3f1f1;
    padding: 150px 81px 36px;
    direction: rtl;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 160px 160px 220px;
    justify-content: center;
    align-items: start;
    column-gap: 48px;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-brand img {
    width: 210px;
    height: auto;
    display: block;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 8px;
}

.footer-nav a {
    text-decoration: none;
    color: #111;
    font-size: 23px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: #111;
    font-size: 23px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-social i {
    font-size: 27px;
    width: 30px;
    text-align: center;
}

.footer-divider {
    max-width: 1200px;
    margin: 62px auto 26px;
    border-top: 4px solid #6d5747;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-copy {
    margin: 0;
    font-size: 26px;
    line-height: 1.6;
    color: #9a9a9a;
    font-weight: 500;
}

.footer-copy a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 700;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    color: #111;
}

@media (max-width: 768px) {

    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;

        flex-direction: row; /* صف */

        margin-top: 20px;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        gap: 6px;

        text-decoration: none;
        color: #111;
        font-size: 15px;
    }

    .footer-social svg {
        width: 22px;
        height: 22px;
    }

}

/* Tablet */
@media (max-width: 1024px) {
    .site-footer {
        padding: 90px 30px 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand img {
        width: 180px;
    }

    .footer-nav a,
    .footer-social a {
        font-size: 20px;
    }

    .footer-copy {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .footer-brand img {
        width: 150px;
    }

    .footer-nav,
    .footer-social {
        text-align: center;
        align-items: center;
    }

    .footer-nav a,
    .footer-social a {
        font-size: 18px;
        line-height: 1.6;
    }

    .footer-social i {
        font-size: 22px;
        width: 24px;
    }

    .footer-divider {
        margin: 36px auto 20px;
        border-top-width: 3px;
    }

    .footer-copy {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* ===== SHOPS HERO SECTION ===== */
.shops-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.shops-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shops-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.249) 0%,
            rgba(15, 23, 34, 0.434) 45%,
            rgba(15, 23, 34, 0.538) 100%);
    z-index: 1;
}

.shops-hero-content {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 640px;
    color: #fff;
    text-align: right;
}

.shops-hero-title {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 18px;
}

.shops-hero-text {
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
}

/* ========================= */
/* TABLET */
@media (max-width: 1024px) {
    .shops-hero-section {
        height: 620px;
    }

    .shops-hero-content {
        right: 40px;
        max-width: 520px;
    }

    .shops-hero-title {
        font-size: 56px;
    }

    .shops-hero-text {
        font-size: 18px;
    }
}

/* ========================= */
/* MOBILE */
@media (max-width: 768px) {
    .shops-hero-section {
        height: 620px;
    }

    .shops-hero-content {
        right: 20px;
        left: 20px;
        max-width: none;
    }

    .shops-hero-title {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .shops-hero-text {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* ===== SHOPS CATEGORIES ===== */
.shops-categories-section {
    background: #FFFFFF;
    padding: 80px 60px;
    text-align: center;
}

/* العنوان */
.shops-title {
    font-size: 42px;
    color: #b3844c;
    margin-bottom: 10px;
}

/* الوصف */
.shops-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

/* الجريد */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* الكرت */
/* الكرت كرابط */
.shop-card {
    display: block;
    text-align: center;
    text-decoration: none;
    /* 🔥 يشيل الخط */
    color: #111;
    /* 🔥 يشيل الأزرق */
}

/* الصورة */
.shop-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: 0.3s;
}

/* hover للصورة */
.shop-card:hover img {
    transform: scale(1.05);
}

/* النص */
.shop-card h3 {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}


.shop-card:hover h3 {
    color: #c89b5a;
}

@media (max-width: 1024px) {
    .shops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shops-categories-section {
        padding: 60px 20px;
    }

    .shops-grid {
        grid-template-columns: 1fr;
    }

    .shop-card img {
        height: 180px;
    }

    .shops-title {
        font-size: 28px;
    }

    .shops-subtitle {
        font-size: 14px;
    }


}

/* ===== VIDEO HERO ===== */
.food-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* الفيديو */
.food-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* التظليل (نفس ستايلك) */
.food-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.158) 0%,
            rgba(15, 23, 34, 0.293) 45%,
            rgba(15, 23, 34, 0.396) 100%);
    z-index: 1;
}

/* النص */
.food-content {
    position: absolute;
    bottom: 250px;
    right: 60px;
    transform: translateY(10px);
    /* هذا هو السر 👈 */
    z-index: 2;
    color: #fff;
}

.food-content h1 {
    font-size: 70px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .food-hero-video {
        height: 620px;
    }

    .food-list-section .food-content {
        right: 20px;
        bottom: 250px;
    }

    .food-list-section .food-content h1 {
        font-size: 36px;
    }
}

/* ===== FOOD LIST SECTION ===== */
.food-list-section {
    background: #f5f4f1;
    padding: 0;
}

.food-list-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 900px;
}

/* القائمة الجانبية */
.food-side-menu {
    background: #d9d9d9;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.food-side-menu a {
    text-decoration: none;
    color: #444;
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
}

.food-side-menu a.active {
    color: #1f1f1f;
    font-weight: 700;
}

/* شبكة المطاعم */
.food-brands-grid {
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 40px;
    align-content: start;
    justify-items: center;
}

.food-brand-card {
    text-align: center;
    max-width: 220px;
}

.food-brand-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.food-brand-card h3 {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    color: #111;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
    .food-list-wrapper {
        grid-template-columns: 200px 1fr;
    }

    .food-side-menu a {
        font-size: 22px;
    }

    .food-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .food-list-wrapper {
        grid-template-columns: 1fr;
    }

    .food-side-menu {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        padding: 20px;
        align-items: center;
    }

    .food-side-menu a {
        font-size: 18px;
        padding: 8px 14px;
        background: #ececec;
        border-radius: 999px;
    }

    .food-side-menu a.active {
        background: #c89b5a;
        color: #fff;
    }

    .food-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 18px;
        padding: 36px 20px 50px;
    }

    .food-brand-card img {
        width: 100px;
        height: 100px;
    }

    .food-brand-card h3 {
        font-size: 16px;
    }
}


/* ===== FUN ZONE HERO ===== */
.funzone-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.funzone-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.funzone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.158) 0%,
            rgba(15, 23, 34, 0.293) 45%,
            rgba(15, 23, 34, 0.396) 100%);
    z-index: 1;
}

.funzone-logo {
    position: absolute;
    left: 40px;
    bottom: 30px;
    z-index: 2;
}

.funzone-logo img {
    width: 180px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .funzone-hero-section {
        height: 620px;
    }

    .funzone-logo {
        left: 20px;
        bottom: 20px;
    }

    .funzone-logo img {
        width: 120px;
    }
}

/* ===== FUN ZONE ACTIVITIES ===== */
.funzone-activities-section {
    background: #f5f4f1;
    padding: 80px 60px 120px;
    text-align: center;
}

.funzone-activities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.funzone-title {
    font-size: 52px;
    color: #c89b5a;
    margin-bottom: 18px;
    font-weight: 700;
}

.funzone-subtitle {
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 24px;
    line-height: 1.7;
    color: #333;
}

.funzone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.funzone-card {
    text-align: center;
}

.funzone-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
}

.funzone-card h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0;
    color: #111;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 1024px) {
    .funzone-activities-section {
        padding: 70px 30px 90px;
    }

    .funzone-title {
        font-size: 42px;
    }

    .funzone-subtitle {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .funzone-grid {
        gap: 30px;
    }

    .funzone-card h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .funzone-activities-section {
        padding: 60px 20px 70px;
    }

    .funzone-title {
        font-size: 30px;
    }

    .funzone-subtitle {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 36px;
    }

    .funzone-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .funzone-card img {
        height: 220px;
    }

    .funzone-card h3 {
        font-size: 20px;
    }
}

/* ===== HERO ===== */
.category-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top 35%;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* العنوان */
.category-title {
    position: absolute;
    bottom: 24px;
    right: 40px;
    color: #fff;
    z-index: 2;
}

.category-title h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}


/* ===== SECTION ===== */
/* ===== SECTION ===== */
.category-section {
    background: #f5f4f1;
    padding: 0;
}

/* ===== WRAPPER ===== */
.category-wrapper {
    display: flex;
    min-height: 900px;
    direction: rtl;
}

/* ===== SIDEBAR ===== */
.category-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #dcdcdc;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: right;
}

.category-sidebar a {
    text-decoration: none;
    color: #444;
    font-size: 20px;
    line-height: 1.4;
    transition: 0.3s;
}

.category-sidebar a:hover {
    color: #c89b5a;
}

.category-sidebar a.active {
    font-weight: 700;
    color: #111;
}

/* ===== MOBILE SELECT ===== */
.mobile-category-select {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}

.mobile-category-select select {

    width: 100%;
    height: 55px;

    border: none;
    border-radius: 14px;

    padding: 0 15px;

    background: #111827;
    color: #fff;

    font-size: 16px;

    outline: none;
}

/* ===== GRID ===== */
.category-grid {
    flex: 1;
    padding: 34px 34px 60px;

    display: grid;

    grid-template-columns: repeat(3, 220px);

    justify-content: space-evenly;

    align-content: start;

    gap: 58px 28px;
}

/* ===== TABLET ===== */
@media(max-width:1024px){

    .category-grid{

        grid-template-columns: repeat(2, 220px);

        gap:40px 20px;
    }

}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .category-wrapper{
        flex-direction: column;
    }

    .mobile-category-select{
        display:block;
    }

    .category-sidebar{
        display:none;
    }

    .category-grid{

        grid-template-columns: 1fr;

        justify-content:center;

        padding:25px 20px 50px;

        gap:30px;
    }

}

/* ===== CARD ===== */
.brand-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.brand-card img {
    width: 168px;
    height: 168px;
    object-fit: contain;
    background: #fff;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    display: block;
    margin: 0 auto;
}

.brand-card img:hover {
    transform: translateY(-8px);
}

.brand-card p {
    margin-top: 14px;
    font-size: 18px;
    color: #111;
    line-height: 1.4;
    font-weight: 600;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .category-wrapper {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 220px);
        justify-content: center;
        gap: 40px 24px;
        padding: 30px 24px 50px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .category-sidebar a {
        font-size: 15px;
        padding: 8px 14px;
        background: #ececec;
        border-radius: 999px;
    }

    .category-sidebar a.active {
        background: #c89b5a;
        color: #fff;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: stretch;
        gap: 28px 16px;
        padding: 24px 16px 40px;
    }

    .brand-card img {
        width: 140px;
        height: 140px;
        padding: 20px;
    }

    .brand-card p {
        font-size: 16px;
    }
}

/* ===== ABOUT HERO ===== */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.35) 0%,
            rgba(15, 23, 34, 0.55) 45%,
            rgba(15, 23, 34, 0.85) 100%);
    z-index: 1;
}

.about-hero-content {
    position: absolute;
    right: 110px;
    bottom: 160px;
    z-index: 2;
    max-width: 900px;
    color: #fff;
    text-align: right;
}

.about-hero-content h1 {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}


/* ===== ABOUT HOURS ===== */
.about-hours-section {
    background: #fdebd3;
    padding: 90px 70px;
}

.about-hours-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 👈 عمودين */
    gap: 60px;
}

.hours-box {
    text-align: right;
    color: #111;
}

.hours-box h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 800;
}

.hours-box p {
    font-size: 18px;
    margin: 0;
}

.hours-box strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-hero-section {
        height: 520px;
    }

    .about-hero-content {
        right: 50px;
        left: 50px;
        bottom: 90px;
    }

    .about-hero-content h1 {
        font-size: 44px;
    }

    .about-hero-content p {
        font-size: 18px;
    }

    .about-hours-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hours-social {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-hours-section {
        padding: 50px 20px;
    }

    .about-hours-container {
        grid-template-columns: 1fr;
        /* 👈 عمود واحد */
        gap: 30px;
    }

    .hours-box h3 {
        font-size: 20px;
    }

    .hours-box p,
    .hours-box strong {
        font-size: 16px;
    }
}

/* ===== HERO ===== */
.events-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.events-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.7));
}

.events-content {
    position: absolute;
    right: 80px;
    bottom: 80px;
    color: white;
}

.events-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.events-content p {
    font-size: 20px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    background: #f5f4f1;
    padding: 80px 60px;
}

/* تنظيم الشبكة */
.events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===== CARD ===== */
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-card img {
    width: 100%;
    height: 220px;
    /* حجم الصورة كما في المثال */
    object-fit: cover;
}

.event-info {
    padding: 20px;
    text-align: center;
}

.event-date {
    color: #c89b5a;
    font-size: 14px;
}

.event-info h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.event-info p {
    color: #555;
    font-size: 16px;
}

/* إزالة الخط تحت الرابط */
.events-container a {
    text-decoration: none !important;
    color: inherit;
}

/* إزالة الخط عند hover */
.events-container a:hover {
    text-decoration: none !important;
}

/* تغيير الشبكة على الأجهزة الصغيرة */
@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 50px 20px;
    }

    .events-container {
        grid-template-columns: 1fr;
    }

    .event-card img {
        height: 180px;
    }

    .event-info h3 {
        font-size: 18px;
    }

    .event-info p {
        font-size: 14px;
    }
}

/* ===== EVENT DETAILS ===== */
.event-details-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.event-details-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 34, 0.35),
            rgba(15, 23, 34, 0.85));
    z-index: 1;
}

.event-details-content {
    position: absolute;
    right: 70px;
    bottom: 70px;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    text-align: right;
}

.event-details-content span {
    color: #d8b17a;
    font-size: 18px;
    font-weight: 700;
}

.event-details-content h1 {
    font-size: 56px;
    margin: 12px 0;
}

.event-details-content p {
    font-size: 20px;
    line-height: 1.8;
}

.event-about-section {
    background: #f5f4f1;
    padding: 80px 60px;
}

.event-about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.event-video video {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.event-description {
    text-align: right;
}

.event-description h2,
.event-gallery-section h2 {
    color: #b3844c;
    font-size: 40px;
    margin-bottom: 18px;
}

.event-description p {
    font-size: 18px;
    line-height: 2;
    color: #444;
}

.event-gallery-section {
    background: #f5f4f1;
    padding: 20px 60px 90px;
    text-align: center;
}

.event-gallery-grid {
    max-width: 1200px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ===== BOOK GALLERY (MAGAZINE STYLE) ===== */
.book-gallery {
    position: relative;
    overflow: hidden;
    height: 400px;
    /* التحكم في ارتفاع المعرض */
    width: 100%;
}

.page-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.page {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center;
    transition: transform 1s ease-in-out;
}

.page-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.page-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .event-details-hero {
        height: 420px;
    }

    .event-details-content {
        right: 20px;
        left: 20px;
        bottom: 40px;
    }

    .event-details-content h1 {
        font-size: 34px;
    }

    .event-details-content p {
        font-size: 15px;
    }

    .event-about-section,
    .event-gallery-section {
        padding: 55px 20px;
    }

    .event-about-container {
        grid-template-columns: 1fr;
    }

    .event-gallery-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery-grid img {
        height: 220px;
    }
}





.contact-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    /* ترتيب المحتوى بين اليمين واليسار */
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    /* تظليل الصورة */
}

/* النص في الجهة اليمنى */
.contact-text {
    width: 50%;
    text-align: right;
}

.contact-text h2 {
    font-size: 60px;
    color: #fff;
    margin: 0;
}

/* البطاقة في الجهة اليسرى */
.contact-card {
    background: rgb(255, 255, 255);
    /* خلفية بيضاء مع شفافية */
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    height: 400px;
}

/* تنسيق تفاصيل البطاقة */
.contact-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* تفاصيل ساعات العمل */
.contact-hours h3,
.contact-info-details h3,
.contact-social h3 {
    font-size: 22px;
    color: #c89b5a;
    margin-bottom: 15px;
}

.contact-details p {
    color: #000000;
}

.contact-info-details a {
    color: #444;
    text-decoration: none;
}

.contact-info p,
.contact-social a {
    font-size: 16px;
    color: #444;
}

/* وسائل التواصل الاجتماعي */
.contact-social a {
    display: block;
    font-size: 16px;
    color: #444;
    text-decoration: none;
    margin: 5px 0;
}

.contact-social a:hover {
    color: #c89b5a;
}

/* ===== CONTACT MAP SECTION ===== */
.contact-map-section {
    text-align: center;
    margin-top: 40px;
    height: 80vh;
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
    z-index: 1;
    background: rgb(255, 255, 255);
}

.contact-map-section h2 {
    font-size: 40px;
    color: #111;
    margin-bottom: 20px;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.184);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;

    margin-top: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: #4a4a4a;

    transition: 0.3s ease;
}

.social-icon svg {
    width: 34px;
    height: 34px;
}

.social-icon:hover {
    color: #c89b5a;
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .contact-map-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .contact-map-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-map-section h2 {
        font-size: 24px;
    }

    .contact-map iframe {
        height: 60vh;
    }
}

/* ========================= */
/* RESPONSIVE DESIGN */

/* في الشاشات الصغيرة (أجهزة الهاتف المحمول) */
@media (max-width: 768px) {
    .contact-content {
        
        flex-direction: column;
        align-items: center;
        text-align: center;

        padding-left: 15px;
        padding-right: 15px;
    
    }

    .contact-text {
        width: 50%;
        margin-top: 100px;
    }

    .contact-text h2 {
        font-size: 45px;
        color: #fff;
        margin: 0;
    }

    .contact-card {
        width: 100%;
        height: 70%;
        /* عرض البطاقة بالكامل */
        margin-bottom: 20px;
        /* إضافة مسافة بين البطاقات */
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-details {
        width: 100%;
    }

    .contact-social a {
        font-size: 14px;
    }

    .contact-map {
        height: 300px;
        /* تقليص ارتفاع الخريطة على الشاشات الصغيرة */
    }

    .social-icon svg {
    width: 24px;
    height: 24px;
}
}

/* في الشاشات المتوسطة (أجهزة التابلت) */
@media (max-width: 1024px) {
    .contact-content {
        padding-left: 50px;
        /* تعديل المسافة من اليسار */
        padding-right: 50px;
        /* تعديل المسافة من اليمين */
    }

    .contact-text {
        width: 60%;
    }

    .contact-card {
        width: 80%;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-social a {
        font-size: 15px;
    }
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: 60px 30px;
    background-color: #EDDFCE;
    text-align: center;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.form-content input,
.form-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
    color: #333;
}

.form-content button {
    padding: 12px 20px;
    background-color: #c89b5a;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.form-content button:hover {
    background-color: #b3844c;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .form-content input,
    .form-content textarea {
        font-size: 14px;
    }

    .form-content button {
        font-size: 14px;
    }
}

/* ===== DESKTOP DROPDOWN ANIMATION ===== */
@media (min-width: 1119px) {

    .dropdown__item {
        position: relative;
    }

    .dropdown__menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;

        width: 230px;
        background: var(--black-color-light);
        border-radius: 0 0 12px 12px;
        padding: 10px 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        pointer-events: none;

        transition: 0.3s ease;
        z-index: 9999;
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding: 14px 18px;
        font-size: 16px;
        white-space: nowrap;
        justify-content: flex-start;
    }

    .dropdown__submenu {
        position: absolute;
        top: 0;
        right: 100%;
        left: auto;

        width: 240px;
        background: var(--black-color-lighten);
        border-radius: 12px;

        opacity: 0;
        visibility: hidden;
        transform: translateX(12px);
        pointer-events: none;

        transition: 0.3s ease;
        z-index: 9999;
    }

    .dropdown__subitem:hover .dropdown__submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
}


/* dark & light mode */


/* ===== LIGHT ===== */
:root {

    --bg-color: #ffffff;

    --section-bg: #f5f5f5;

    --card-bg: #ffffff;

    --text-color: #111111;

    --gold-color: #c89b5a;

    --border-color: #e5e5e5;

    --header-bg: #0f172a;
}

/* ===== DARK ===== */
body.dark-mode {

    --bg-color: #081120;

    --section-bg: #0f172a;

    --card-bg: #111827;

    --text-color: #f8fafc;

    --gold-color: #d4a45f;

    --border-color: #1e293b;

    --header-bg: #020617;
}

:root{
    --section-bg: #f5f5f5;
}

body.dark-mode{
    --section-bg: #081120;
}

/* ===== EXPLORE DARK MODE ===== */
.explore-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.stores-big-title,
.explore-big-title {
    color: var(--gold-color);
}

.fashion-label {
    color: var(--text-color);
}

.explore-button {
    background: var(--gold-color);
    color: #fff;
}

body.dark-mode .explore-section {
    background: #081120;
}

body.dark-mode .fashion-label {
    color: #f8fafc;
}

body.dark-mode .explore-top-image img,
body.dark-mode .fashion-thumb img {
    filter: brightness(0.85);
}

/* ===== PROMO SECTION ===== */

.promo-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

/* الكروت */
.promo-card {
    overflow: hidden;
    border-radius: 18px;

    transition: 0.4s ease;
}

/* الصور */
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s ease;
}

/* ===== DARK MODE ===== */
body.dark-mode .promo-section {
    background: #081120;
}

/* تخفيف سطوع الصور */
body.dark-mode .promo-card img {
    filter: brightness(0.78);
}

/* Glow خفيف للكروت */
body.dark-mode .promo-card {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

/* Hover */
.promo-card:hover img {
    transform: scale(1.03);
}



/* ===== ADVANTAGES DARK MODE ===== */
.advantages-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.advantages-tag {
    background: rgba(200, 155, 90, 0.12);
    color: var(--gold-color);
    border-color: rgba(200, 155, 90, 0.25);
}

.advantages-title {
    color: var(--gold-color);
}

.advantages-subtitle {
    color: var(--text-color);
}

.adv-card {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.adv-card h3 {
    color: var(--text-color);
}

.adv-card p {
    color: var(--text-color);
    opacity: 0.75;
}

.adv-icon-wrap {
    background: rgba(200, 155, 90, 0.12);
}

body.dark-mode .adv-icon-wrap img {
    filter: brightness(0.9);
}

/* ===== GALLERY DARK MODE ===== */
.gallery-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.gallery-text h2,
.gallery-social span {
    color: var(--gold-color);
}

.icons a {
    color: var(--gold-color);
}

body.dark-mode .gallery-section {
    background: #081120;
}

body.dark-mode .gallery-images .img {
    filter: brightness(0.75);
}

body.dark-mode .gallery-text h2,
body.dark-mode .gallery-social span {
    color: #d4a45f;
}

body.dark-mode .icons a {
    color: #d4a45f;
}

body.dark-mode .icons a:hover {
    color: #ffffff;
}

/* ===== FOOTER DARK MODE ===== */
.site-footer {
    background: var(--section-bg);
    color: var(--text-color);
    transition: 0.3s ease;
}

.footer-nav a,
.footer-social a,
.footer-copy,
.footer-copy a {
    color: var(--text-color);
}

.footer-social svg {
    color: var(--text-color);
}

.footer-divider {
    border-top-color: var(--gold-color);
}

body.dark-mode .site-footer {
    background: #081120;
}

body.dark-mode .footer-nav a,
body.dark-mode .footer-social a,
body.dark-mode .footer-copy {
    color: #f8fafc;
}

body.dark-mode .footer-copy a,
body.dark-mode .footer-social svg {
    color: #d4a45f;
}

body.dark-mode .footer-brand img {
    filter: brightness(1.1);
}

/* ===== ABOUT HOURS DARK MODE ===== */
.about-hours-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.hours-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);

    transition: 0.3s ease;
}

.hours-box h3 {
    color: var(--gold-color);
}

.hours-box p {
    color: var(--text-color);
    opacity: 0.75;
}

.hours-box strong {
    color: var(--text-color);
}

/* ===== DARK MODE ===== */
body.dark-mode .about-hours-section {
    background: #081120;
}

body.dark-mode .hours-box {
    background: #111827;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

body.dark-mode .hours-box h3 {
    color: #d4a45f;
}

body.dark-mode .hours-box p,
body.dark-mode .hours-box strong {
    color: #f8fafc;
}

.contact-section {

    position: relative;

    min-height: 700px;

    padding: 60px 40px;

    color: white;
    

    background-image:
    linear-gradient(to bottom,
            rgba(15, 23, 34, 0.249) 0%,
            rgba(15, 23, 34, 0.434) 45%,
            rgba(15, 23, 34, 0.538) 100%
    ),
    url("../images/IMG_6930-converted-from-JPG.webp") !important;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);

    transition: 0.3s ease;
}

.contact-text h2 {
    color: #ffffff;
}

.contact-hours h3,
.contact-info-details h3,
.contact-social h3 {
    color: var(--gold-color);
}

.contact-details p,
.contact-details a {
    color: var(--text-color);
}

.social-icon {
    color: var(--gold-color);
}

.social-icon:hover {
    color: #ffffff;
}

/* ===== DARK MODE ===== */
/* ===== DARK MODE ===== */

body.dark-mode .contact-section {

    background-image:
    linear-gradient(to bottom,
            rgba(15, 23, 34, 0.249) 0%,
            rgba(15, 23, 34, 0.434) 45%,
            rgba(15, 23, 34, 0.538) 100%
    ),
    url("../images/IMG_6892-converted-from-JPG.webp") !important;

}

body.dark-mode .contact-card {
    background: #111827;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

body.dark-mode .contact-details p,
body.dark-mode .contact-details a {
    color: #f8fafc;
}

body.dark-mode .social-icon {
    color: #d4a45f;
}

body.dark-mode .social-icon:hover {
    color: #ffffff;
}

/* ===== MAP SECTION ===== */

.contact-map-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.contact-map-section h2 {
    color: var(--gold-color);
}

.contact-map iframe {
    border-radius: 18px;
    overflow: hidden;
}

/* ===== DARK MODE ===== */
body.dark-mode .contact-map-section {
    background: #081120;
}

body.dark-mode .contact-map iframe {
    filter:
        grayscale(0.2)
        invert(0.9)
        contrast(0.9);
}

.contact-map-section {
    padding-top: 40px;
    margin-top: 0;
}

/* ===== FORM SECTION ===== */

.form-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.form-section h2 {
    color: var(--gold-color);
}

/* الحقول */
.form-content input,
.form-content textarea {
    background: var(--card-bg);

    color: var(--text-color);

    border: 1px solid var(--border-color);

    transition: 0.3s ease;
}

/* placeholder */
.form-content input::placeholder,
.form-content textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

/* الزر */
.form-content button {
    background: var(--gold-color);

    color: #fff;

    border: none;

    transition: 0.3s ease;
}

.form-content button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
/* LIGHT MODE DEFAULT */
.form-section {
    background: #f1f1f1;
}

.form-content input,
.form-content textarea {
    background: #ffffff;
    color: #111827;
    border-color: rgba(0, 0, 0, 0.15);
}

.form-content input::placeholder,
.form-content textarea::placeholder {
    color: #555;
    opacity: 1;
}

.form-content button {
    background: #d4a45f;
    color: #fff;
}

body.dark-mode .form-section {
    background: #081120;
}

body.dark-mode .form-content input,
body.dark-mode .form-content textarea {
    background: #111827;
    color: #f8fafc;
    border-color: rgba(255,255,255,0.08);
}

body.dark-mode .form-content input::placeholder,
body.dark-mode .form-content textarea::placeholder {
    color: #aaa;
}

body.dark-mode .form-content button {
    background: #d4a45f;
}

/* ===== EVENTS SECTION ===== */

.events-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.event-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    overflow: hidden;

    transition: 0.3s ease;
}

.event-card img {
    transition: 0.4s ease;
}

.event-card:hover img {
    transform: scale(1.04);
}

.event-info {
    background: var(--card-bg);
}

.event-info h3 {
    color: var(--gold-color);
}

.event-info p {
    color: var(--text-color);
    opacity: 0.8;
}

.event-date {
    color: var(--gold-color);
}

/* ===== DARK MODE ===== */
body.dark-mode .events-section {
    background: #081120;
}

body.dark-mode .event-card {
    background: #111827;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

body.dark-mode .event-card img {
    filter: brightness(0.8);
}

body.dark-mode .event-info {
    background: #111827;
}

body.dark-mode .event-info h3,
body.dark-mode .event-date {
    color: #d4a45f;
}

body.dark-mode .event-info p {
    color: #f8fafc;
}

/* ===== FOOD LIST DARK MODE ===== */

.food-list-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.food-side-menu {
    background: var(--card-bg);
    border-left: 1px solid var(--border-color);
}

.food-side-menu a {
    color: var(--text-color);
}

.food-side-menu a.active {
    color: var(--gold-color);
}

.food-brand-card h3 {
    color: var(--text-color);
}

.food-brand-card img {
    transition: 0.3s ease;
}

/* ===== DARK MODE ===== */

body.dark-mode .food-list-section {
    background: #081120;
}

body.dark-mode .food-side-menu {
    background: #111827;
}

body.dark-mode .food-side-menu a {
    color: #f8fafc;
}

body.dark-mode .food-side-menu a.active {
    color: #d4a45f;
}

body.dark-mode .food-brand-card h3 {
    color: #f8fafc;
}

body.dark-mode .food-brand-card img {
    filter: brightness(0.9);
}

@media (max-width: 768px) {

    .food-side-menu {
        background: #081120;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        padding: 18px 12px;
        overflow-x: auto;
    }

    .food-side-menu a {
        color: #111 !important;
        background: #f3f4f6;
        opacity: 1 !important;
        white-space: nowrap;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 18px;
        border-radius: 999px;
    }

    .food-side-menu a.active {
        background: #c89b5a;
        color: #fff !important;
    }
}

/* ===== FUNZONE DARK MODE ===== */

.funzone-activities-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.funzone-title {
    color: var(--gold-color);
}

.funzone-subtitle {
    color: var(--text-color);
    opacity: 0.8;
}

.funzone-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    overflow: hidden;

    transition: 0.3s ease;
}

.funzone-card img {
    transition: 0.4s ease;
}

.funzone-card:hover img {
    transform: scale(1.04);
}

.funzone-card h3 {
    color: var(--text-color);
}

/* ===== DARK MODE ===== */

body.dark-mode .funzone-activities-section {
    background: #081120;
}

body.dark-mode .funzone-card {
    background: #111827;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

body.dark-mode .funzone-card img {
    filter: brightness(0.82);
}

body.dark-mode .funzone-title {
    color: #d4a45f;
}

body.dark-mode .funzone-subtitle,
body.dark-mode .funzone-card h3 {
    color: #f8fafc;
}

/* ===== SHOPS DARK MODE ===== */

.shops-categories-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

.shops-title {
    color: var(--gold-color);
}

.shops-subtitle {
    color: var(--text-color);
    opacity: 0.8;
}

.shop-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    overflow: hidden;

    transition: 0.3s ease;
}

.shop-card img {
    transition: 0.4s ease;
}

.shop-card:hover img {
    transform: scale(1.04);
}

.shop-card h3 {
    color: var(--text-color);
}

/* ===== DARK MODE ===== */

body.dark-mode .shops-categories-section {
    background: #081120;
}

body.dark-mode .shop-card {
    background: #111827;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.45);
}

body.dark-mode .shop-card img {
    filter: brightness(0.82);
}

body.dark-mode .shops-title {
    color: #d4a45f;
}

body.dark-mode .shops-subtitle,
body.dark-mode .shop-card h3 {
    color: #f8fafc;
}

/* ===== CATEGORY DARK MODE ===== */

.category-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

/* القائمة الجانبية */
.category-sidebar {
    background: var(--card-bg);

    border: 1px solid var(--border-color);
}

.category-sidebar a {
    color: var(--text-color);

    transition: 0.3s ease;
}

.category-sidebar a.active {
    background: var(--gold-color);
    color: #fff;
}



.brand-card img {
    transition: 0.4s ease;
}

.brand-card:hover img {
    transform: scale(1.04);
}

.brand-card p {
    color: var(--text-color);
}

/* ===== DARK MODE ===== */

body.dark-mode .category-section {
    background: #081120;
}

body.dark-mode .category-sidebar {
    background: #111827;
}

body.dark-mode .category-sidebar a {
    color: #f8fafc;
}

body.dark-mode .category-sidebar a.active {
    background: #d4a45f;
    color: #fff;
}



body.dark-mode .brand-card img {
    filter: brightness(0.85);
}

body.dark-mode .brand-card p {
    color: #f8fafc;
}

/* ===== EVENT DETAILS DARK MODE ===== */

.event-about-section,
.event-gallery-section {
    background: var(--section-bg);
    transition: 0.3s ease;
}

/* وصف المهرجان */


.event-description h2,
.event-gallery-section h2 {
    color: var(--gold-color);
}

.event-description p {
    color: var(--text-color);
    opacity: 0.85;
}

/* الفيديو */
.event-video video {
    border-radius: 18px;
    overflow: hidden;
}

/* الصور */
.event-gallery-grid img {
    transition: 0.4s ease;
}

.event-gallery-grid img:hover {
    transform: scale(1.03);
}

/* ===== DARK MODE ===== */

body.dark-mode .event-about-section,
body.dark-mode .event-gallery-section {
    background: #081120;
}



body.dark-mode .event-description h2,
body.dark-mode .event-gallery-section h2 {
    color: #d4a45f;
}

body.dark-mode .event-description p {
    color: #f8fafc;
}

body.dark-mode .event-gallery-grid img {
    filter: brightness(0.82);
}

.footer-copy{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-copy a{
    color: #d4a65a;
    font-weight: 700;
}

/* إخفاء قائمة الجوال في الكمبيوتر */
.mobile-category-select {
    display: none !important;
}

/* إظهار القائمة الجانبية في الكمبيوتر */
.category-sidebar {
    display: flex;
    flex-direction: column;
}

/* في الهاتف */
@media screen and (max-width: 768px) {

    .mobile-category-select {
        display: block !important;
        width: 100%;
    }

    .mobile-category-select select {
        width: 100%;
    }

    .category-sidebar {
        display: none !important;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

/* الكمبيوتر واللابتوب */
.hero-section {
    height: 850px;
}

/* الهاتف */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 720px;
    }

    .hero-img {
        object-position: center;
    }
}

.form-alert {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 8px;
    font-family: "Cairo", sans-serif;
}

.form-alert p {
    margin: 0;
}

.form-alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}