/* ============================================
   EVASION - Luxury Beach Restaurant
   Stylesheet - Dark & Elegant Theme
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0E0E0E;
    --bg-secondary: #141414;
    --accent-gold: #C9A24D;
    --accent-beige: #D8CFC4;
    --text-light: #F1F1F1;
    --text-muted: #A0A0A0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-light);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--accent-beige);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 20, 0.4);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: var(--text-light);
}

.lang-btn.active {
    color: var(--accent-gold);
}

.lang-separator {
    color: var(--text-muted);
    opacity: 0.3;
}

/* ============================================
   MENU LANGUAGE SELECTOR
   ============================================ */
.menu-language-selector-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.menu-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 20, 0.6);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.menu-lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.35rem 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.menu-lang-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.menu-lang-btn.active {
    color: var(--accent-gold);
    background: rgba(201, 162, 77, 0.1);
}

.menu-lang-separator {
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 0.9rem;
}

.btn-reserve {
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reserve:hover {
    background: var(--accent-beige);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.85;
}

.mobile-menu-toggle span {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-overlay {
    display: none;
}

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: none;
    color: var(--bg-primary);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 162, 77, 0.4);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.6);
    z-index: 2;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-title-animate {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    will-change: transform, opacity;
}

.hero-subtitle-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    will-change: transform, opacity;
}

.hero-cta-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    will-change: transform, opacity;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.btn {
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 77, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(201, 162, 77, 0.1);
}

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

.section-dark {
    background: var(--bg-primary);
}

.section-light {
    background: var(--bg-secondary);
}

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

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

/* ============================================
   INTRO BLOCK
   ============================================ */
.intro-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-muted);
}

/* ============================================
   HIGHLIGHTS GRID
   ============================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* ============================================
   HIGHLIGHTS CAROUSEL
   ============================================ */
.highlights-carousel-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 0 3rem;
    touch-action: pan-y;
}

.highlights-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    touch-action: pan-y;
}

.highlights-carousel-track {
    display: flex;
    gap: 3rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
}

.highlights-carousel-track .highlight-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(201, 162, 77, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

/* Desktop: grid estático en "La Experiencia EVASION" (sin carrusel) */
@media (min-width: 769px) {
    .highlights-carousel-wrapper .carousel-btn,
    .highlights-carousel-wrapper .carousel-indicators {
        display: none !important;
    }
    .highlights-carousel {
        overflow: visible;
    }
    .highlights-carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        transform: none !important;
        transition: none;
        will-change: auto;
        cursor: default;
    }
    .highlights-carousel-track .highlight-card {
        flex: none;
        min-width: 0;
        width: auto;
    }
}

.highlight-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    will-change: transform, opacity;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card.visible:hover {
    border-color: rgba(201, 162, 77, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card.visible:hover::before {
    opacity: 1;
}

.highlight-card-content {
    padding: 3rem;
    text-align: left;
    position: relative;
}

.highlight-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 162, 77, 0.1);
    line-height: 1;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.highlight-card.visible:hover .highlight-card-number {
    color: rgba(201, 162, 77, 0.15);
    transform: scale(1.05);
}

.highlight-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.highlight-card h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.highlight-card:hover h3::before {
    width: 80px;
}

.highlight-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.highlight-card .highlight-detail {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.highlight-card .highlight-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.highlight-icon-svg {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.directions-grid .highlight-card {
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.directions-grid .highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.directions-grid .highlight-card.visible:hover {
    border-color: rgba(201, 162, 77, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: rgba(20, 20, 20, 0.8);
}

.directions-grid .highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 77, 0.2);
    position: relative;
}

.directions-grid .highlight-card h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s ease;
}

.directions-grid .highlight-card.visible:hover h3::after {
    width: 100%;
}

.directions-grid .highlight-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   QUICK LINKS GRID
   ============================================ */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.quick-link-card {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-link-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.quick-link-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(3px) brightness(0.4);
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

.quick-link-card:hover .quick-link-background {
    transform: scale(1.1);
    filter: blur(2px) brightness(0.5);
}

.quick-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.6);
    transition: background 0.4s ease;
    z-index: 1;
}

.quick-link-card:hover .quick-link-overlay {
    background: rgba(14, 14, 14, 0.4);
}

.quick-link-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 1.5rem;
    text-align: center;
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.quick-link-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.quick-link-card:hover .quick-link-icon {
    transform: translateY(-6px) scale(1.05);
    color: var(--accent-gold);
}

.quick-link-content h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.quick-link-card:hover .quick-link-content h3 {
    transform: translateY(-3px);
    color: var(--accent-gold);
}

/* ============================================
   MENU STYLES
   ============================================ */
.menu-category {
    margin-bottom: 5rem;
}

.menu-category-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}

