/* ==========================================================================
   CERVECERÍA LA FLORIDA - ESTILOS CSS
   Diseño Luminoso & Cálido (Beige, Crema, Madera y Cerveza Ámbar)
   Carta Estilo Libro/Menú de Mesa Editorial & Galería Real
   ========================================================================== */

:root {
    /* Paleta Cálida y Luminosa */
    --color-bg: #FDFBF7;
    --color-bg-alt: #F7F3EB;
    --color-bg-card: #FFFFFF;
    --color-surface: #EFE8DC;
    --color-border: #E5DAC9;
    --color-border-subtle: #ECE4D8;

    /* Acentos Cálidos / Cerveceros / Terracota */
    --color-primary: #B45309;       /* Ámbar tostado */
    --color-primary-hover: #92400E;
    --color-primary-light: #FEF3C7;
    --color-terracotta: #C2410C;
    --color-gold: #D97706;
    --color-gold-soft: #FDE68A;

    /* Textos de Alta Legibilidad */
    --color-text-main: #1C1917;     /* Carbón cálido */
    --color-text-body: #44403C;     /* Gris tierra */
    --color-text-muted: #78716C;    /* Muted suave */
    --color-text-light: #A8A29E;

    /* Colores de Marca & Redes */
    --color-whatsapp: #16A34A;
    --color-whatsapp-hover: #15803D;
    --color-whatsapp-glow: rgba(22, 163, 74, 0.25);
    --color-facebook: #1877F2;
    --color-instagram: #E1306C;

    /* Tipografías */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Sombras Cálidas & Radios */
    --shadow-sm: 0 2px 8px rgba(120, 113, 108, 0.08);
    --shadow-md: 0 10px 25px rgba(120, 113, 108, 0.12);
    --shadow-lg: 0 20px 40px rgba(120, 113, 108, 0.16);
    --shadow-warm: 0 8px 30px rgba(180, 83, 9, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-body);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1.25;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight-warm {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   TOP BAR / AVISO
   ========================================================================== */
.top-announcement-bar {
    background: #F2ECE1;
    border-bottom: 1px solid var(--color-border);
    padding: 0.55rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.85rem;
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    border-radius: var(--radius-full);
    color: #15803D;
    font-weight: 700;
    font-size: 0.8rem;
}

.status-badge.closed {
    background: #FEE2E2;
    border-color: #FCA5A5;
    color: #B91C1C;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16A34A;
}

.status-badge.closed .status-dot {
    background: #DC2626;
}

.pulse {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: pulsing 1.8s infinite;
}

@keyframes pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-body);
}

.top-contact-info span, .top-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-contact-info i {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

.top-phone:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-primary);
    background: #fff;
}

.header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-body);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

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

