/* CSS Reset and Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize font loading */
@font-face {
    font-family: 'Cinzel';
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-display: swap;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4e4c1;
    --gold-dark: #c9a028;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --sand: #f4e4c1;
    --beige: #e8d5b7;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: pulse 2s ease infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    /* Ensure video covers entire viewport */
    min-width: 100vw;
    min-height: 100vh;
}

/* Aspect ratio adjustments */
@media (aspect-ratio: 16/9) {
    .hero-video video {
        width: 100%;
        height: auto;
    }
}

@media (aspect-ratio < 16/9) {
    /* Portrait screens */
    .hero-video video {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}

@media (aspect-ratio > 16/9) {
    /* Ultra-wide screens */
    .hero-video video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.hero-title .line {
    display: block;
}

.hero-title .gold {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--white);
    margin: 10px auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 1.5s ease-in-out infinite;
}

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

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn-block {
    width: 100%;
}

.contact-action-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--gold);
}

/* About Section */
.about {
    position: relative;
    background-color: transparent;
    background-image: url('IMG_0931.heic');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

/* Fix background attachment on mobile */
@media (max-width: 768px) {
    .about,
    .menu-dishes-section,
    #contact {
        background-attachment: scroll !important;
    }
}

/* .about::before removed to show background image clearly */

