/* ============================================
   Mexican Bar & Grill - Mexican Theme
   Color Palette:
   - Mexican Green: #006847
   - Mexican Red: #CE1126
   - Mexican Yellow: #FFD700
   - White: #FFFFFF
   - Warm Orange: #FF6B35
   - Deep Brown: #8B4513
   ============================================ */

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

:root {
    --color-green: #006847;
    --color-red: #CE1126;
    --color-yellow: #FFD700;
    --color-white: #FFFFFF;
    --color-orange: #FF6B35;
    --color-brown: #8B4513;
    --color-dark: #1a1a1a;
    --color-light-bg: #FFF8F0;
    --color-accent: #F7931E;
}

body {
    font-family: 'Roboto', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: linear-gradient(135deg, #FFF8F0 0%, #FFEEDD 100%);
    overflow-x: hidden;
    position: relative;
}

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

/* Floating Decorations Animation */
.floating-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.2;
    animation: float 25s infinite ease-in-out;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.dec-1 { top: 5%; left: 3%; animation-delay: 0s; }
.dec-2 { top: 15%; right: 8%; animation-delay: 2s; }
.dec-3 { top: 25%; left: 5%; animation-delay: 4s; }
.dec-4 { top: 55%; right: 3%; animation-delay: 1s; font-size: 4rem; }
.dec-5 { top: 75%; left: 10%; animation-delay: 3s; }
.dec-6 { top: 35%; right: 12%; animation-delay: 5s; }
.dec-7 { top: 65%; left: 15%; animation-delay: 2.5s; }
.dec-8 { top: 45%; right: 6%; animation-delay: 3.5s; }
.dec-9 { top: 80%; left: 20%; animation-delay: 4.5s; }
.dec-10 { top: 20%; left: 25%; animation-delay: 1.5s; }
.dec-11 { top: 60%; right: 18%; animation-delay: 3.2s; }
.dec-12 { top: 10%; right: 20%; animation-delay: 2.3s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(206, 17, 38, 0.15);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--color-green);
}

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

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

.logo-container .logo {
    height: 140px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-yellow));
    transition: width 0.3s ease;
}

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

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

/* Events nav link – attention-grabbing */
.nav-link-events {
    display: inline-block;
    animation: nav-events-pulse 2s ease-in-out infinite;
}

.nav-link-events:hover {
    animation: none;
}

@keyframes nav-events-pulse {
    0%, 100% { transform: scale(1); color: var(--color-green); }
    50% { transform: scale(1.08); color: var(--color-red); }
}

/* Discounts nav – very noticeable (panic / movement) */
.nav-link-discounts {
    display: inline-block;
    animation: nav-discounts-panic 1.5s ease-in-out infinite;
    font-weight: 800;
}

.nav-link-discounts:hover {
    animation: none;
    color: var(--color-red);
    transform: scale(1.1);
}

@keyframes nav-discounts-panic {
    0%, 100% {
        transform: scale(1) translateX(0);
        color: var(--color-red);
    }
    15% {
        transform: scale(1.12) translateX(-2px);
        color: var(--color-orange);
    }
    30% {
        transform: scale(1.08) translateX(2px);
        color: var(--color-red);
    }
    45% {
        transform: scale(1.14) translateX(1px);
        color: var(--color-yellow);
    }
    60% {
        transform: scale(1.06) translateX(-1px);
        color: var(--color-red);
    }
    75% {
        transform: scale(1.1) translateX(0);
        color: var(--color-orange);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-green);
    transition: all 0.3s ease;
}

