/* ───── CUSTOM FONTS (Askim Style) ───── */
@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-500.woff2') format('woff2');
    font-weight: 500; font-style: normal;
}
@font-face {
    font-family: 'Caros';
    src: url('fonts/Caros-Heavy.woff2') format('woff2');
    font-weight: 900; font-style: normal;
}

:root {
    --beige: #EFEAD2;
    --white: #EFEFF0;
    --navy: #2D3442;
    --navy-light: #3a4358;
    --red: #923036;
    --dark: #1a1f2b;
    --gold: #D4AF37;
    --font-heading: 'Museo Slab', 'Roboto Slab', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-display: 'Caros', 'Raleway', sans-serif;
    
    /* Spacing */
    --section-padding: 160px;
    --container-width: 1300px;
}

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

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

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

/* ───── FLOATING WHATSAPP BUTTON ───── */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: 50%;
    color: var(--navy);
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 25px rgba(239, 234, 210, 0.5);
    border: none;
}

.whatsapp-floating a:hover {
    background: var(--white);
    color: var(--navy);
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(239, 234, 210, 0.7);
}

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

@media (max-width: 480px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-floating a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
.custom-cursor { display: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-padding) 0;
}

/* Menu section closer to hero on mobile */
section.menu {
    padding-top: var(--section-padding);
}

@media (max-width: 768px) {
    section.menu {
        padding-top: 48px;
    }
}

/* ───── REVEAL ANIMATIONS ───── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ───── NAVBAR ───── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

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

.nav-link-desktop {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-desktop::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--beige);
    transition: width 0.3s ease;
}

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

.nav-logo img {
    height: 90px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* ───── CENTER LOGO ───── */
.nav-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 20px;
    z-index: 500;
}

.nav-logo-center img {
    height: 50px;
    max-width: 140px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    object-fit: contain;
}

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

.nav-reserve-btn {
    border: 1px solid var(--beige);
    color: var(--beige);
    padding: 14px 32px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 1;
}

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

/* ───── HAMBURGER ───── */
.hamburger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 6px;
    padding: 10px; z-index: 1100;
}
.hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white); transition: 0.3s;
}
.hamburger:hover span:nth-child(2) { transform: translateX(5px); }

/* ───── MENU OVERLAY ───── */
.menu-overlay {
    position: fixed; inset: 0; z-index: 2000;
    visibility: hidden; opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-overlay.open { visibility: visible; opacity: 1; }

.menu-overlay-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 66, 0.9) 0%, rgba(26, 31, 43, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-overlay.open .menu-overlay-bg { transform: translateY(0); }

.menu-overlay-content {
    position: relative; z-index: 2;
    height: 100%; display: flex;
    align-items: center; justify-content: center;
    padding: 60px 30px 150px;
}

@media (max-width: 768px) {
    .menu-overlay-content { padding: 60px 20px 140px; }
    .menu-overlay-links a { font-size: clamp(24px, 5vw, 48px); }
    .menu-overlay-links li { margin: 16px 0; }
    .menu-overlay-links li:last-child { margin-bottom: 80px; }
    .menu-overlay-footer { bottom: 20px; left: 20px; right: 20px; width: calc(100% - 40px); }
    .menu-overlay-reserve { padding: 14px 15px; }
    .menu-close { top: 20px; right: 20px; }
}

.menu-overlay-links { list-style: none; text-align: center; }
.menu-overlay-links li { margin: 18px 0; overflow: hidden; }
.menu-overlay-links li:last-child {
    margin-bottom: 120px;
}
.menu-overlay-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 70px);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: 0.05em;
    padding: 10px 0;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}
.menu-overlay.open .menu-overlay-links a { transform: translateY(0); }
.menu-overlay-links a:active {
    transform: scale(0.95) translateY(0);
    opacity: 0.7;
}
.menu-overlay-links a:hover { color: var(--beige); }

.menu-overlay-footer {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 100%;
    z-index: 10;
}