.nav-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    background: #FFFFFF;
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-outline {
    background: #FFFFFF;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-body);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-bg-alt);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #FFFFFF;
    box-shadow: 0 6px 20px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.15rem 2.5rem;
    font-size: 1.15rem;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, #FDFBF7 0%, #F5EFE4 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--color-primary-light);
    border: 1px solid #FDE68A;
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-body);
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.h-icon {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Featured Dish Frame */
.featured-dish-frame {
    position: relative;
    background: #FFFFFF;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.badge-ribbon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-terracotta);
    color: #FFFFFF;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.dish-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0.5rem 0.5rem;
}

.caption-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.caption-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.caption-tag {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   DESAYUNOS (DESDE LAS 06:30H)
   ========================================================================== */
.breakfast-section {
    background: #FAF6EE;
    border-bottom: 1px solid var(--color-border);
    padding: 4.5rem 0;
}

.breakfast-card {
    background: #FFFFFF;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.breakfast-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.breakfast-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.b-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.b-icon {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.b-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 0.15rem;
}

.b-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.breakfast-badge-box {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 2px solid #FDE68A;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.clock-icon-big {
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-sm);
}

.clock-icon-big i {
    width: 32px;
    height: 32px;
}

.breakfast-badge-inner h3 {
    font-size: 2.75rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.breakfast-badge-inner p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.pill-open {
    display: inline-block;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   MENÚ DEL DÍA (LUNES A VIERNES)
   ========================================================================== */
.daily-menu-section {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
    padding: 4.5rem 0;
}

.daily-menu-card {
    background: linear-gradient(145deg, #FFFDF9, #F7F2E7);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.daily-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

.daily-menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-primary-light);
    border: 1px solid #FDE68A;
    color: var(--color-primary);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.daily-menu-title {
    font-size: 2.35rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.daily-menu-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.daily-menu-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.daily-feature-box {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.daily-feature-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.df-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 1.25rem;
}

.df-icon i {
    width: 24px;
    height: 24px;
}

.daily-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.daily-feature-box p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin-bottom: 0;
}

.daily-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.daily-schedule-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.daily-schedule-notice i {
    color: var(--color-primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   JUEVES NOCHE - ESPECIAL HAMBURGUESAS (FLORIDA & CRISPY)
   ========================================================================== */
.burger-special-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 5rem 0;
}

.burger-special-card {
    background: linear-gradient(145deg, #1C1917, #292524);
    border: 2px solid #44403C;
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.burger-special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F59E0B, #EF4444, #F59E0B);
}

.burger-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid #F59E0B;
    color: #FBBF24;
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.burger-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.burger-subtitle {
    font-size: 1.1rem;
    color: #D6D3D1;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.burger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.burger-item-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.burger-item-card:hover {
    transform: translateY(-5px);
    border-color: #F59E0B;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.burger-item-card.highlight-card {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.35);
}

.burger-item-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    color: #F59E0B;
    margin-bottom: 1rem;
}

.burger-item-badge.hot {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.burger-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000000;
}

.burger-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.burger-item-card:hover .burger-img-wrapper img {
    transform: scale(1.06);
}

.burger-icon-top {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.burger-icon-top i {
    width: 26px;
    height: 26px;
}

.burger-item-card h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.burger-type {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FBBF24;
    margin-bottom: 1rem;
}

.burger-item-card p {
    font-size: 0.925rem;
    color: #D6D3D1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.burger-ingredients {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.burger-ingredients li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #E7E5E4;
}

.burger-ingredients li i {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
}

.burger-cta-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.burger-cta-box p {
    margin: 0;
    font-size: 1rem;
    color: #E7E5E4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.burger-cta-box p i {
    color: #F59E0B;
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* ==========================================================================
   SOBRE NOSOTROS
   ========================================================================== */
.about-section {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.about-images-collage {
    position: relative;
}

.collage-main-img-box {
    background: #F5EFE4;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.collage-img-1 {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.collage-floating-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
}

.floating-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    flex-shrink: 0;
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.floating-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.section-lead {
    font-size: 1.2rem;
    color: var(--color-text-main);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.section-text {
    color: var(--color-text-body);
    margin-bottom: 2rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.point-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-main);
}

.point-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   CARTA ESTILO LIBRO / MENÚ EDITORIAL
   ========================================================================== */
.menu-book-section {
    background: #F9F6F0;
    border-bottom: 1px solid var(--color-border);
}

.menu-actions-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.book-menu-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

/* Pestañas del libro */
.book-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.book-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    background: #ECE4D8;
    border: 1px solid var(--color-border);
    border-bottom: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    color: var(--color-text-body);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.book-tab-btn i {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.book-tab-btn:hover {
    background: #FDFBF7;
    color: var(--color-primary);
}

.book-tab-btn.active {
    background: #FFFFFF;
    color: var(--color-primary);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
}

/* Contenedor tipo Papel / Menú de Piel */
.book-container {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 3.5rem 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.book-header-decorative {
    text-align: center;
    border-bottom: 2px double var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.book-seal {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    padding: 3px;
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.seal-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.book-titles h3 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-text-main);
    margin-bottom: 0.35rem;
}

.book-titles span {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Páginas del Libro */
.book-page {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.book-page.active {
    display: block;
}

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

.book-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1.5px solid var(--color-primary-light);
    padding-bottom: 0.65rem;
    margin-bottom: 1.75rem;
}

.category-heading i {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.category-heading h4 {
    font-size: 1.35rem;
    color: var(--color-text-main);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.menu-line-item {
    position: relative;
}

.item-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-title-row .name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-main);
}

.item-badge-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    background: #FEF3C7;
    color: #92400E;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.menu-line-item .desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin-bottom: 0;
}

.highlight-dish {
    background: #FFFBEB;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold);
}

.book-footer-info {
    border-top: 1px solid var(--color-border);
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    text-align: center;
}

.book-footer-info p {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.book-footer-info i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ==========================================================================
   GALERÍA REAL & EVENTOS
   ========================================================================== */
.gallery-section {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.gallery-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2.75rem;
}

.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: #FFFFFF;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #FFFDF9;
}

.gallery-filter-btn.active {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #F5EFE4;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-card.hidden {
    display: none;
}

.gallery-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #1C1917;
}

.gallery-img-box img,
.gallery-img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.video-play-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.65);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(4px);
}

.gallery-overlay-text {
    padding: 1.5rem 1.75rem;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border-subtle);
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.gallery-badge i {
    width: 14px;
    height: 14px;
}

.gallery-overlay-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
    color: var(--color-text-main);
}

.gallery-overlay-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Banner Eventos */
.events-cta-banner {
    background: linear-gradient(135deg, #F7F1E5 0%, #EDE2CF 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-md);
}

.events-cta-text h3 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.events-cta-text p {
    color: var(--color-text-body);
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 0;
}

/* ==========================================================================
   RESERVAS Y FORMULARIO WHATSAPP
   ========================================================================== */
.reservation-section {
    background: #FAF7F2;
    border-bottom: 1px solid var(--color-border);
}

.reservation-card-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.reservation-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-whatsapp), var(--color-primary));
}

.reservation-form {
    margin-top: 2.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: #FDFBF7;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
    background: #FFFFFF;
}

.form-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-disclaimer i {
    color: var(--color-whatsapp);
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   CONTACTO Y UBICACIÓN
   ========================================================================== */
.contact-section {
    background: #FFFFFF;
}

.schedule-table-card {
    background: #FDFBF7;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1.75rem;
}

.schedule-table-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1.5px solid var(--color-primary-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.schedule-table-header i {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

.schedule-table-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--color-text-main);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
}

.schedule-row .day-name {
    font-weight: 700;
    color: var(--color-text-main);
}

.schedule-row .day-hours {
    font-weight: 600;
    color: var(--color-text-body);
}

.schedule-row.highlight-schedule {
    background: #FFFBEB;
    border-left: 3px solid var(--color-gold);
}

.schedule-row.highlight-schedule .day-hours {
    color: var(--color-primary);
    font-weight: 700;
}

.schedule-row.closed-row {
    background: #FEF2F2;
    border-left: 3px solid #EF4444;
}

.schedule-row.closed-row .text-danger {
    color: #DC2626;
    font-weight: 700;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #FDFBF7;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.contact-detail-card:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-detail-card .card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-detail-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-main);
}

.contact-detail-card p {
    color: var(--color-text-body);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.link-warm {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.link-warm:hover {
    text-decoration: underline;
}

.quick-call-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-link-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: var(--color-primary-light);
    border: 1px solid #FDE68A;
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-link-action:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

.btn-link-action.whatsapp-link {
    background: #DCFCE7;
    border-color: #86EFAC;
    color: #15803D;
}

.btn-link-action.whatsapp-link:hover {
    background: var(--color-whatsapp);
    color: #FFFFFF;
}

.social-btn.facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-facebook);
    font-weight: 700;
    font-size: 0.85rem;
}

.social-btn.facebook:hover {
    background: var(--color-facebook);
    color: #FFFFFF;
}

.social-btn.instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-instagram);
    font-weight: 700;
    font-size: 0.85rem;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.map-container-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: #FDFBF7;
}

.map-title {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.map-title i {
    color: var(--color-primary);
}

.map-pin-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-full);
}

.map-footer-cta {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background: #FDFBF7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #F4ECE1;
    border-top: 1px solid var(--color-border);
    padding-top: 4.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
}

.footer-sub {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
}

.brand-col p {
    color: var(--color-text-body);
    font-size: 0.9rem;
    max-width: 380px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-body);
    box-shadow: var(--shadow-sm);
}

.footer-socials a:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-main);
}

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

