@font-face {
    font-family: 'TheSans Arabic Numbers';
    src: url('fonts/TheSansArabic.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/a85976799f11330f194b1dc04c954666.woff2') format('woff2');
    unicode-range: U+0030-0039, U+0660-0669;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheSans Arabic';
    src: url('fonts/TheSansArabic.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/a85976799f11330f194b1dc04c954666.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Display Pro';
    src: url('fonts/FreightDisplayPro.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/8c6cc8824a468b33768701915664b3e9.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Cairo:wght@300;400;700&display=block');

:root {
    --gold-solid: #ffffff;
    --gold-gradient: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    --black-base: #050505;
    --gray-dark: #050505;
    --text-main: #fcfcfc;
    --text-muted: #aaaaaa;
    --font-main: 'TheSans Arabic', 'Cairo', sans-serif;
    --font-heading: 'TheSans Arabic', 'Amiri', serif;
}

/* Force Freight Display Pro for all English and Turkish elements */
[dir="ltr"] {
    --font-main: 'TheSans Arabic Numbers', 'Freight Display Pro', serif;
    --font-heading: 'TheSans Arabic Numbers', 'Freight Display Pro', serif;
}

[dir="ltr"] *:not(i):not(.fa):not(.fas):not(.fab):not(.far):not(.fa-solid):not(.fa-regular):not(.fa-brands),
[dir="ltr"] .menu-item-name,
[dir="ltr"] .menu-featured-name {
    font-family: 'TheSans Arabic Numbers', 'Freight Display Pro', serif !important;
}

/* Force TheSans Arabic for all Arabic elements */
[dir="rtl"] {
    --font-main: 'TheSans Arabic', sans-serif;
    --font-heading: 'TheSans Arabic', serif;
}

[dir="rtl"] *:not(i):not(.fa):not(.fas):not(.fab):not(.far):not(.fa-solid):not(.fa-regular):not(.fa-brands),
[dir="rtl"] .menu-item-name,
[dir="rtl"] .menu-featured-name {
    font-family: 'TheSans Arabic', sans-serif !important;
}

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

input, button, select, textarea, optgroup, option {
    font-family: inherit;
}

[dir="rtl"] * {
    letter-spacing: normal !important;
}

body {
    font-family: var(--font-main);
    background-color: var(--black-base);
    color: var(--text-main);
    direction: inherit;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    touch-action: pan-y;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Glassmorphism Classes */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.04), transparent 25%);
    z-index: -1;
    pointer-events: none;
}

.glass-panel {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Header & Nav */
header {
    padding: 15px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-wrapper {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    height: 110px;
    z-index: 1001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-img {
    height: 100%;
    max-width: 290px;
    object-fit: contain;
    animation: none !important;
}

@keyframes superEpicLogo {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(360deg);
        filter: drop-shadow(0 0 50px var(--gold-solid));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
}

@keyframes loaderLogoFade {
    0% {
        opacity: 0;
        transform: scale(0.2);
        filter: drop-shadow(0 0 50px var(--gold-solid));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
}

@keyframes floatGlow {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }
    100% {
        transform: translateY(-8px);
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 1));
    }
}

nav {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-btn, .lang-btn {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: none;
}

.lang-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.menu-btn:hover, .lang-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
    box-shadow: none;
    transform: translateY(0);
}

.mega-menu-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 25px 80px;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(255, 255, 255, 0.15);
    animation: pulseGlow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 30px;
}

.mega-menu-btn:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.9), 0 0 100px rgba(255, 255, 255, 0.3);
    animation: none;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(212, 175, 55, 0.8), 0 0 80px rgba(255, 255, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
}

.admin-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
    gap: 40px;
}

/* Subpage hero: background image fills, with smooth bottom blend */
#about-hero,
#menu-hero,
#contact-hero,
#reservation-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
}

/* Fade-blend overlay: dark top + full transparent-to-background bottom */
#about-hero::before,
#menu-hero::before,
#contact-hero::before,
#reservation-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.25) 0%,
        rgba(17, 17, 17, 0.35) 40%,
        rgba(17, 17, 17, 0.7) 70%,
        rgba(17, 17, 17, 1) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Hero overlay (used in subpages) */
.hero-overlay {
    display: none;
}

/* Removed absolute positioning for reservation form overlay */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.4) 0%, rgba(17, 17, 17, 0.9) 100%);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

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

