/* 
   RESTAURANTE VERSSACHE - PREMIUM RESTAURANT STYLES
   Color Palette:
   - Deep Black: #0f0f11
   - Surface: #18181b
   - Surface Light: #202024
   - Warm Gold/Orange: #f59e0b
   - Gold Hover: #fbbf24
   - Soft Cream: #fdfbf7
   - Text Gray: #a1a1aa
*/

@import url('fonts.css');

:root {
    --bg: #0f0f11;
    --surface: #18181b;
    --surface-light: #202024;
    --accent: #d4af37;
    --accent-hover: #e8c352;
    --red: #d91f28;
    --text: #fdfbf7;
    --text-muted: #a1a1aa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 16px;
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    background-image: repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0px, rgba(212, 175, 55, 0.06) 1px, transparent 1px, transparent 64px);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Inline SVG icons (replace Font Awesome — no third-party calls) */
.ico {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
}

/* CUSTOM CURSOR - DESKTOP ONLY */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    background-image: url('cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: width 0.25s, height 0.25s, transform 0.12s ease-out, filter 0.25s;
    will-change: left, top;
    display: none;
}

@media (min-width: 1025px) {
    /* Hide default cursor on desktop */
    body, a, button, .cat-btn, input, textarea, select {
        cursor: none !important;
    }
    #custom-cursor {
        display: block;
    }
}

/* CURSOR INTERACTION STATES */
body.hovering-link #custom-cursor {
    transform: translate(-50%, -50%) scale(1.25);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7));
}

body.clicking #custom-cursor {
    transform: translate(-50%, -50%) scale(0.82);
}

/* UTILS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-accent { color: var(--accent); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    gap: 12px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(15, 15, 17, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: rgba(15, 15, 17, 0.95);
}

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

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

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 15px;
}

.nav-social a {
    font-size: 18px !important;
    color: var(--text) !important;
}

.nav-social a::after { display: none; }

.nav-social a:hover {
    color: var(--accent) !important;
    transform: scale(1.15) rotate(5deg);
}

.lang-toggle {
    font-size: 13px;
    font-weight: 700;
    background: var(--glass);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.lang-toggle a::after { display: none; }

.lang-toggle a.active {
    color: var(--accent);
}

/* MOBILE NAV */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 17, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 40px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-btn { display: flex; }
    
    .nav-links a { font-size: 22px; }
    .nav-social { border-left: none; padding-left: 0; margin-top: 20px; }
    .nav-social a { font-size: 28px !important; }
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: premiumShine 8s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes premiumShine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Shift the facade so the red 'Verssache' sign sits above the title */
    object-position: center 79%;
    transform: scale(1.22);
    transform-origin: center center;
}

/* Less zoom on the hero photo ONLY on mobile (it looked too enlarged) */
@media (max-width: 768px) {
    .hero-bg img {
        transform: scale(1);
    }
    .hero h1 {
        font-size: clamp(54px, 13vw, 70px);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,15,17,0.6) 0%, rgba(15,15,17,0.9) 100%);
}

.hero-content {
    max-width: 900px;
    padding: 80px 24px 0;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(46px, 9vw, 94px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: linear-gradient(to right, #d4af37 0%, #fff2cd 25%, #d4af37 50%, #aa771c 75%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

@keyframes goldShine {
    to { background-position: 200% center; }
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.1)); }
    100% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}


.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
}

/* SECTIONS */
.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--white);
}

/* ABOUT */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 24px auto 0;
    max-width: 1080px;
}

.about-images img {
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-images { grid-template-columns: 1fr; gap: 20px; }
    .about-images img { height: 280px; }
}

.about-images img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .about-images { gap: 20px; }
}