/* Main Content */
main {
    margin-top: 120px;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/mellosmexican/firstsection.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient,
.hero-pattern {
    display: none;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    font-size: 1.8rem;
    color: var(--color-green);
    font-weight: 400;
    text-transform: none;
    margin-top: 30px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange), var(--color-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 6.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-bar-grill {
    display: block;
    color: var(--color-green);
    font-size: 6.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--color-red);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-seo-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    color: white;
    box-shadow: 0 6px 20px rgba(206, 17, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-green), #00855A);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 104, 71, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 71, 0.5);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.btn-emoji {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

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

.hero-image-wrapper {
    position: relative;
    /* No border, box, or frame – transparent image blends with background */
    background: transparent;
    transition: transform 0.3s ease;
    justify-self: end;
    margin-right: -40px;
}

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

.hero-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    /* Transparent PNG – no box or border */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-green);
    font-weight: 600;
    animation: bounceDown 2s infinite;
}

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

.scroll-arrow {
    width: 3px;
    height: 35px;
    background: linear-gradient(180deg, var(--color-red), var(--color-orange));
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 15px;
    height: 15px;
    border-right: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
    transform: rotate(45deg);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--color-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--color-red);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.5), rgba(255, 215, 0, 0.15));
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 15px 40px rgba(206, 17, 38, 0.3);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.feature-card h3 {
    color: var(--color-green);
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--color-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Menu Highlights Section */
.menu-highlights {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.3), rgba(255, 255, 255, 0.8));
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.highlight-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 4px solid var(--color-yellow);
}

.highlight-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-red);
}

.highlight-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.highlight-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-item:hover .highlight-image-wrapper img {
    transform: scale(1.15);
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(206, 17, 38, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.highlight-content {
    background: white;
    padding: 30px;
}

.highlight-content h3 {
    color: var(--color-red);
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.highlight-content p {
    color: var(--color-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

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

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 20px;
    background: white;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-preview-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid var(--color-green);
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    border-color: var(--color-orange);
}

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

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

.gallery-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.85), rgba(255, 107, 53, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-preview-emoji {
    font-size: 5rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-preview-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange), var(--color-yellow));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-red);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 3px solid white;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, rgba(0, 104, 71, 0.1), rgba(206, 17, 38, 0.1));
    border-bottom: 4px solid var(--color-yellow);
}

.page-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.8rem;
    color: var(--color-red);
    font-weight: 500;
}

/* Gallery Page */
.gallery-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 4px solid var(--color-green);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(206, 17, 38, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info {
    color: white;
}

.gallery-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gallery-info p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

/* Menu Page */
.menu-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
    scroll-behavior: smooth;
}

.menu-category-nav {
    position: sticky;
    top: 70px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    margin: 0 -20px 30px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--color-yellow);
}

.menu-category-link {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-green);
    background: rgba(0, 104, 71, 0.08);
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-category-link:hover {
    background: var(--color-green);
    color: white;
    transform: translateY(-2px);
}

.menu-category-link:focus {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
}

.menu-sections {
    margin-top: 40px;
}

.menu-section {
    background: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left: 6px solid var(--color-red);
    border-right: 6px solid var(--color-green);
    scroll-margin-top: 220px;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 4px solid var(--color-yellow);
}

.menu-section-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 3.8rem;
    color: var(--color-green);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-section-subtitle {
    font-size: 1.4rem;
    color: var(--color-red);
    font-weight: 500;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.5), rgba(255, 255, 255, 0.8));
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--color-yellow);
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.3);
    border-left-color: var(--color-red);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

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

.menu-item-name {
    font-size: 1.9rem;
    color: var(--color-green);
    font-weight: 700;
    text-transform: uppercase;
}

.menu-item-name-es {
    font-size: 1.15rem;
    color: var(--color-dark);
    font-weight: 500;
    font-style: italic;
}

.menu-item-price {
    font-size: 1.6rem;
    color: var(--color-red);
    font-weight: 700;
}

