/* ============================================
   LA TABERNA DE PAPÁ - GLOBAL STYLES
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #1C1C1C;
    --color-gold: #D4AF37;
    --color-gold-dark: #B8962F;
    --color-cream: #FFFEF7;
    --color-olive: #708238;
    --color-olive-light: #8A9B4E;
    --color-white: #FFFFFF;
    --color-gray: #666666;
    --color-gray-light: #999999;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    --navbar-height: 80px;
    --navbar-height-scrolled: 64px;
    
    --container-max: 1280px;
    --container-padding: 24px;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
    height: var(--navbar-height-scrolled);
    box-shadow: var(--shadow-medium);
}

.navbar-solid {
    background: var(--color-black);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link.active {
    color: var(--color-gold);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
}

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

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

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

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 28, 28, 0.7), rgba(28, 28, 28, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Botón Ver Menú al filo inferior del hero */
.hero-btn-menu {
    margin-top: 16px;
    z-index: 3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    position: relative;
    opacity: 0.7;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

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

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

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

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

.btn-gold {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Botón de reserva - color naranja */
#reservaCtaBtn {
    background: #F97316;
    color: white;
    border: 2px solid #F97316;
}

#reservaCtaBtn:hover {
    background: #EA580C;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
}

.section-subtitle.center {
    margin: 0 auto;
}

.section-cta {
    margin-top: 48px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
}

.stat-stars {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.stat-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-large);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.section-highlights {
    background: var(--color-black);
    color: var(--color-cream);
}

.section-highlights .section-title {
    color: var(--color-white);
}

.section-highlights .section-subtitle {
    color: var(--color-gray-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    background: rgba(255, 254, 247, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-large);
}

.highlight-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.highlight-content {
    padding: 20px;
}

.highlight-content h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.highlight-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.section-gallery {
    background: var(--color-cream);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 28, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-icon {
    font-size: 2rem;
    color: var(--color-white);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(28, 28, 28, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ============================================
   CONTACT PREVIEW SECTION
   ============================================ */
.section-contact-preview {
    background: var(--color-black);
    color: var(--color-cream);
}

.section-contact-preview .section-title {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    aspect-ratio: 4/3;
}

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

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.menu-hero .menu-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.menu-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.menu-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-hero p {
    font-size: 1.125rem;
    color: var(--color-cream);
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Menu Navigation */
.menu-nav {
    position: sticky;
    top: var(--navbar-height-scrolled);
    background: var(--color-cream);
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    z-index: 100;
    padding: 16px 0;
}

.menu-nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu-nav-container::-webkit-scrollbar {
    display: none;
}

.menu-nav-item {
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.menu-nav-item:hover {
    color: var(--color-black);
}

.menu-nav-item.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* Menu Content */
.menu-content {
    padding: 60px 0;
    background: var(--color-cream);
    position: relative;
}

/* ============================================
   QR MENU SIDEBAR (Sticky on Desktop)
   ============================================ */
.qr-menu-sidebar {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    z-index: 1500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    gap: 2px;
}

.qr-menu-sidebar:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.qr-menu-image {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 6px;
}

.qr-menu-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.1;
}

/* ============================================
   QR MODAL OVERLAY
   ============================================ */
.qr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.qr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qr-modal {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-modal-overlay.active .qr-modal {
    transform: scale(1);
}

.qr-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-black);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.qr-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-gold);
}

.qr-modal-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 12px;
}

.qr-modal-text {
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 500;
    margin: 0;
}

.menu-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-section.active {
    display: block;
}

.menu-subcategory {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
}

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

.menu-item {
    background: var(--color-white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-fast);
    position: relative;
}

.menu-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.menu-item.featured {
    border: 2px solid var(--color-gold);
}

.menu-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

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

.menu-item-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.menu-description {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.menu-pdf-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    background: var(--color-black);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.contact-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.contact-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: 1.125rem;
    color: var(--color-gray-light);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 40px 0;
    background: var(--color-cream);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.contact-info-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.contact-info-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gold);
}

.contact-info-link:hover {
    text-decoration: underline;
}

.contact-info-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-black);
}