.hero-content {
    background: transparent;
    padding: 20px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero .hero-subtitle {
    font-family: var(--font-main);
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero .hero-about {
    font-family: var(--font-main);
    font-size: 1.4rem;
    line-height: 2.2;
    color: #ffffff;
    font-style: normal;
    margin-bottom: 40px;
    min-height: 160px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-outline, .hero-btn-solid {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: var(--font-main);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: var(--text-main);
}
.hero-btn-outline:hover {
    background: #ffffff;
    color: #fff;
}

.hero-btn-solid {
    background: transparent;
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
}

.hero-btn-solid:hover {
    background: var(--gold-solid);
    color: #000;
}

@keyframes floatGlowBig {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        transform: translateY(-15px);
        filter: drop-shadow(0 0 60px rgba(212, 175, 55, 1));
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.hero h1::after {
    display: none;
}

.hero p {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 2.4;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Common */
.section {
    padding: 100px 10%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

.section-title::after {
    display: none;
}

/* Reservation Section */
.reservation-section {
    background: #0d0d0d;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.reservation-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.reservation-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

.reservation-title::after {
    display: none;
}

.reservation-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: end;
}

.res-input-group {
    text-align: start;
}

.res-input-group label {
    display: block;
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.res-input-group select,
.res-input-group input {
    width: 100%;
    height: 54px;
    padding: 12px 15px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 !important;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.res-input-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 15px center;
}

.res-input-group select option {
    background-color: #000000;
    color: #fff;
}

.res-input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.res-input-group select:focus,
.res-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.res-submit-group {
    grid-column: span 1;
    margin-top: 0;
}

[dir="ltr"] .res-input-group {
    text-align: left;
}

[dir="ltr"] .res-input-group select {
    background-position: right 15px center;
}

.res-submit-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    height: 54px;
    padding: 0 30px;
    border: 1px solid #ffffff;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-submit-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

/* Story Split Section */
.story-split-section {
    background: var(--black-base);
    padding: 0;
    overflow: hidden;
}

.story-split-container {
    display: flex;
    align-items: center;
    min-height: 600px;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Put image on left, text on right for Arabic layout. If we want exactly like image (image on left, text on right) this works for RTL since flex-direction row-reverse puts the first item (image) on the left */
}

.story-image-wrapper {
    flex: 1;
    min-width: 300px;
    height: 400px; /* smaller fixed height */
    max-width: 45%; /* prevent it from taking over */
    padding: 15px; /* breathing room */
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px; /* rounded corners */
    border: 2px solid var(--gold-solid); /* gold border */
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.08), 0 5px 15px rgba(0, 0, 0, 0.4); /* gold and black shadows */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-image-wrapper img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 45px rgba(255, 255, 255, 0.12), 0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: #ffffff;
}

.story-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 2px solid var(--gold-solid);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-box {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Add a subtle icon or text when video is loading or empty */
.video-box::before {
    content: attr(data-loading-text);
    position: absolute;
    color: var(--gold-solid);
    font-family: var(--font-main);
    font-size: 1.2rem;
    opacity: 0.5;
    z-index: 0;
}

.video-box video {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .story-image-wrapper {
        max-width: 100%;
        height: 400px;
    }
}

.story-content-wrapper {
    flex: 1;
    min-width: 300px;
    padding: 60px 8%;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-subtitle {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.story-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

.story-title::after {
    display: none;
}

[dir="rtl"] .story-title::after {
    display: none;
}

[dir="ltr"] .story-title::after {
    display: none;
}

.story-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.55rem;
}

/* Dishes Gallery (اطباقنا) */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.gallery-item, .location-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 450px;
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item::before, .location-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    border: none;
    z-index: 1;
    pointer-events: none;
}

.gallery-item img, .location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.95);
}

.dish-name {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 25px;
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
    border-color: var(--gold-solid);
}

.gallery-item:hover .dish-name {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1);
}

/* Location Banner Section */
.location-banner-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--black-base);
    text-align: center;
}

.location-section-header {
    margin-bottom: 50px;
}

.location-grid {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.location-box {
    flex: 1;
    min-width: 300px;
    height: 400px; /* Set height here instead of grid */
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.location-box:hover {
    transform: translateY(-5px);
}

.location-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.location-box:hover img {
    transform: scale(1.05);
}

.location-box iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-box iframe:hover {
    filter: invert(90%) hue-rotate(180deg) contrast(1.3);
}

.location-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
}

.location-box:hover .location-overlay {
    background: rgba(0,0,0,0.3);
}

.location-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    transition: transform 0.4s ease;
}

.location-box:hover .location-overlay h3 {
    transform: scale(1.1);
}

.location-item:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Parallax Separator */
.parallax-separator {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    position: relative;
    clip-path: inset(0);
    z-index: 1;
}

.parallax-separator::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    will-change: transform;
}

/* Featured Menu Section */
.menu-featured-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.menu-featured-content {
    flex: 1;
    min-width: 300px;
    text-align: start;
}

.menu-featured-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-featured-item {
    position: relative;
    width: 100%;
}

.menu-featured-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
}

