:root {
    --bg-color: #ffffff;
    --bg-secondary: #fdfdfd;
    --text-primary: #111111;
    --text-secondary: #555555;
    --accent-color: #556b2f; /* Olive green */
    --accent-hover: #3d4f1f;
    --border-color: #eeeeee;
}

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

html, body {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

.serif-title, .italic-serif {
    font-family: 'Playfair Display', serif;
}

.italic-serif {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 400;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 35px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-dark {
    background: var(--text-primary);
    color: #fff;
}
.btn-dark:hover {
    background: var(--accent-color);
}

/* Split Sections (Professional Layout) */
.split-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 6rem;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-img {
    flex: 1;
    position: relative;
    height: 70vh;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.split-text {
    flex: 1;
    max-width: 500px;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.split-text .serif-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Dark Section Variant */
.split-section.dark {
    background-color: #050505;
    color: #ffffff;
}

.split-section.dark .eyebrow {
    color: #aaaaaa;
}

.split-section.dark p {
    color: #cccccc;
}

.split-section.dark .split-img img {
    box-shadow: none; /* Dark photos blend perfectly */
}

/* Marquee / Shiritat */
.marquee-container {
    background: var(--accent-color);
    color: #fff;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}
.marquee-content span { padding-right: 2rem; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section specific adjustments */
.hero-section {
    padding-top: 150px;
    min-height: 90vh;
}

/* Footer */
.editorial-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 6rem 5% 3rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #888;
    margin-top: 1rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links p {
    color: #888;
    line-height: 2;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 5rem 5%;
    }
    .split-img { height: 50vh; width: 100%; }
    .split-text { max-width: 100%; }
    .split-text .serif-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
}

/* ==============================
   MENU PAGE STYLES
   ============================== */

/* Menu Hero */
.menu-hero {
    padding: 160px 0 4rem 0;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.menu-hero .eyebrow {
    margin-bottom: 1rem;
}

.menu-hero .serif-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.menu-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Menu Main */
.menu-main {
    padding: 4rem 0;
    background: #fafafa;
}

/* Menu Category */
.menu-category {
    padding: 3rem 0;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #111;
    display: inline-block;
}

/* Menu Cards Grid */
.menu-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* Individual Menu Card */
.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.menu-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.menu-card-top h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-color);
}

.menu-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Menu Divider */
.menu-divider {
    padding: 1rem 0;
}

.divider-line {
    height: 1px;
    background: var(--border-color);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-hero .serif-title { font-size: 3rem; }
    .menu-grid-cards { grid-template-columns: 1fr; }
    .category-title { font-size: 2rem; }
}
