:root {
    --bg-dark: #0a0a0a;
    --bg-charcoal: #121210; /* Slightly warmer to match the logo */
    --primary-gold: #736736; /* Official Logo Color */
    --accent-gold-light: #9b8d54; /* Harmonized lighter shade */
    --text-ivory: #fdfbf7;
    --text-muted: #8a887d;
    --warm-olive: #353b1b;
    --glass: rgba(18, 18, 16, 0.85);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-mid: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



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

body {
    background-color: var(--bg-dark);
    color: var(--text-ivory);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Headings with a touch of elegance */
h1, h2, h3 {
    font-weight: 700;
}

/* Language System: data-lang attribute controls visibility */
/* Arabic text styling */
[data-lang="ar"] {
    font-family: 'El Messiri', sans-serif;
    font-weight: 700;
}

/* English text styling */
[data-lang="en"] {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Default: Arabic mode — hide English content */
html[lang="ar"] [data-lang="en"] {
    display: none !important;
}

/* English mode — hide Arabic content */
html[lang="en"] [data-lang="ar"] {
    display: none !important;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-mid);
}

header.scrolled {
    padding: 1rem 5%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Elegant size */
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    color: var(--text-ivory);
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: var(--primary-gold);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

.lang-toggle {
    background: none;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-toggle:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    color: var(--accent-gold-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
    margin: 2rem auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-outline {
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-ivory);
    color: var(--text-ivory);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--text-ivory);
    color: var(--bg-dark);
}

/* Sections General */
section {
    padding: 8rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Brand Statement */
.brand-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.brand-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

/* Signature Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dish-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.dish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dish-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.dish-overlay h4 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.dish-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 300px;
}

/* Atmosphere Section */
.atmosphere-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.atmo-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.atmo-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.atmo-text {
    flex: 1;
}

/* Detail Strip */
.detail-strip {
    background: var(--bg-charcoal);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.detail-item h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

/* Instagram Gallery */
.instagram-section {
    padding: 6rem 5%;
    background: #050505;
}

.insta-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #0f0f0f;
    border: 1px solid rgba(115, 103, 54, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
}

.insta-header {
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(115, 103, 54, 0.1);
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.insta-pfp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
}

.insta-user-info {
    flex: 1;
    text-align: right; /* RTL consistency */
}

.insta-user-info h3 {
    font-size: 1.2rem;
    color: var(--text-ivory);
    margin-bottom: 0.2rem;
}

.insta-user-info a {
    color: var(--accent-gold-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-follow {
    padding: 0.5rem 1.5rem;
    background: var(--primary-gold);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-follow:hover {
    background: var(--accent-gold-light);
}

.instagram-grid {
    display: block;
    margin-bottom: 2rem;
}

.instagram-grid behold-widget {
    display: block;
    width: 100%;
}

.insta-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay span {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insta-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(115, 103, 54, 0.1);
}

.btn-view-all {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-gold);
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(115, 103, 54, 0.1);
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    list-style: none;
}

.footer-links li a {
    color: var(--text-ivory);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links li a i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.footer-links li a:hover {
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    header {
        padding: 1.5rem 5%;
    }
    nav {
        display: none;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .brand-split, .dishes-grid, .location-grid, .detail-strip {
        grid-template-columns: 1fr;
    }
    .brand-image img {
        height: 400px;
    }
    .dish-card {
        height: 400px;
    }
    .atmosphere-split {
        flex-direction: column;
    }
}
