body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f5f5;
}

/* navbar */
.main-navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 80vh;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* فيديو الخلفية */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.hero-title {
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.hero-item-name span {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-item-name small {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Sections */
.section-title {
    font-weight: 700;
}

/* Featured */
.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.featured-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.75rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
}

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

/* Follow */
.follow-section {
    background-color: #2b2627;
    position: relative;
    overflow: hidden;
}

/* لو استعملتها لمكان تاني، ما بتأثّر */
.insta-img {
    border-radius: 10px;
    height: 100px;
    object-fit: cover;
}

/* شريط الصور بخلفية FOLLOW */
.follow-bar {
    position: absolute;
    inset: 0;
    opacity: 0.25;          /* شفافية الخلفية */
    pointer-events: none;   /* ما تأثر على الكبس */
    overflow: hidden;
}

.follow-bar-inner {
    display: flex;
    width: max-content;
    animation: followMarquee 60s linear infinite;
}

.follow-bar img {
    height: 180px;
    flex-shrink: 0;
    margin-right: 16px;
    object-fit: cover;
    border-radius: 8px;
}

/* أنيميشن من اليمين لليسار */
@keyframes followMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Menu preview scroll */
.menu-scroll {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    /* مهم: ما بدنا scroll-behavior هون مع الـ JS */
}

/* إخفاء السكروول */
.menu-scroll::-webkit-scrollbar {
    display: none;
}
.menu-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.menu-card {
    min-width: 190px;
    margin-right: 1rem;
    background: #f0f0f0;
    border-radius: 18px;
    padding: 0.75rem;
}

.menu-card-img {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

/* NOUVEAU preview auto-scroll */
.nouveau-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 1.75rem;
}

.nouveau-scroll-track {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: nouveauScroll 25s linear infinite;
}

/* نفس ستايل كرت المنيو */
.nouveau-item {
    min-width: 220px;
    margin-right: 1rem;
    background: #f0f0f0;
    border-radius: 18px;
    padding: 0.75rem;
}

/* نفس حجم الصور تحت كلمة Menu */
.nouveau-item img {
    width: 100%;
    height: 230px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

/* حركة السكروول */
@keyframes nouveauScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Menu page cards */
.menu-section-heading {
    font-weight: 700;
}

.menu-item-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-item-img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.menu-price {
    font-weight: 700;
    font-size: 1rem;
    color: #d0131a;
}

/* Footer */
.site-footer {
    background: #222;
    margin-top: 3rem;
    font-size: 0.85rem;
}