.menu-item-description {
    color: var(--color-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.menu-item-options {
    margin: 10px 0 0;
    padding-left: 20px;
    list-style: disc;
    font-size: 1rem;
    color: var(--color-dark);
}

.menu-item-options li {
    margin-bottom: 6px;
}

.menu-option-name {
    font-style: italic;
}

.menu-option-price {
    font-weight: 700;
    color: var(--color-red);
    margin-left: 8px;
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-note {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
}

/* About Page */
.about-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
}

.about-on-home {
    padding-top: 20px;
    padding-bottom: 80px;
}

.about-on-home .about-content {
    margin-top: 0;
}

.about-content {
    margin-top: 40px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--color-red);
    border-bottom: 5px solid var(--color-green);
}

.about-section-reverse {
    direction: rtl;
}

.about-section-reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--color-green);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.about-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 4px solid var(--color-yellow);
}

.about-image-wrapper:hover {
    transform: scale(1.05);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--color-red);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(206, 17, 38, 0.3);
}

.value-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    color: var(--color-green);
    font-size: 1.9rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.value-card p {
    color: var(--color-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
}

.contact-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--color-red);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(206, 17, 38, 0.3);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--color-green);
    font-size: 1.9rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-card p {
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-card strong {
    color: var(--color-red);
}

.contact-address-link {
    display: inline-block;
    color: var(--color-green);
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    word-break: break-word;
    transition: color 0.2s ease;
}

.contact-address-link:hover {
    color: var(--color-red);
    text-decoration: underline;
}

.contact-phone-link {
    color: var(--color-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.contact-directions-hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.contact-hours-label {
    margin-top: 14px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-green), #00855A);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    transform: translateX(5px);
}

.map-section {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--color-yellow);
}

.map-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--color-green);
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 300px;
}

.map-cta-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--color-green);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.map-pin {
    font-size: 4rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px rgba(206, 17, 38, 0.8));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.cta-section-inline {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange), var(--color-yellow));
    border-radius: 30px;
    color: white;
}

.cta-section-inline h2 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section-inline p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section-inline .btn-primary {
    background: white;
    color: var(--color-red);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-green), var(--color-dark));
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.05) 10px, rgba(255, 215, 0, 0.05) 20px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--color-yellow);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.footer-logo {
    height: 160px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-link {
    color: var(--color-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-link-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.footer-link-btn:hover {
    background: var(--color-yellow);
    color: var(--color-dark) !important;
}

.footer-section-links .footer-icon-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-icon-link:hover {
    background: var(--color-yellow);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.footer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .footer-icon-links {
        flex-direction: column;
    }
    .footer-icon-link {
        justify-content: center;
    }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    opacity: 1;
    color: var(--color-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ========== Events Page ========== */
.events-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
}

/* Animated EVENTS hero – attention-grabbing */
.events-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
}

.events-hero-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    animation: events-title-attention 2s ease-in-out infinite;
}

.events-hero-line {
    position: relative;
    height: 6px;
    max-width: 320px;
    margin: 0 auto 8px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-yellow), var(--color-orange), var(--color-red));
    background-size: 300% 100%;
    animation: events-line-move 1.8s ease-in-out infinite;
}

.events-hero-line::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 50% 100%;
    animation: events-shimmer 2s ease-in-out infinite;
}

.events-hero-sub {
    font-size: 1.2rem;
    color: var(--color-green);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes events-title-attention {
    0%, 100% { transform: scale(1) translateX(0); }
    25% { transform: scale(1.02) translateX(-2px); }
    75% { transform: scale(1.02) translateX(2px); }
}

@keyframes events-line-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes events-shimmer {
    0% { background-position: -50% 0; }
    100% { background-position: 150% 0; }
}

.events-section {
    margin-bottom: 80px;
}

.events-section:last-child {
    margin-bottom: 0;
}

.events-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-green);
    margin-bottom: 12px;
}

.events-label-past {
    color: var(--color-red);
}

.events-main-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.events-main-subtitle,
.events-section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 640px;
}

.events-section-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.events-section-subtitle {
    margin-bottom: 30px;
}

