:root {
    --beige: #EFEAD2;
    --white: #EFEFF0;
    --navy: #2D3442;
    --navy-light: #3a4358;
    --red: #923036;
    --dark: #1a1f2b;
    --gold: #D4AF37;
    --font-heading: 'Roboto Slab', serif;       /* بديل Museo Slab */
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-display: 'Raleway', sans-serif;      /* بديل Caros */
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
}

/* ───── NAVBAR (Askim Style) ───── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(45, 52, 66, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(239, 234, 210, 0.1);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-link-desktop {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-link-desktop:hover { color: var(--beige); }

.nav-logo {
    flex: 0;
    display: flex;
    justify-content: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
}

nav.scrolled .nav-logo img { height: 60px; }

.nav-reserve-btn {
    border: 1px solid var(--beige);
    color: var(--beige);
    padding: 10px 25px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.nav-reserve-btn:hover {
    background: var(--beige);
    color: var(--navy);
}

/* ───── HERO (Askim Style) ───── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow, .hero-slide, .hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-bg {
    background: rgba(26, 31, 43, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0 30px;
    text-align: center;
}

/* EST. line */
.hero-est {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--red);
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Main Title */
.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 9vw, 90px);
    line-height: 1.05;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
}

.hero-main-title em {
    font-family: 'Roboto Slab', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--white);
}

/* Arabic subtitle */
.hero-subtitle-ar {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

/* Description */
.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-btn-primary {
    display: inline-block;
    background: var(--beige);
    color: var(--navy);
    padding: 18px 60px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.hero-btn-ghost {
    display: inline-block;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 3px;
    transition: all 0.3s;
}

.hero-btn-ghost:hover {
    color: var(--beige);
    border-color: var(--beige);
}

/* ───── EXPERIENCE ───── */
.experience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 10px;
    color: var(--beige);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--red);
    margin-bottom: 30px;
}

.section-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.experience-card {
    background: var(--navy-light);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(239, 234, 210, 0.1);
    transition: 0.3s;
}

.experience-card:hover {
    border-color: var(--beige);
    transform: translateY(-10px);
}

/* ───── MENU ───── */
.menu-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; }
.menu-tab {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 10px 0;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}
.menu-tab.active, .menu-tab:hover { color: var(--beige); border-bottom-color: var(--beige); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-item {
    text-align: center;
}

.menu-item-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: 0.5s;
}

.menu-item:hover .menu-item-img img { filter: grayscale(0); transform: scale(1.02); }

.menu-item-name { font-family: var(--font-heading); font-size: 24px; color: var(--beige); margin-bottom: 5px; }
.menu-item-desc { font-size: 14px; color: rgba(255,255,255,0.6); }
.menu-item-price { font-weight: 700; color: var(--white); margin-top: 10px; font-size: 18px; }

.menu-footer { text-align: center; margin-top: 60px; }

/* ───── WHATSAPP (Gold Style) ───── */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--beige); /* Changed to Gold/Beige */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: 0.3s;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: var(--white); }
.whatsapp-icon { width: 35px; height: 35px; fill: var(--navy); } /* Icon color to Navy */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ───── REVEAL ANIMATIONS ───── */
.reveal { opacity: 0; transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal.visible { opacity: 1; transform: none !important; }

[data-animation="fadeInUp"] { transform: translateY(50px); }
[data-animation="slideUp"] { transform: translateY(80px); }
[data-animation="slideInLeft"] { transform: translateX(-80px); }
[data-animation="slideInRight"] { transform: translateX(80px); }
[data-animation="scaleIn"] { transform: scale(0.95); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
    nav { padding: 20px 30px; }
    .nav-link-desktop, .nav-reserve-btn { display: none; }
    .nav-left { flex: 1; }
    .nav-right { flex: 1; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .hero-main-title { font-size: 46px; }
    .hero-btn-primary { padding: 16px 40px; }
    .section-title { font-size: 40px; }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span { width: 28px; height: 2px; background: var(--beige); transition: 0.3s; }

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    z-index: 1300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    transition: left 0.4s ease;
    border-right: 1px solid rgba(239, 234, 210, 0.1);
}

.mobile-drawer.open {
    left: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.mobile-nav-links a:hover { color: var(--beige); }

.mobile-reserve {
    border: 1px solid var(--beige);
    color: var(--beige);
    padding: 12px 28px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.mobile-reserve:hover {
    background: var(--beige);
    color: var(--navy);
}

/* Reservation Form Styles */
.reserve-container {
    background: var(--navy-light);
    padding: 60px;
    border: 1px solid rgba(239, 234, 210, 0.1);
}
.reserve-form .form-group { margin-bottom: 25px; }
.reserve-form input, .reserve-form select, .reserve-form textarea {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(239, 234, 210, 0.3);
    color: white;
    font-family: var(--font-body);
    transition: 0.3s;
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus {
    outline: none;
    border-bottom-color: var(--beige);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Footer */
footer { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.social-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.social-links a { color: var(--beige); text-decoration: none; font-family: var(--font-accent); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