.menu-overlay-reserve {
    display: block;
    border: 2px solid var(--beige);
    color: var(--beige);
    padding: 16px 20px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

.menu-overlay-reserve:active {
    transform: scale(0.98);
    opacity: 0.85;
    background: rgba(239, 234, 210, 0.2);
}

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

.menu-close {
    position: absolute; top: 40px; right: 30px;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; z-index: 3;
}
.menu-close span {
    position: absolute; top: 50%; left: 0;
    width: 100%; height: 2px; background: var(--white);
    transition: all 0.3s ease;
}
.menu-close span:nth-child(1) { transform: rotate(45deg); }
.menu-close span:nth-child(2) { transform: rotate(-45deg); }

.menu-close:hover span { background: var(--beige); }

@media (max-width: 768px) {
    .menu-overlay-content { padding: 50px 20px 120px; }
    .menu-overlay-links a { font-size: clamp(24px, 5vw, 48px); }
    .menu-overlay-footer { bottom: 30px; left: 20px; right: 20px; }
    .menu-close { top: 30px; right: 20px; }
}

/* ───── HERO ───── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
    transform: scale(1.1);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 31, 43, 0.3), rgba(26, 31, 43, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-est {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--beige);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 9vw, 100px);
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-arabic {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(28px, 7vw, 60px);
    font-weight: 900;
    color: #e63946;
    direction: rtl;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.8);
}

.hero-en {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 8.5vw, 96px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-cafe {
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(28px, 6vw, 64px);
    color: #e63946;
    text-transform: none;
    line-height: 1;
    align-self: flex-end;
    margin-right: clamp(10px, 5vw, 60px);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.8);
}

.hero-main-title em { font-style: italic; }

.hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: var(--beige);
    color: var(--navy);
    padding: 20px 50px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ───── EXPERIENCE (Askim Layout) ───── */
.experience-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 70px);
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--beige);
    margin-bottom: 40px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    background: rgba(58, 67, 88, 0.3);
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(239, 234, 210, 0.05);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
}

.experience-card:hover {
    background: rgba(58, 67, 88, 0.5);
    border-color: var(--beige);
    transform: translateY(-15px);
}

.exp-icon { font-size: 40px; margin-bottom: 30px; display: block; }

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--beige);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ───── MENU ───── */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-tabs { display: flex; justify-content: center; gap: 40px; margin-bottom: 80px; flex-wrap: wrap; }