.about .container {
    position: relative;
    z-index: 1;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3rem;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.about-highlight {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-top: 3rem;
    letter-spacing: 8px;
    font-weight: 600;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Prevent image distortion */
    max-width: 100%;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    z-index: 2;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Menu Page */
.menu-page {
    position: relative;
    background: var(--white);
    min-height: 100vh;
}

/* Menu Hero */
.menu-hero {
    position: relative;
    min-height: 80vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.menu-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('IMG_0931.heic');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
}

.menu-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-hero-title .gold-text {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Menu Hero Contact Info Styles */
.menu-hero-content .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-hero-content .info-block {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 1.5rem 2.5rem;
    transition: var(--transition);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-hero-content .info-block:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.menu-hero-content .info-block h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.menu-hero-content .info-block p {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.menu-hero-content .social-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

/* Menu Container */
.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Carte Section */
.menu-carte-section {
    padding: 80px 0;
    background: var(--white);
}

.carte-header {
    text-align: center;
    margin-bottom: 60px;
}

.carte-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.carte-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.carte-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--black);
    margin: 0;
}

.carte-divider {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

/* Desktop Gallery */
.carte-gallery-desktop {
    display: block;
}

.carte-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
}

.carte-scroll-container::-webkit-scrollbar {
    height: 10px;
}

.carte-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.carte-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.carte-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.carte-scroll-container {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
}

.carte-image-wrapper {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.carte-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carte-image {
    width: 400px;
    height: 566px;
    object-fit: cover;
    display: block;
}

/* Mobile Gallery */
.carte-gallery-mobile {
    display: none;
    text-align: center;
    padding: 20px 0;
}

/* Fix for mobile image container */
@media (max-width: 768px) {
    .carte-carousel {
        overflow: hidden;
        padding: 0 10px;
    }
    
    .carte-image-mobile {
        max-width: 90vw !important;
        height: auto !important;
        max-height: 60vh !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        /* Remove any transforms that might cause zoom */
        transform: none !important;
    }
}

.carte-carousel {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.carte-image-mobile {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Prevent over-zooming */
    transform: scale(1);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background: var(--sand);
    border-radius: 30px;
    margin: 0 auto;
    width: fit-content;
}

.zoom-btn,
.page-nav-btn {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover,
.page-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.page-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-indicator {
    font-weight: 600;
    color: var(--black);
    min-width: 50px;
}

/* Dishes Section */
.menu-dishes-section {
    padding: 80px 0 0 0;
    background-image: url('IMG_0931.heic');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Overlay removed for cleaner look
.menu-dishes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 228, 193, 0.85);
    z-index: 0;
} */

.menu-dishes-section .menu-container {
    position: relative;
    z-index: 1;
}

.egyptian-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 400px;
    z-index: 2;
}

.egyptian-decoration.left {
    left: 20px;
}

.egyptian-decoration.right {
    right: 20px;
}

.egyptian-decoration svg {
    width: 100%;
    height: 100%;
}

/* Specialties Section Decorations */
.specialties-container {
    position: relative;
    padding: 0 100px;
}

.specialties-decoration {
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    z-index: 1;
}

.specialties-decoration.left {
    left: 0;
}

.specialties-decoration.right {
    right: 0;
}

.specialties-decoration svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .specialties-container {
        padding: 0 60px;
    }
    
    .specialties-decoration {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .specialties-decoration {
        display: none;
    }
    
    .specialties-container {
        padding: 0 20px;
    }
}

.dishes-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--black);
    margin-bottom: 60px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.dish-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dish-card-large {
    grid-column: span 1;
    height: 200px;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.dish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}

.dish-card:hover .dish-image {
    transform: scale(1.1);
}

.dish-card:hover .dish-overlay {
    opacity: 1;
}

/* Menu CTA Section */
.menu-cta-section {
    padding: 40px 0;
    background: var(--white);
}

.menu-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery-wrapper {
    display: grid;
    gap: 2rem;
}

.gallery-main {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.thumb {
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Reservation Section */
.reservation {
    background: var(--white);
    position: relative;
    padding-top: 120px;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.oriental-divider {
    width: 100%;
    height: 100%;
    display: block;
}

.reservation-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    padding: 1.5rem;
    background: var(--sand);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-dark);
    transform: translateX(5px);
}

.reservation-form-wrapper {
    background: var(--black);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.reservation-options {
    text-align: center;
}

.reservation-options h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.reservation-options p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.odyssey-widget-container {
    margin-top: 2rem;
    min-height: 100px;
}

.reservation-form h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.reservation-form input::placeholder,
.reservation-form select::placeholder,
.reservation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.reservation-contact {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.reservation-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.phone-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--gold-light);
}

/* Contact Section */
#contact {
    position: relative;
    background-image: url('fond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
#contact .container {
    position: relative;
    z-index: 2;
}

/* Ensure text readability without overlay */
#contact .section-title {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#contact h3 {
    color: var(--white);
}

#contact p {
    color: var(--white);
}

.contact-actions-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.action-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-action-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
}

.contact-action-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-detail {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem !important;
    margin-bottom: 1.2rem !important;
}

.contact-hours,
.social-links-section {
    text-align: center;
    margin: 3rem 0;
}

.contact-hours h3,
.social-links-section h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.contact-hours p {
    color: var(--white);
    font-size: 1.2rem;
}

.social-links-section .social-links {
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.info-block {
    padding: 1.5rem;
}

.info-block h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-block p {
    line-height: 1.8;
}

.social-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.contact-map {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.map-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--gold-light);
}

.features-list {
    text-align: center;
}

.features-list h3 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-tag {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.feature-tag:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer */
.footer {
    background: var(--black-light);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    text-align: center;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.powered {
    font-size: 0.9rem;
    opacity: 0.8;
}

.powered a {
    color: var(--gold);
    text-decoration: none;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease forwards;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-fade.visible {
    animation: revealText 0.8s ease forwards;
}

.reveal-slide {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-slide.visible {
    animation: revealSlide 0.8s ease forwards;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
}

.reveal-scale.visible {
    animation: revealScale 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Video styles - keep on all devices */
.hero-slider {
    display: none; /* Hide slider by default when video is present */
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin: 0 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    color: var(--black);
}

/* RTL Support */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .nav-menu {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .about-content {
    direction: rtl;
}

html[dir="rtl"] .contact-info {
    text-align: right;
}

html[dir="rtl"] .egyptian-decoration.left {
    right: 0;
    left: auto;
}

html[dir="rtl"] .egyptian-decoration.right {
    left: 0;
    right: auto;
}

html[dir="rtl"] .nav-logo {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Mobile video adjustments */
@media (max-width: 768px) {
    .hero-video video {
        /* Better scaling for mobile - reduced scale to prevent over-zoom */
        transform: translate(-50%, -50%) scale(1.05);
        /* Ensure full coverage on mobile */
        width: auto;
        height: 100%;
        min-width: 100%;
        min-height: 100vh;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-video video {
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-wrapper,
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-actions-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-copyright {
        text-align: center;
    }
    
    /* Menu tablet adjustments */
    .carte-image {
        width: 350px;
        height: 495px;
    }
    
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .egyptian-decoration {
        display: none;
    }
    
    .menu-hero-content .contact-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .language-switcher {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .nav-cta {
        margin-top: 2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .about {
        padding-bottom: 0 !important;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-container {
        height: 400px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Menu responsive */
    .carte-gallery-desktop {
        display: none;
    }
    
    .carte-gallery-mobile {
        display: block;
    }
    
    .carte-image-mobile {
        max-width: 95vw;
        width: auto;
        height: auto;
        max-height: 65vh;
        object-fit: contain;
        /* Center the image */
        margin: 0 auto;
        display: block;
    }
    
    .carte-image {
        width: 300px;
        height: 425px;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .dish-card {
        height: 180px;
    }
    
    .menu-hero-content .contact-info {
        gap: 1rem;
        max-width: 100%;
    }
    
    .menu-hero-content .info-block {
        padding: 0.8rem 1.5rem;
    }
    
    .menu-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .reservation-form-wrapper {
        padding: 1.5rem;
    }

    .contact-map {
        height: 250px;
    }

    .map-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* Extra small mobile adjustments */
    .carte-image-mobile {
        max-width: 85vw !important;
        max-height: 55vh !important;
    }
    
    .hero-video video {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .dish-card {
        height: 150px !important;
    }
    
    .carousel-container {
        height: 350px !important;
    }
}