/* Contact Page Content */
.section-contact-page {
    padding: 60px 0 100px;
    background: var(--color-cream);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 32px 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-detail-content strong {
    display: block;
    font-size: 1.0625rem;
    color: var(--color-black);
    margin-bottom: 6px;
}

.contact-detail-content p {
    font-size: 0.9375rem;
    color: var(--color-gray);
}

.contact-detail-note {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin-top: 4px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.payment-tag {
    background: rgba(112, 130, 56, 0.1);
    color: var(--color-olive);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.contact-cta-box {
    background: var(--color-black);
    color: var(--color-white);
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-cta-box p {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.contact-page-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    aspect-ratio: 4/3;
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-actions {
    display: flex;
    justify-content: center;
}

/* Business Section */
.section-business {
    background: var(--color-olive);
    color: var(--color-white);
    padding: 80px 0;
}

.section-business .section-title,
.section-business .section-subtitle {
    color: var(--color-white);
}

.section-business .section-tag {
    color: var(--color-gold);
}

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

.business-text {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.0625rem;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   RESERVATION MODAL
   ============================================ */
.reserva-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reserva-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reserva-modal {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px 28px 28px;
    max-width: 380px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.reserva-modal-overlay.active .reserva-modal {
    transform: scale(1) translateY(0);
}

.reserva-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-black);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.reserva-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-gold);
}

.reserva-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.reserva-modal-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.reserva-modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.reserva-modal-header p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reserva-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 6px;
}

.reserva-field select,
.reserva-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-black);
    background: var(--color-white);
    transition: border-color 0.2s ease;
    appearance: auto;
}

.reserva-field select:focus,
.reserva-field input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.btn-reserva-enviar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-reserva-enviar:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   QR FLOAT BUTTON (Desktop Only)
   ============================================ */
.qr-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    z-index: 998;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.qr-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.qr-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-label {
    position: absolute;
    bottom: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-float.active {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 300px;
    height: 300px;
    border-radius: 16px;
    background: var(--color-white);
    z-index: 2000;
}

.qr-float.active .qr-image {
    width: 260px;
    height: 260px;
}

.qr-float.active .qr-label {
    display: none;
}

.qr-float.active:hover {
    transform: translate(-50%, 50%) scale(1);
}

@media (max-width: 768px) {
    .qr-float {
        display: flex;
        width: 64px;
        height: 64px;
        bottom: 90px;
        right: 16px;
        left: auto;
        border-radius: 14px;
        padding: 8px;
    }

    .qr-image {
        width: 44px;
        height: 44px;
    }

    .qr-label {
        display: none;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .about-grid,
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 16px 24px;
    }
    
    .exp-number {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlights-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-desc {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
    
    .menu-nav {
        top: var(--navbar-height);
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        min-height: 500px;
        height: auto;
        padding: 100px 0 120px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .hero-btn-menu {
        margin-top: 12px;
        font-size: 0.875rem;
        padding: 12px 20px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 20px;
        height: 30px;
    }
    
    .menu-item-header {
        flex-direction: column;
        gap: 4px;
    }
    
    .menu-price {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    #reservaCtaBtn {
        font-size: 0.9375rem;
        padding: 14px 20px;
    }
    
    .reserva-modal {
        padding: 24px 20px;
        width: 95%;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .contact-detail-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Large desktop optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .menu-item:hover {
        transform: none;
    }
    
    .highlight-card:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

/* Print Styles for PDF */
@media print {
    .navbar,
    .menu-nav,
    .footer,
    .whatsapp-float {
        display: none !important;
    }
    
    .menu-hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        background: white !important;
        color: black;
    }
    
    .menu-hero .hero-image {
        display: none;
    }
    
    .menu-hero h1,
    .menu-hero p {
        color: black;
        text-shadow: none;
    }
    
    .menu-section {
        display: block !important;
        page-break-before: always;
    }
    
    .menu-section:first-of-type {
        page-break-before: auto;
    }
    
    .menu-item {
        break-inside: avoid;
    }
}