.menu-featured-item-header::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.menu-featured-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    background: var(--black-base);
    padding-left: 15px;
    z-index: 2;
    position: relative;
}

.menu-featured-price {
    font-size: 1.3rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--black-base);
    padding-right: 15px;
    z-index: 2;
    position: relative;
    font-weight: bold;
}

.menu-featured-desc {
    display: none;
}

.view-more-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.view-more-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-featured-image-wrapper {
    flex: 1;
    min-width: 300px;
    height: 550px;
    overflow: hidden;
}

.menu-featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    transition: transform 0.6s ease;
}

.menu-featured-image-wrapper:hover img {
    transform: scale(1.05);
}


/* Full Menu Page */
.menu-page-header {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--black-base), transparent);
}

.menu-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.menu-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-solid);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
    background: rgba(0, 0, 0, 0.8);
}

.menu-item-name {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.menu-item-price {
    font-size: 1.25rem;
    font-family: var(--font-main);
    color: #ffffff;
    font-weight: bold;
}

/* Footer */
/* Rich Footer Styling */
footer {
    background: linear-gradient(to top, #050505 0%, #121212 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 40px 30px;
    font-family: var(--font-main);
    color: var(--text-main);
    text-align: right;
    position: relative;
    overflow: hidden;
}

html[lang="en"] footer,
html[lang="tr"] footer {
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-column {
        align-items: center;
    }
    .footer-social-row {
        justify-content: center;
    }
    .footer-info-item {
        justify-content: center;
    }
    .footer-logo {
        margin: 0 auto 10px;
    }
}

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

.footer-logo {
    max-width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-info-item i {
    color: var(--gold-solid);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-column h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-solid);
}

html[lang="en"] .footer-column h4::after,
html[lang="tr"] .footer-column h4::after {
    right: auto;
    left: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s, padding-right 0.3s, padding-left 0.3s;
    font-size: 0.95rem;
}

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

html[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
}

html[dir="ltr"] .footer-links a:hover {
    padding-left: 5px;
}

.social-links-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.social-links-column a i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-solid);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-links-column a:hover i {
    background: var(--gold-solid);
    color: #000000;
    transform: scale(1.1);
}

html[dir="rtl"] .social-links-column a:hover {
    padding-right: 5px;
    padding-left: 0;
}

html[dir="ltr"] .social-links-column a:hover {
    padding-left: 5px;
    padding-right: 0;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-hours-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-days {
    font-weight: bold;
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

.footer-time {
    color: var(--gold-solid);
    font-size: 0.9rem;
    margin: 0;
}

.footer-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.15);
}

.instagram-item:hover::after {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-bottom p a {
    color: rgba(212, 175, 55, 0.6) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: var(--gold-solid) !important;
}

.footer-social-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-row a:hover {
    background: var(--gold-solid);
    color: #000000;
    border-color: var(--gold-solid);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

/* Admin Dashboard Styles */
.admin-container {
    max-width: 900px;
    margin: 120px auto 50px;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.admin-group {
    margin-bottom: 40px;
}

.admin-group label {
    display: block;
    color: var(--gold-solid);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.admin-group textarea, .admin-group input[type="file"] {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.1rem;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.admin-group textarea:focus {
    outline: none;
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
}

.admin-group textarea {
    height: 180px;
    resize: vertical;
}

.mega-menu-btn {
    background: var(--text-main);
    color: var(--gold-solid);
    border: none;
    padding: 20px 60px;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
}

.mega-menu-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.mega-menu-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #111;
    color: #fff;
}

.mega-menu-btn:hover::after {
    left: 150%;
}

.save-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.image-preview-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-preview-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.image-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid var(--gold-solid);
    border-radius: 8px;
}

.dish-name-input {
    width: 120px;
    padding: 5px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    font-family: var(--font-main);
    border-radius: 4px;
    text-align: center;
}

.remove-img-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LTR language (English / Turkish) overrides */
[dir="ltr"] .reservation-form .res-input-group label,
[dir="ltr"] .hero-content,
[dir="ltr"] .reservation-title {
    text-align: left;
}
[dir="ltr"] .reservation-form {
    text-align: left;
}
[dir="ltr"] .remove-img-btn {
    right: auto;
    left: -10px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right {
    opacity: 0;
    transform: translateX(150px) scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-150px) scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view, .slide-right.in-view, .slide-left.in-view, .slide-up.in-view {
    opacity: 1;
    transform: var(--target-transform, translate(0));
}

.slide-up {
    opacity: 0;
    transform: translateY(60px) scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== MOBILE SCROLL ANIMATION OVERRIDES ===== */
@media (max-width: 768px) {
    .slide-up {
        transform: translateY(30px) scale(0.95);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

/* Loading Screen */
.loader-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--black-base);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    max-width: 160px;
    width: 45vw;
    margin-bottom: 20px;
    animation: loaderLogoFade 1.8s cubic-bezier(0.25, 1.5, 0.5, 1) forwards, floatGlowBig 3s ease-in-out infinite alternate 1.8s;
}

.loader-content h2 {
    color: var(--gold-solid);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.luxury-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--gold-solid);
    border-radius: 50%;
    animation: spinLuxury 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin: 0 auto;
}

@keyframes spinLuxury {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Menu Page Styles */
.menu-item-card {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-solid);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.menu-item-content {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 700;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    opacity: 0.5;
}

.menu-item-price {
    font-family: var(--font-main);
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
}

/* Menu item description styling */
.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: right;
    width: 100%;
}

html[lang="en"] .menu-item-desc,
html[lang="tr"] .menu-item-desc {
    text-align: left;
}

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--black-base);
    text-align: center;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
    justify-content: center;
    align-items: stretch;
    text-align: right;
}

[dir="ltr"] .contact-container {
    text-align: left;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
}

.contact-card-title {
    color: var(--gold-solid);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-title i {
    font-size: 1.8rem;
}

.contact-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-field-group {
    margin-bottom: 20px;
}

.contact-field-group textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    resize: none;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-field-group textarea:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-wa-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}

.contact-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Email Display Styles */
.email-display-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

[dir="ltr"] .email-display-box {
    align-items: flex-start;
}

.email-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: bold;
}

.email-value {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
    font-family: 'TheSans Arabic Numbers', 'Freight Display Pro', serif !important;
}

.email-value:hover {
    color: var(--gold-solid);
}

.social-links-title {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: right;
}

[dir="ltr"] .social-links-title {
    text-align: left;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

[dir="ltr"] .social-icons {
    justify-content: flex-start;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--hover-color, var(--gold-solid));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 30px var(--hover-shadow, var(--gold-solid));
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon.instagram {
    --hover-color: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --hover-shadow: rgba(220, 39, 67, 0.6);
}

.social-icon.facebook {
    --hover-color: #1877F2;
    --hover-shadow: rgba(24, 119, 242, 0.6);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    header { padding: 10px 20px; }
    .logo-img { height: 50px; max-width: 150px; }
    .lang-btn { padding: 8px 15px; font-size: 0.9rem; }
    
    .hero {
        padding: 80px 15px 40px 15px;
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    .hero h1 { font-size: 2.2rem !important; margin-bottom: 10px !important; }
    .hero h1::after { width: 40px; margin: 15px auto 0; }
    .hero p { font-size: 1.15rem; line-height: 1.8; padding: 0 10px; }
    .hero .hero-about {
        min-height: 185px !important;
        font-size: 1.1rem;
        line-height: 2.1;
        color: #ffffff;
        margin-bottom: 0;
        max-width: 95%;
    }
    .hero-content {
        padding: 0px 15px;
        width: 100%;
    }
    
    .section { padding: 70px 5%; }
    .reservation-section {
        background-attachment: scroll !important;
        padding: 30px 15px !important;
    }
    .reservation-container {
        padding: 25px 15px !important;
        border-radius: 8px !important;
    }
    .reservation-title { font-size: 1.8rem; margin-bottom: 20px; }
    .reservation-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .res-submit-group {
        grid-column: span 1;
    }
    .res-input-group select,
    .res-input-group input {
        height: 48px !important;
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    .res-input-group input[type="date"] {
        -webkit-appearance: none !important;
        appearance: none !important;
        line-height: normal !important;
        display: block !important;
    }
    .res-input-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .gallery { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
    .gallery-item, .location-item { height: 350px; padding: 10px; }
    .gallery-item::before, .location-item::before { top: 10px; left: 10px; right: 10px; bottom: 10px; }
    .dish-name { bottom: 10px; left: 10px; right: 10px; font-size: 1.5rem; }
    
    .location-gallery { grid-template-columns: 1fr; }
    
    .mega-menu-btn { padding: 15px 40px; font-size: 1.8rem; }
    
    /* Loader specific adjustments for small screens */
    .loader-logo { max-width: 120px; }
    .loader-content h2 { font-size: 2rem; }
    
    /* Background floating logos adjustment */
    .floating-logo { width: 80px; }
    .logo2 { width: 120px; }
    .logo4 { width: 100px; }
    
    .admin-container { padding: 20px; margin-top: 100px; }
    .admin-group textarea { height: 120px; }
    
    /* Layout Adjustments for Mobile */
    .story-split-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-image-wrapper {
        min-height: 300px;
        order: 2; /* Always push image/video below text on mobile */
    }
    
    .video-box {
        height: 300px;
        min-height: 300px;
        order: 2;
    }
    
    .location-box {
        height: 300px; 
    }
    
    .map-box {
        height: 400px; /* Give the map more room to show on mobile */
        display: block; /* Ensure it shows */
    }
    
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .email-display-box {
        align-items: center;
        text-align: center;
    }
    
    .social-links-title {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
    
    /* Smooth mobile scroll animation overrides */
    .animate-on-scroll {
        transform: translateY(30px) scale(0.95);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .slide-right {
        transform: translateX(30px) scale(0.95);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .slide-left {
        transform: translateX(-30px) scale(0.95);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .parallax-separator {
        height: 45vh;
        min-height: 250px;
    }
    
    .story-title { font-size: 1.6rem; margin-bottom: 15px; }
    .story-text { font-size: 1.15rem; line-height: 1.8; }
    .location-overlay h3 { font-size: 1.5rem; }
    .view-more-btn { font-size: 0.95rem; padding: 10px 25px; }
    .menu-featured-name { font-size: 1.1rem; }
    .menu-featured-price { font-size: 1rem; }
    .menu-featured-desc { font-size: 0.85rem; }
    .menu-item-name { font-size: 1.1rem; }
    .menu-item-price { font-size: 1rem; }

    /* Login Page Mobile Styles */
    .login-box {
        padding: 30px 20px;
        width: 92%;
    }
    .login-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .login-group input {
        padding: 12px;
        font-size: 0.95rem;
    }
    .login-submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    #addMenuBtn {
        width: 100% !important;
    }
}

/* --- Added Header Navigation & Mobile Menu Styles --- */
.nav-links-desktop {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-links-desktop a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 16px;
    position: relative;
    transition: color 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.nav-links-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.nav-links-desktop a:hover {
    color: var(--gold-solid);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.nav-links-desktop a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* LTR layout alignment for Nav links (to keep them neat) */
[dir="ltr"] .nav-links-desktop {
    gap: 20px;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    grid-column: 1;
    justify-self: start;
}
.hamburger-bar {
    width: 25px;
    height: 2px;
    background-color: var(--gold-solid);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Mobile Dropdown Navigation */
.mobile-nav-dropdown {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
    gap: 25px;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-dropdown.active {
    top: 0;
}
.mobile-nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(-20px);
    text-align: center;
    max-width: 90%;
    white-space: nowrap;
}
.mobile-nav-dropdown.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.08s);
}
.mobile-nav-link:hover {
    color: var(--gold-solid);
    transform: scale(1.05);
}

/* Hamburger Transform Animation */
.hamburger-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .nav-links-desktop {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .logo-wrapper {
        grid-column: 2;
        justify-self: center;
        height: 65px;
    }
    .hamburger-btn.active ~ .logo-wrapper {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .menu-logo {
        display: none !important;
    }
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        display: inline-flex !important;
        align-items: center;
        gap: 4px !important;
    }
    .lang-flag-img {
        width: 18px !important;
        height: 12px !important;
        object-fit: cover !important;
        border-radius: 1px !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }
}

/* --- Added Dotted Leader Price Spacing for Homepage Featured Menu --- */
.menu-featured-card {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.menu-featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-solid);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.menu-featured-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.menu-featured-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    z-index: auto;
    position: static;
}

.menu-featured-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    opacity: 0.5;
}

.menu-featured-price {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    z-index: auto;
    position: static;
    white-space: nowrap;
}

/* --- FAQ Section Styles --- */
.faq-section {
    background: transparent;
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: start;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 16px 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--gold-solid);
}

.faq-question .faq-icon {
    font-size: 1.1rem;
    color: var(--gold-solid);
    transition: transform 0.3s ease;
    margin-right: 15px;
    margin-left: 15px;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid transparent;
}

}

/* Offers Section Styling */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    min-width: 0;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-solid);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}

.offer-time-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-solid);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.5px;
}

.offer-name {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: bold;
}

.offer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-price-tag {
    font-size: 1.3rem;
    color: var(--gold-solid);
    font-weight: bold;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: start;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px 20px 20px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .offer-card {
        padding: 22px 18px !important;
    }
    
    .offer-name {
        font-size: clamp(1.1rem, 4.5vw, 1.25rem) !important;
    }
    
    .offer-desc {
        font-size: clamp(0.85rem, 3.8vw, 0.9rem) !important;
        line-height: 1.6 !important;
    }
}

/* Force Fonts on Mobile Headers */
@media (max-width: 768px) {
    .section-title, .story-title, .reservation-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        color: var(--gold-solid) !important;
        display: inline-block !important;
        position: relative !important;
        padding-bottom: 10px !important;
        text-align: center !important;
    }
    
    .section-title::after, .story-title::after, .reservation-title::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 45px !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 1px !important;
        display: block !important;
    }
    
    .faq-container {
        padding: 0 15px !important;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px !important;
        padding: 10px 15px 15px 15px !important;
        border-top-color: rgba(255, 255, 255, 0.05) !important;
    }
}