/* MENU */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cat-btn {
    padding: 12px 28px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    background: var(--surface);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
    font-size: 15px;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

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

@media (max-width: 768px) {
    .menu-display { grid-template-columns: 1fr; }
    .menu-categories { gap: 8px; }
    .cat-btn { padding: 10px 20px; font-size: 14px; }
}

.menu-section {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.menu-section:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.menu-section h3 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.menu-list-item.with-desc {
    align-items: flex-start;
}

.item-info { flex: 1; text-align: left; }
.item-name { font-weight: 500; font-size: 18px; color: var(--white); }
.item-desc { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-weight: 300; }
.item-dots { flex: 1; border-bottom: 1px dashed rgba(255,255,255,0.15); margin: 0 15px; position: relative; top: -5px; }
.item-price { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 18px; color: var(--accent); white-space: nowrap; }

/* MOBILE ONLY: uniform menu items (price under the name, no dotted leaders) */
@media (max-width: 768px) {
    .menu-list-item,
    .menu-list-item.with-desc {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 18px;
    }
    .menu-list-item .item-dots { display: none; }
    .menu-list-item .item-info { width: 100%; }
    .menu-list-item .item-name { font-size: 16px; }
    .menu-list-item .item-price { font-size: 16px; white-space: normal; }
}

.menu-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.menu-note {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

.allergens-notice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 16px 24px;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.allergens-notice .icon {
    font-size: 20px;
}

/* GALLERY MOSAIC */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

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



@media (max-width: 1024px) {
    .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .gallery-mosaic { 
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 10px;
    }
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.info-box {
    background: var(--surface);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.info-item {
    margin-bottom: 35px;
}

.info-item h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.info-item h4 .ico {
    fill: var(--accent);
}

.info-item p {
    color: var(--text-muted);
    font-size: 16px;
}

.schedule-list {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li.today {
    color: var(--accent);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.05);
    padding: 8px 10px;
    border-radius: 6px;
    transform: scale(1.02);
    margin: 2px -10px;
}

.happy-hour {
    margin-top: 15px;
    color: var(--accent) !important;
    font-weight: 500;
    font-size: 15px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}



.map-container {
    position: relative;
    height: 400px;
    min-height: 0;
    align-self: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(8%);
}

.map-cta {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: var(--accent);
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
    filter: grayscale(20%) brightness(0.9);
}

.map-overlay-effect {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-btn {
    background: var(--accent);
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.map-container:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.1) contrast(1.1);
}

.map-container:hover .map-overlay-effect {
    opacity: 1;
}

.map-container:hover .map-btn {
    transform: translateY(0);
}

.osm-attribution {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.55);
    padding: 2px 8px;
    border-radius: 4px;
    pointer-events: auto;
    text-decoration: none;
    z-index: 10;
}

.osm-attribution:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .map-container { min-height: 400px; }
}

/* FOOTER */
footer {
    padding: 100px 0 40px;
    background: #08080a;
    color: var(--white);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-large {
    width: 140px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.footer-slogan {
    font-size: 36px;
    color: var(--white);
    max-width: 600px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Outfit', sans-serif;
}

.footer-col p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-social-new {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social-new a {
    width: 45px;
    height: 45px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    border: 1px solid var(--glass-border);
}

.footer-social-new a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-5px);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

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

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-social-new { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .footer-legal-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
}

/* ANIMATIONS */
/* Various styles requested: fade+translateY, fade+translateX, fade+scale, blur to sharp, mask reveal... */

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
}

/* Base staggers */
.stagger-reveal > * {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stagger-reveal.active > * {
    opacity: 1;
}

/* Specific Animations */
.anim-fade-up { transform: translateY(40px); }
.active.anim-fade-up, .active > .anim-fade-up { transform: translateY(0); }

.anim-fade-right { transform: translateX(-40px); }
.active.anim-fade-right, .active > .anim-fade-right { transform: translateX(0); }

.anim-fade-left { transform: translateX(40px); }
.active.anim-fade-left, .active > .anim-fade-left { transform: translateX(0); }

.anim-scale-up { transform: scale(0.9); opacity: 0; }
.active.anim-scale-up, .active > .anim-scale-up { transform: scale(1); opacity: 1; }

.anim-zoom { filter: blur(5px); transform: scale(0.95); opacity: 0; }
.active.anim-zoom, .active > .anim-zoom { filter: blur(0); transform: scale(1); opacity: 1; }

/* DELAYS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* MENU SUBHEADINGS */
.menu-subhead {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin: 22px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}
.menu-subhead:first-child { margin-top: 0; }

/* MENU DEL DIA (WIDE CARD) */
.menu-section-wide { grid-column: 1 / -1; }

.md-intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
    font-size: 15px;
    margin: 0 auto 30px;
    max-width: 760px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 14px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.md-intro i {
    font-size: 17px;
    flex: 0 0 auto;
}

.md-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.md-block {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px;
}

.md-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}

.md-when {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 20px;
    color: var(--white);
}

.md-price {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--accent);
    white-space: nowrap;
}

.md-includes {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.md-cat {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 14px;
    margin-bottom: 6px;
}

.md-options {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

/* HOURS NOTE */
.hours-note {
    margin-top: 14px;
    color: var(--text-muted) !important;
    font-size: 13px !important;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hours-note .ico { fill: var(--accent); }
.allergens-notice .ico { fill: var(--accent); }

/* REVIEWS MARQUEE */
.reviews-section {
    background: transparent;
    overflow: hidden;
}

.rev-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
}

.rev-stars {
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 18px;
}

.rev-marquee {
    margin-top: 46px;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.rev-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: revScroll 70s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes revScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.rev-card {
    flex: 0 0 min(380px, 82vw);
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 16px 30px rgba(0,0,0,0.35);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rev-card .rev-stars { font-size: 17px; }

.rev-card blockquote {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    flex: 1;
    font-style: italic;
}

.rev-card blockquote::before {
    content: '\201C';
    color: var(--accent);
    font-weight: 700;
    margin-right: 1px;
}

.rev-card blockquote::after {
    content: '\201D';
    color: var(--accent);
    font-weight: 700;
    margin-left: 1px;
}

.rev-card figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
}

.rev-g {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #4285F4;
    flex: 0 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.rev-meta { display: flex; flex-direction: column; line-height: 1.2; }
.rev-meta b { color: var(--text-muted); font-size: 14px; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
    .rev-track { animation-duration: 140s; }
}

/* GALLERY - TWO CENTERED ROWS (2 + 3) */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Reveal gallery items even though they are nested inside rows */
.gallery-grid.active .anim-zoom {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.gallery-row .gallery-item {
    height: 360px;
    border-radius: var(--radius);
}

.gallery-row:first-child .gallery-item {
    flex: 0 1 500px;
    max-width: 500px;
}

.gallery-row:last-child .gallery-item {
    flex: 0 1 380px;
    max-width: 380px;
    height: 320px;
}

@media (max-width: 991px) {
    .gallery-row:first-child .gallery-item,
    .gallery-row:last-child .gallery-item {
        flex: 0 1 46%;
        max-width: 46%;
        height: 260px;
    }
}

@media (max-width: 600px) {
    .gallery-row:first-child .gallery-item,
    .gallery-row:last-child .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
        height: 230px;
    }
}

/* INTRO CURTAIN (telón de apertura) */
.intro {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.intro.intro-done { display: none; }

.intro-panel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background-color: #0f0f11;
    background-image: repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0px, rgba(212, 175, 55, 0.06) 1px, transparent 1px, transparent 64px);
    will-change: transform;
}

.intro-panel.left { left: 0; animation: introOpenLeft 1.05s cubic-bezier(0.76, 0, 0.18, 1) 1.55s forwards; }
.intro-panel.right { right: 0; animation: introOpenRight 1.05s cubic-bezier(0.76, 0, 0.18, 1) 1.55s forwards; }

@keyframes introOpenLeft { to { transform: translateX(-100%); } }
@keyframes introOpenRight { to { transform: translateX(100%); } }

.intro-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    animation: introLogoIn 1s ease forwards, introLogoOut 0.55s ease 1.5s forwards;
}

@keyframes introLogoIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introLogoOut { to { opacity: 0; transform: scale(1.05); } }

.intro-word {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 9vw, 96px);
    letter-spacing: 2px;
    line-height: 1;
    background: linear-gradient(to right, #d4af37 0%, #fff2cd 25%, #d4af37 50%, #aa771c 75%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.intro-line {
    height: 2px;
    width: 0;
    margin: 18px auto 14px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: introLine 1s ease 0.55s forwards;
}

@keyframes introLine { to { width: min(260px, 70vw); } }

.intro-sub {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
    .intro { display: none; }
}

/* DAILY MENU SECTION (standalone) */
.menudia-section { background: transparent; }
.menudia-section .md-grid { margin-top: 10px; }
.menudia-section .md-intro { margin-bottom: 28px; }