.menu-category-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: -1.5rem 0 1.5rem;
}

.menu-category-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.menu-category-subtitle:first-of-type {
    margin-top: 0;
}

.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.menu-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h4 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.menu-item-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.3);
    opacity: 0;
    transition: var(--transition);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 14, 14, 0.8);
    border: 1px solid rgba(201, 162, 77, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ============================================
   LOCATION & CONTACT
   ============================================ */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

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

.info-block p,
.info-block address {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 1rem;
}

.info-block a {
    color: var(--accent-gold);
    display: inline-block;
    margin-top: 1rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.hours-list {
    list-style: none;
    margin-top: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

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

.hours-list strong {
    color: var(--text-light);
}

/* ============================================
   RESERVATION FORM
   ============================================ */
.reservation-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cta-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-button-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.cta-button-icon-whatsapp svg {
    color: white;
}

.cta-button.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.cta-button:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.cta-button.whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
}

/* ============================================
   INFO IMPORTANT SECTION
   ============================================ */
.info-important-section {
    max-width: 700px;
    margin: 5rem auto 0;
    text-align: center;
}

.info-important-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 1.5rem;
}

.info-important-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
}

.info-important-content {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
}

.info-important-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.info-important-list li {
    color: var(--text-muted);
    line-height: 1.9;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.info-important-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.info-important-list li:hover {
    color: var(--text-light);
    padding-left: 2.3rem;
}

/* ============================================
   PARALLAX BANNER
   ============================================ */
.parallax-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-banner-background {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 1;
    will-change: background-position;
}

.parallax-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.75);
    z-index: 2;
}

.parallax-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.parallax-banner-content h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.parallax-banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    padding: 0 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    width: 100%;
}

.footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: start;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.6;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   MAGAZINE ARTICLES (CONÓCENOS)
   ============================================ */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.magazine-article {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.magazine-article.visible {
    opacity: 1;
    transform: translateY(0);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.article-layout.reverse {
    direction: rtl;
}

.article-layout.reverse > * {
    direction: ltr;
}

.article-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
}

.article-image:hover {
    transform: scale(1.02);
}

.article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.article-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-text p {
    margin-bottom: 1.25rem;
}

.article-curiosity {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(201, 162, 77, 0.05);
    border-left: 3px solid var(--accent-gold);
    border-radius: 4px;
}

.article-curiosity-title {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.article-curiosity-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Full-width article layout */
.article-full {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
}

.article-full .article-image {
    height: 600px;
    margin-bottom: 3rem;
}

.article-video-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
}

.article-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-full .article-content {
    text-align: center;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: min(85%, 320px);
        max-width: 320px;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 2rem;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 4px 0 32px rgba(0, 0, 0, 0.25);
        z-index: 1001;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                    opacity 0.35s ease,
                    visibility 0s linear 0.4s;
        will-change: transform;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                    opacity 0.35s ease,
                    visibility 0s;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(-16px);
        transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                    transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                    color 0.25s ease;
        transition-delay: 0s;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.06s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.14s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.22s; }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s ease, visibility 0s;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1002;
    }

    .mobile-call-btn {
        display: none;
    }

    .header-actions {
        gap: 1rem;
    }

    .language-selector {
        padding: 0.4rem 0.6rem;
    }

    .lang-btn {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .menu-language-selector-container {
        padding: 1.5rem 0;
    }

    .menu-language-selector {
        padding: 0.6rem 1rem;
    }

    .menu-lang-btn {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }

    .btn-reserve {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 4rem 0;
    }

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

    .highlights-carousel-wrapper {
        padding: 0 1rem;
        margin-top: 3rem;
    }

    .highlights-carousel-track {
        gap: 0;
    }

    .highlights-carousel-track .highlight-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

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

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

    .highlight-card-content {
        padding: 1.25rem 1rem;
    }

    .highlights-carousel-wrapper .highlight-card-number {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }

    .highlights-carousel-wrapper .highlight-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }

    .highlights-carousel-wrapper .highlight-card h3::before {
        width: 36px;
    }

    .highlights-carousel-wrapper .highlight-card p {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 0.5rem;
    }

    .highlights-carousel-wrapper .highlight-card .highlight-detail {
        font-size: 0.82rem;
        line-height: 1.5;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .parallax-banner {
        height: 320px;
    }

    .parallax-banner-background {
        background-attachment: scroll;
    }

    .parallax-banner-content {
        padding: 1.5rem 0;
    }

    .parallax-banner-content h2 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .parallax-banner-content .container {
        max-width: 100%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .parallax-banner-text {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .directions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .directions-grid .highlight-card {
        padding: 1rem;
        min-width: 0;
    }

    .directions-grid .highlight-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }

    .directions-grid .highlight-card h3::after {
        width: 28px;
    }

    .directions-grid .highlight-card.visible:hover h3::after {
        width: 100%;
    }

    .directions-grid .highlight-card p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .quick-link-card {
        height: 180px;
    }

    .quick-link-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .quick-link-content {
        padding: 1rem 0.5rem;
    }

    .quick-link-content h3 {
        font-size: 0.85rem;
    }

    .info-important-section {
        margin-top: 3rem;
    }

    .info-important-content {
        padding: 2rem 1.5rem;
    }

    .info-important-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .info-important-list li::before {
        left: 0;
    }

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

    .menu-item {
        grid-template-columns: 1fr auto;
        gap: 0.75rem 1rem;
        align-items: start;
        padding: 1rem 0;
    }

    .menu-item-info h4 {
        margin-bottom: 0.35rem;
        font-size: 1.05rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .menu-item-price {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .location-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }

    .location-info .info-block:nth-child(3) {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-info .info-block-contacto .contacto-linea {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .location-info .info-block-contacto .contacto-linea:last-child {
        margin-bottom: 0;
    }

    .location-info .info-block-contacto .contacto-linea strong {
        font-size: inherit;
        margin-right: 0.15rem;
    }

    .location-info .info-block-contacto .contacto-linea a {
        margin-top: 0;
    }

    .location-info .info-block {
        min-width: 0;
    }

    .location-info .info-block h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .location-info .info-block address,
    .location-info .info-block p {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 0.35rem;
    }

    .location-info .info-block .btn {
        margin-top: 0.5rem !important;
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .location-info .hours-list {
        margin-top: 0.5rem;
    }

    .location-info .hours-list li {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        padding: 0.3rem 0;
        font-size: 0.8rem;
        line-height: 1.4;
        border-bottom: none;
    }

    .location-info .hours-list li strong {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .location-info .hours-list li span {
        flex-shrink: 0;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -2.5rem;
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    .footer-section {
        min-width: 0;
    }

    .footer-section h4 {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .footer-section p,
    .footer-section a {
        margin-bottom: 0.35rem;
        line-height: 1.4;
        font-size: 0.75rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .article-layout.reverse {
        direction: ltr;
    }

    .article-image {
        height: 400px;
    }

    .article-full .article-image {
        height: 400px;
    }

    .article-video-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