.footer-links a {
    color: var(--color-text-body);
    font-size: 0.9rem;
}

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

.footer-col p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-body);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}

.footer-col p i {
    color: var(--color-primary);
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    background: #EDE2CF;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-body);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bottom-container p {
    margin-bottom: 0;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--color-whatsapp);
    color: #FFFFFF;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px var(--color-whatsapp-glow);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}

.floating-whatsapp-btn i {
    width: 24px;
    height: 24px;
}

.whatsapp-badge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--color-whatsapp);
    opacity: 0.4;
    z-index: -1;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==========================================================================
   ESTILOS DE IMPRESIÓN / PDF (@MEDIA PRINT)
   Permite imprimir o guardar la carta como un folleto/PDF impecable
   ========================================================================== */
@media print {
    body {
        background: #FFFFFF !important;
        color: #000000 !important;
    }

    .top-announcement-bar,
    .main-header,
    .hero-section,
    .about-section,
    .gallery-section,
    .reservation-section,
    .contact-section,
    .main-footer,
    .floating-whatsapp-btn,
    .menu-actions-bar,
    .book-tabs {
        display: none !important;
    }

    .menu-book-section {
        padding: 0 !important;
        background: #FFFFFF !important;
        border: none !important;
    }

    .book-container {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .book-page {
        display: block !important;
        page-break-after: always;
        margin-bottom: 2rem;
    }

    .book-header-decorative {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .item-title-row .price {
        color: #000000 !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS Y MÓVILES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .book-columns-grid {
        gap: 2.5rem;
    }

    .events-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-contact-info {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-cta {
        width: 100%;
    }

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

    .hero-tag {
        margin: 0 auto 1.25rem;
    }

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

    .hero-description {
        margin: 0 auto 1.75rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-highlights-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .featured-img {
        height: 260px;
    }

    .section-grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .collage-img-1 {
        height: 280px;
    }

    .collage-floating-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    .book-container {
        padding: 2rem 1.25rem;
    }

    .book-columns-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .item-title-row .name {
        white-space: normal;
    }

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

    .gallery-img-box {
        height: 240px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .breakfast-card {
        padding: 2rem 1.25rem;
    }

    .breakfast-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .daily-menu-card {
        padding: 2.25rem 1.25rem;
    }

    .burger-special-card {
        padding: 2.25rem 1.25rem;
    }

    .burger-title {
        font-size: 1.85rem;
    }

    .burger-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .daily-menu-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .daily-menu-footer {
        flex-direction: column;
        text-align: center;
    }

    .reservation-card-wrapper {
        padding: 2rem 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .floating-text {
        display: none;
    }

    .floating-whatsapp-btn {
        padding: 0.9rem;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}