/* Upcoming events – poster left, info right */
.events-featured-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-featured {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.event-featured:hover {
    box-shadow: 0 18px 50px rgba(206, 17, 38, 0.15);
}

.event-featured-image-wrapper {
    flex: 0 0 380px;
    min-width: 0;
    position: relative;
    cursor: pointer;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-featured-image-wrapper:hover .event-poster-zoom-hint {
    opacity: 1;
}

.event-featured-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 480px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.event-poster-zoom-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
}

.event-featured-details {
    flex: 1;
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.event-featured-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.2;
}

.event-featured-title-es {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.event-details-clean {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.event-details-clean li {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-detail-label {
    display: inline-block;
    font-weight: 700;
    color: var(--color-dark);
    min-width: 6rem;
    margin-right: 6px;
}

.event-phone-link {
    color: var(--color-red);
    font-weight: 700;
    text-decoration: none;
}

.event-phone-link:hover {
    text-decoration: underline;
}

.event-reserve-btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* Lightbox – click poster to zoom */
.event-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-lightbox.is-open {
    display: flex;
}

.event-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.event-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10001;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.event-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.event-lightbox-img {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .event-featured {
        flex-direction: column;
    }
    .event-featured-image-wrapper {
        flex: 0 0 auto;
        min-height: 280px;
        padding: 16px;
    }
    .event-featured-image {
        min-height: 260px;
        max-height: 360px;
    }
    .event-featured-details {
        padding: 24px 24px 28px;
    }
    .event-featured-title {
        font-size: 1.6rem;
    }
}

/* ========== Discounts Page ========== */
.discounts-page {
    padding: 40px 20px 100px;
    background: var(--color-light-bg);
}

.discounts-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 20px 10px;
}

.discounts-hero-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.discounts-hero-line {
    height: 5px;
    max-width: 280px;
    margin: 0 auto 10px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-yellow));
}

.discounts-hero-sub {
    font-size: 1.15rem;
    color: var(--color-green);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discounts-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.discount-item {
    width: 100%;
    text-align: center;
}

.discount-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 56px rgba(206, 17, 38, 0.2);
}

@media (max-width: 768px) {
    .discounts-hero-title {
        font-size: 2.6rem;
    }
    .discounts-list {
        gap: 36px;
    }
}

/* Upcoming events cards (legacy) */
.events-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(206, 17, 38, 0.15);
}

.event-card-banner {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-card-banner-text {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.event-banner-1 {
    background: linear-gradient(135deg, #5a189a 0%, #9d4edd 50%, #06d6a0 100%);
}

.event-banner-2 {
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #ffd166 100%);
}

.event-banner-3 {
    background: linear-gradient(135deg, #e85d04 0%, #faa307 50%, #ffba08 100%);
}

.event-card-body {
    padding: 24px;
    position: relative;
}

.event-card-tag {
    display: inline-block;
    background: rgba(206, 17, 38, 0.12);
    color: var(--color-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.event-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.event-card-title-es {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.event-card-desc,
.event-card-desc-es {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 6px;
}

.event-card-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 12px;
    margin-bottom: 4px;
}

.event-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-red);
    text-align: right;
}

/* Past events – image only, click to open in lightbox */
.events-past-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.event-past-item {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    aspect-ratio: 4 / 3;
}

.event-past-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(206, 17, 38, 0.15);
}

.event-past-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .events-main-title {
        font-size: 2.4rem;
    }
    .events-section-title {
        font-size: 2.2rem;
    }
    .events-cards {
        grid-template-columns: 1fr;
    }
    .events-past-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .title-main {
        font-size: 4rem;
    }

    .title-bar-grill {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .page-title {
        font-size: 3.5rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

    .menu-section {
        padding: 30px 20px;
    }

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

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

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

    .cta-content h2 {
        font-size: 2.8rem;
    }

    .logo-container .logo {
        height: 100px;
        max-width: 200px;
    }

    .footer-logo {
        height: 120px;
        max-width: 200px;
    }

    .navbar {
        padding: 10px 0;
    }

    main {
        margin-top: 100px;
    }
}