/* Login Page Dashboard Styles */
.login-box {
    max-width: 450px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 10000;
}

.login-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.login-title {
    color: var(--gold-solid);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
}

.login-group {
    margin-bottom: 20px;
    text-align: right;
}

.login-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.login-group input {
    width: 100%;
    padding: 14px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.login-group input:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.login-submit-btn {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 14px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.login-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: right;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* --- New Styles for Multi-page Transparent Header --- */
header.glass-panel {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header.glass-panel.scrolled {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

.nav-links-desktop a.active {
    color: var(--gold-solid) !important;
}
.nav-links-desktop a.active::after {
    transform: translateX(-50%) scaleX(1) !important;
}

/* --- New Styles for Home Page Hours & Offers Section --- */
.hours-offers-section {
    padding: 100px 10%;
    background: var(--black-base);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-offers-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hours-column, .offers-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hours-subtitle-gold {
    font-family: var(--font-heading);
    color: var(--gold-solid);
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.hours-title-large {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.hours-content-text {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 2;
    white-space: pre-line;
    margin-bottom: 35px;
}

.hours-action-link {
    color: var(--gold-solid);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--gold-solid);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.hours-action-link:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hours-middle-image {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.hours-middle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hours-middle-image:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .hours-offers-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hours-middle-image {
        height: 380px;
    }
}

/* --- New Styles for Contact Page Form & Layout --- */
.contact-input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact-input:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-sizing: border-box;
    resize: none;
}

.contact-textarea:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-submit-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 35px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-weight: normal;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.contact-submit-btn:hover {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-info-icon {
    color: var(--gold-solid);
    font-size: 1.25rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 3px;
}

.contact-info-value {
    color: var(--text-muted);
}

/* --- Admin Tabs Styling --- */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.admin-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.admin-tab-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-tab-btn.active {
    background: var(--gold-gradient);
    color: #111;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.admin-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.admin-tab-content.active {
    display: block;
}

/* Desktop Header Right Side & Language Flag Styling */
.header-right-wrapper {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-socials a {
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.85;
    text-decoration: none;
}

.header-socials a:hover {
    color: var(--gold-solid);
    transform: scale(1.15);
}

@media (max-width: 1023px) {
    .header-socials {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lang-btn {
        font-size: 1rem !important;
        padding: 10px 22px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .lang-flag-img {
        width: 22px !important;
        height: 15px !important;
        object-fit: cover !important;
        border-radius: 2px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.35) !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }
}

/* Homepage reservation container override to keep fields naked */
#reservation .reservation-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 20px 0 !important;
}

/* Back to Top Button Styling */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--gold-solid);
    border-radius: 50%;
    color: var(--gold-solid);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    outline: none;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* Header Reserve Button styling */
.nav-links-desktop a.header-reserve-btn {
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 16px !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: color 0.4s ease !important;
    font-weight: 700 !important;
    display: inline-block !important;
}

.nav-links-desktop a.header-reserve-btn:hover {
    background: transparent !important;
    color: var(--gold-solid) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

.nav-links-desktop a.header-reserve-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    display: block !important;
}

.nav-links-desktop a.header-reserve-btn:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
}

/* Hero title luxury reveal animation */
.slide-down-anim {
    opacity: 0;
}

body.loaded .slide-down-anim {
    animation: luxuryTitleReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes luxuryTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

/* ===== HERO BOOK BUTTON ===== */
.hero-book-btn {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid rgba(255,255,255,0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 1px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.hero-book-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ===== HOME MENU 3-DISH GRID ===== */
.home-menu-section {
    background: var(--black-base);
}

.home-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.home-dish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
    filter: brightness(0.75);
}

.home-dish-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.home-dish-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.home-dish-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-dish-price {
    font-family: var(--font-main);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}

/* Goto Menu Button */
.goto-menu-btn {
    display: inline-block;
    padding: 16px 55px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 1px;
}

.goto-menu-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

@media (max-width: 992px) {
    .home-menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .home-dish-card {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .home-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-dish-card {
        height: 300px;
    }
    .hero-book-btn {
        padding: 13px 35px;
        font-size: 1rem;
    }
    .goto-menu-btn {
        padding: 13px 35px;
        font-size: 1rem;
    }
}

/* ===== MOBILE LOGO SIZE ===== */
@media (max-width: 992px) {
    .logo-wrapper {
        height: 70px !important;
    }
}

/* ===== LOADER MOBILE ===== */
@media (max-width: 768px) {
    .loader-logo {
        max-width: 160px !important;
    }
    .loader-tagline {
        font-size: 0.85rem !important;
        letter-spacing: 4px !important;
    }
}

/* ===== ALL SHARP CORNERS OVERRIDES ===== */
.faq-item { border-radius: 0 !important; }
.menu-featured-card { border-radius: 0 !important; }
.menu-item-card { border-radius: 0 !important; }
.offer-card { border-radius: 0 !important; }
.location-box { border-radius: 0 !important; }
.hours-middle-image { border-radius: 0 !important; }
.back-to-top-btn { border-radius: 0 !important; }
.mobile-nav-dropdown { border-radius: 0 !important; }
.offer-time-badge { border-radius: 0 !important; }

/* ===== HERO TITLE - NO GOLD ===== */
.hero-title {
    color: #ffffff !important;
}

/* ===== FAQs sharp ===== */
.faq-item.active {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ===== MOBILE SECTION TITLE (no gold) ===== */
@media (max-width: 768px) {
    .section-title, .story-title, .reservation-title {
        color: #ffffff !important;
    }
    .section-title::after, .story-title::after, .reservation-title::after {
        display: none !important;
    }
}

/* ===== HOURS SECTION - KEEP SUBTLE GOLD ACCENT ===== */
.hours-subtitle-gold {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== LANG FLAG IMG - SHARP ===== */
.lang-flag-img {
    border-radius: 0 !important;
}

/* ===== FOOTER COLUMN H4 AFTER - REMOVE ===== */
.footer-column h4::after {
    display: none;
}

/* ===== FOOTER HOURS SHARP ===== */
.footer-social-row a {
    border-radius: 0 !important;
}

/* ===================================================
   GLOBAL: NO GOLD - WHITE ONLY THEME
=================================================== */
:root {
    --gold-solid: #ffffff;
    --gold-gradient: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, #ffffff 100%);
}
.hours-subtitle-gold { color: rgba(255,255,255,0.6) !important; }
.header-reserve-btn { border-color: rgba(255,255,255,0.5) !important; color: #ffffff !important; background: rgba(255,255,255,0.05) !important; }
.header-reserve-btn:hover { background: #ffffff !important; color: #000000 !important; }
.faq-item.active { border-color: rgba(255,255,255,0.3) !important; }
.loader-line { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent) !important; }
.loader-logo { filter: drop-shadow(0 0 30px rgba(255,255,255,0.15)) !important; }

/* ===================================================
   GLOBAL: NO GOLD - MONOCHROME WHITE THEME & SHARP CORNERS
=================================================== */
:root {
    --gold-solid: #ffffff !important;
    --gold-gradient: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, #ffffff 100%) !important;
}

/* Remove all underlines under headings */
h1::after, h2::after, h3::after, h4::after,
.section-title::after, .story-title::after, .reservation-title::after,
.hero h1::after, .footer-column h4::after, .nav-links-desktop a::after {
    display: none !important;
}

/* Subtitle white styling */
.hours-subtitle-gold { 
    color: rgba(255,255,255,0.7) !important; 
}

.header-reserve-btn { 
    border-color: rgba(255,255,255,0.5) !important; 
    color: #ffffff !important; 
    background: rgba(255,255,255,0.05) !important; 
    border-radius: 0 !important;
}
.header-reserve-btn:hover { 
    background: #ffffff !important; 
    color: #000000 !important; 
}

/* ===== FOOTER UPDATES ===== */
.footer-logo {
    max-width: 140px !important;
    height: auto !important;
    object-fit: contain !important;
    margin-bottom: 15px !important;
}

/* Remove surrounding boxes/borders around footer social links */
.footer-social-row a {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    margin-right: 18px !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-social-row a:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
}

/* ===== CONTACT PAGE - SHARP RECTANGLES ===== */
.contact-card, 
.contact-input, 
.contact-textarea, 
.contact-submit-btn, 
.contact-wa-btn, 
.contact-info-item,
.email-display-box {
    border-radius: 0 !important;
}

.contact-card {
    background: rgba(0, 0, 0, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.contact-input, .contact-textarea {
    background: rgba(15, 15, 15, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.contact-input:focus, .contact-textarea:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

.contact-submit-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
    padding: 14px 35px !important;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-submit-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* ===== RESERVATION PAGE - BACKGROUND CONTAINER RECTANGLE ADJUSTMENT ===== */
.reservation-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 45px 40px !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7) !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .reservation-container {
        padding: 25px 20px !important;
        width: 95% !important;
    }
}

/* ===================================================
   PERFORMANCE OPTIMIZATION (BLAZING FAST 60FPS SCROLL)
=================================================== */
header, .glass-panel, .contact-card, .location-box, .hours-column, .offers-column {
    background: rgba(8, 8, 8, 0.94) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateZ(0);
}

/* ===================================================
   STRICT MOBILE & DESKTOP LUXURY LANGUAGE SELECTOR
=================================================== */
.lang-dropdown-wrapper {
    position: relative !important;
    display: inline-block !important;
    z-index: 10005 !important;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    padding: 7px 14px !important;
    font-size: 0.85rem !important;
    font-family: var(--font-main) !important;
    font-weight: bold !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.lang-btn:hover, .lang-dropdown-wrapper.active .lang-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.lang-chevron {
    font-size: 0.7rem !important;
    transition: transform 0.3s ease !important;
}

.lang-dropdown-wrapper.active .lang-chevron {
    transform: rotate(180deg) !important;
}

/* Dropdown Modal Container */
.lang-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: auto !important;
    min-width: 140px !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95) !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    z-index: 10010 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

html[dir="rtl"] .lang-dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

.lang-dropdown-wrapper.active .lang-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown Option Items - STRICT VERTICAL STACK */
.lang-opt-btn {
    background: #0d0d0d !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
    margin: 0 !important;
    text-align: start !important;
}

.lang-opt-btn:last-child {
    border-bottom: none !important;
}

.lang-opt-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.lang-opt-btn.active {
    color: #ffffff !important;
    font-weight: bold !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.lang-check-icon {
    font-size: 0.75rem !important;
    color: #ffffff !important;
    opacity: 0 !important;
}

.lang-opt-btn.active .lang-check-icon {
    opacity: 1 !important;
}

/* All pattern overlays completely removed */







/* ===== LUXURY RESERVATION FORM FIELD STYLING ===== */
.reservation-container select,
.reservation-container input {
    background: #080808 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    font-family: var(--font-main) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
}

.reservation-container select:focus,
.reservation-container input:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25) !important;
}

.reservation-container label {
    color: #ffffff !important;
    font-weight: bold !important;
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.res-submit-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.res-submit-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
}