.tabs-scroll-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.tabs-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 100%;
    background: linear-gradient(to right, transparent, var(--dark, #1a1f2b));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tabs-scroll-wrapper.has-overflow::after {
    opacity: 1;
}

.tabs-scroll-wrapper .menu-tabs {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tabs-scroll-wrapper::after { opacity: 1; }
    .menu-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 60px;
        scrollbar-width: none;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { font-size: 11px; letter-spacing: 0.15em; padding: 10px 0; flex-shrink: 0; }
}

.menu-type-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.menu-type-btn {
    padding: 12px 36px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
}

.menu-type-btn.active {
    background: rgba(212,175,55,0.15);
    color: var(--gold, #d4af37);
}
.menu-tab {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    padding: 15px 0;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: 0.4s;
    border-bottom: 1px solid transparent;
}
.menu-tab.active { color: var(--beige); border-bottom-color: var(--beige); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 100px;
}

.menu-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-item-img {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.menu-item-img::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    color: white;
    font-size: 22px;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-item:hover .menu-item-img img { transform: scale(1.1); }
.menu-item:hover .menu-item-img::after { opacity: 1; background: rgba(0,0,0,0.35); }

.menu-item-info { flex: 1; min-width: 0; width: 100%; }

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(239, 234, 210, 0.2);
    padding-bottom: 5px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    flex: 1;
}

.menu-item-price {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--beige);
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* ───── FOOTER ───── */
footer { padding: 100px 0 60px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; background: #1a1f2b; }
.social-links { display: flex; justify-content: center; gap: 25px; margin-bottom: 50px; }
.social-links a { 
    color: var(--beige); 
    font-size: 20px; 
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(239, 234, 210, 0.1);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.social-links a:hover { 
    color: var(--navy); 
    background: var(--beige);
    transform: translateY(-10px) rotate(360deg);
}

@media (max-width: 1024px) {
    .experience-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; gap: 40px; }
    nav { padding: 20px 30px; }
    .nav-link-desktop { display: none; } /* Hide desktop links on tablet/mobile */
}

@media (max-width: 768px) {
    .hero-main-title { font-size: 60px; }
    .section-title { font-size: 40px; }
    .menu-item { flex-direction: column; text-align: left; }
    .menu-item-img { margin: 0 auto; width: 100%; height: 200px; }
    .menu-item-header { text-align: left; }
    .menu-item-desc { text-align: left; }
    .nav-reserve-btn { display: none; } /* Hide reservation button on small mobile if needed, or keep it small */
    nav { padding: 15px 20px; }
    .nav-logo img { height: 50px; }
}

/* LANDSCAPE MODE */
@media (max-height: 600px) and (orientation: landscape) {
    section { padding: 80px 0; }
    .hero { height: auto; min-height: 100vh; padding: 100px 0; }
    .hero-main-title { font-size: 48px; }
    nav { padding: 15px 30px; }
    .nav-logo img { height: 50px; }
    .menu-grid { gap: 30px 50px; }
    .testimonials-carousel { gap: 30px; }
}

/* ───── PRELOADER ───── */
#preloader {
    position: fixed; inset: 0; background: var(--navy);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-logo { height: 80px; margin-bottom: 20px; animation: pulse 2s infinite; }
.preloader-bar { width: 150px; height: 2px; background: rgba(239, 234, 210, 0.1); margin: 0 auto; position: relative; overflow: hidden; }
.preloader-bar::after {
    content: ''; position: absolute; left: -100%; width: 100%; height: 100%;
    background: var(--beige); animation: loading 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }
@keyframes loading { 100% { left: 100%; } }

/* ───── OVERLAPPING LAYOUT ───── */
.overlap-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; align-items: center; position: relative;
}
.overlap-image { position: relative; z-index: 1; padding-right: 100px; overflow: hidden; border-radius: 4px; }
.overlap-image:hover img {
    transform: scale(1.05);
}
.overlap-image img { 
    width: 100%; 
    height: 600px; 
    object-fit: cover; 
    filter: brightness(0.8);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(239, 234, 210, 0.05);
}
.overlap-content {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    background: var(--navy); padding: 80px; z-index: 2; max-width: 600px;
    border: 1px solid rgba(239, 234, 210, 0.05); box-shadow: -20px 20px 60px rgba(0,0,0,0.3);
}
.experience-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mini-item { display: flex; align-items: center; gap: 15px; }
.mini-icon { font-size: 24px; color: var(--beige); }
.mini-item p { font-size: 13px; font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* ───── TESTIMONIALS / FEATURES SECTION ───── */
.testimonials {
    background: linear-gradient(135deg, #3a4358 0%, var(--navy) 100%);
    padding: var(--section-padding) 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.testimonial-item {
    background: rgba(45, 52, 66, 0.5);
    padding: 50px 40px;
    border: 1px solid rgba(239, 234, 210, 0.1);
    border-radius: 4px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
}

.testimonial-item:hover {
    background: rgba(58, 67, 88, 0.6);
    border-color: rgba(239, 234, 210, 0.3);
    transform: translateY(-15px);
}

.testimonial-logo {
    font-size: 48px;
    color: var(--beige);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: var(--font-body);
}

.testimonial-source {
    font-family: var(--font-accent);
    font-size: 11px;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

@media (max-width: 1024px) {
    .overlap-grid { grid-template-columns: 1fr; }
    .overlap-image { 
        padding-right: 0; 
        margin-bottom: 40px;
        max-height: 400px;
    }
    .overlap-image img { 
        height: 400px;
        width: 100%;
    }
    .overlap-content { 
        position: relative; 
        right: auto; 
        top: auto; 
        transform: none; 
        padding: 50px 40px; 
        max-width: 100%;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .overlap-image { 
        margin-bottom: 20px;
        max-height: 300px;
    }
    .overlap-image img { 
        height: 300px;
    }
    .overlap-content { 
        padding: 40px 30px;
        margin: 0;
        margin-top: -40px;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonials { padding: 100px 0; }
    .testimonials-carousel { grid-template-columns: 1fr; gap: 30px; }
}

/* ───── MENU CARDS SECTION ───── */
.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.menu-category {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--beige);
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--red);
}

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

.menu-card {
    background: rgba(58, 67, 88, 0.3);
    border: 1px solid rgba(239, 234, 210, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    background: rgba(58, 67, 88, 0.5);
    border-color: rgba(239, 234, 210, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.card-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    flex: 1;
}

.card-price {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--beige);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(239, 234, 210, 0.2);
}

@media (max-width: 1024px) {
    .menu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .menu-categories {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .menu-page { padding-top: 100px; }
    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .menu-category {
        gap: 40px;
    }
    .category-title {
        font-size: clamp(24px, 4vw, 36px);
    }
    .card-image {
        height: 200px;
    }
    .card-content {
        padding: 20px 20px;
    }
    .card-title {
        font-size: 18px;
    }
}

/* ───── PRESS & MEDIA SECTION ───── */
.press-section {
    padding: var(--section-padding) 0;
    background: var(--navy);
}

.press-section .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.press-card {
    flex: 0 0 350px;
    background: var(--navy-light);
    border: 1px solid rgba(239, 234, 210, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.press-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 48, 54, 0.3);
}

.press-card-header {
    padding: 20px;
    background: linear-gradient(135deg, rgba(45, 52, 66, 0.9), rgba(58, 67, 88, 0.8));
    border-bottom: 2px solid var(--red);
}

.press-source {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF6B6B;
    margin-bottom: 8px;
    display: block;
}

.press-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

.press-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-excerpt {
    font-size: 13px;
    color: var(--beige);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 15px;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(239, 234, 210, 0.1);
}

.press-date {
    font-size: 11px;
    color: #FF6B6B;
    font-weight: 700;
}

.press-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: var(--red);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--beige);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

@media (max-width: 768px) {
    .press-section {
        padding: 100px 0;
    }

    .press-card {
        flex: 0 0 300px;
        min-height: 350px;
    }

    .press-title {
        font-size: 15px;
    }

    .press-excerpt {
        font-size: 12px;
    }

    .carousel-btn.prev {
        left: -45px;
    }

    .carousel-btn.next {
        right: -45px;
    }
}

@media (max-width: 480px) {
    .press-section {
        padding: 80px 0;
    }

    .carousel-track {
        gap: 15px;
    }

    .press-card {
        flex: 0 0 280px;
        min-height: 320px;
    }

    .press-card-header {
        padding: 15px;
    }

    .press-card-body {
        padding: 15px;
    }

    .press-source {
        font-size: 9px;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }

    .press-title {
        font-size: 13px;
        line-height: 1.2;
    }

    .press-excerpt {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .press-meta {
        padding-top: 10px;
        gap: 10px;
    }

    .press-date {
        font-size: 10px;
    }

    .press-link {
        font-size: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: -35px;
    }

    .carousel-btn.next {
        right: -35px;
    }
}

/* ───── RESERVE BUTTON SECTION ───── */
.reserve-btn-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.reserve-btn-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.reserve-btn-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.reserve-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.reserve-subtext {
    font-size: 18px;
    color: var(--beige);
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}

.btn-reserve-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.btn-reserve-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--beige);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-reserve-large:hover {
    color: var(--navy);
    border-color: var(--beige);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 48, 54, 0.4);
}

.btn-reserve-large:hover::before {
    left: 0;
}

.btn-reserve-large i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-reserve-large:hover i {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .reserve-btn-section {
        padding: 80px 0;
    }

    .reserve-heading {
        font-size: clamp(24px, 4vw, 36px);
    }

    .reserve-subtext {
        font-size: 16px;
    }

    .btn-reserve-large {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .reserve-btn-section {
        padding: 60px 0;
    }

    .reserve-btn-wrapper {
        gap: 20px;
    }

    .reserve-heading {
        font-size: 24px;
    }

    .reserve-subtext {
        font-size: 14px;
    }

    .btn-reserve-large {
        padding: 12px 28px;
        font-size: 14px;
        gap: 10px;
    }

    .btn-reserve-large i {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* FOOTER & SOCIAL */
/* ═══════════════════════════════════════════════════════════ */

footer {
    background: linear-gradient(135deg, rgba(45, 52, 66, 0.95) 0%, rgba(26, 31, 43, 0.98) 100%);
    border-top: 1px solid rgba(239, 234, 210, 0.1);
    padding: 60px 40px;
    margin-top: 100px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-social h3 {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(239, 234, 210, 0.8);
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(239, 234, 210, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--beige);
    color: var(--navy);
    border-color: var(--beige);
    transform: translateY(-8px);
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(239, 234, 210, 0.1);
}

.footer-copyright p {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(239, 234, 210, 0.5);
    margin: 0;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

