/* Fukutoku El Jardín de las Delicias - Estilos CSS */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background: #000000;
    color: #ffffff;
    padding: 1rem 0; /* py-4 en desktop */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-sticky {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95);
}

.header-scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem; /* mr-8 */
    flex: 0 0 auto; /* Permitir que el logo tenga más peso visual */
}

.logo {
    width: 128px; /* h-32 - doble de h-16 */
    height: 128px;
    object-fit: contain;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; /* Más discreto */
    font-weight: 600; /* Menos peso */
    color: #ffffff; /* Blanco */
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
}

/* Control de títulos por dispositivo */
.desktop-title {
    display: block;
}

.mobile-title {
    display: none;
}

.logo-text .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #cccccc; /* Gris claro */
    margin: 0;
    font-weight: 300;
    font-style: italic;
    white-space: nowrap;
}

/* Navegación Desktop */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* space-x-6 */
    margin-left: auto; /* ml-auto */
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #ffffff; /* Blanco */
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: #66bb6a; /* Verde más claro para mejor contraste */
}

.cta-primary {
    background-color: #dc2626 !important; /* bg-red-600 */
    color: white !important;
    padding: 0.5rem 1.25rem !important; /* px-5 py-2 */
    border-radius: 9999px; /* rounded-full */
    text-transform: none !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    white-space: nowrap;
}

.cta-primary:hover {
    background-color: #d62828 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-red {
    background-color: #dc2626;
    color: white;
}

.btn-red:hover {
    background-color: #b91c1c;
}

.btn-green {
    background-color: #16a34a;
    color: white;
}

.btn-green:hover {
    background-color: #15803d;
}

.btn-yellow {
    background-color: #eab308;
    color: white;
}

.btn-yellow:hover {
    background-color: #ca8a04;
}

.btn-blue {
    background-color: #2563eb;
    color: white;
}

.btn-blue:hover {
    background-color: #1d4ed8;
}

.btn-orange {
    background-color: #ea580c;
    color: white;
}

.btn-orange:hover {
    background-color: #c2410c;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.25rem;
    background-color: #333333;
    padding: 0.25rem;
    border-radius: 20px;
}

.btn-lang {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    background-color: transparent;
    color: #cccccc; /* Gris claro */
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-lang:hover {
    background-color: #333333;
    color: #ffffff;
}

.btn-lang.active {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
}

/* CTA Móvil */
.mobile-cta {
    display: none;
}

.cta-mobile {
    background-color: #E63946;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.cta-mobile:hover {
    background-color: #d62828;
    transform: translateY(-1px);
}

/* Botón Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4CAF50; /* Verde corporativo */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: #66bb6a; /* Verde más claro para hover */
}

/* Menú Móvil Lateral */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 1001;
    transition: right 0.3s ease;
    display: none !important; /* Oculto por defecto en desktop */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    padding: 2rem 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #cccccc;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #66bb6a; /* Verde más claro para mejor contraste */
}

.mobile-nav-cta {
    background-color: #E63946 !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

.mobile-nav-cta:hover {
    background-color: #d32f2f !important;
    color: white !important;
}

/* Aviso de Cookies */
.cookie-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #111111;
    color: white;
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    flex: 1;
    min-width: 130px;
    padding: 0.7rem 1rem;
    border-radius: 9999px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.btn-accept {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-accept:hover {
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.5);
}

.btn-reject {
    background: transparent;
    color: #f3f4f6;
    border: 1px solid rgba(243, 244, 246, 0.4);
}

.btn-reject:hover {
    border-color: rgba(243, 244, 246, 0.7);
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

.mobile-language-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.mobile-language-selector span {
    font-weight: 500;
    color: #666;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Hero Origen */
.hero-origin {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('../img/origen-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-decoration {
    margin-bottom: 1.5rem;
}

.colibri-icon {
    width: 48px;
    height: 48px;
    opacity: 0.8;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: brightness(1.1);
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-text {
    margin-bottom: 2.5rem;
}

.hero-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    display: inline-block;
    background-color: #E63946;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    border: 2px solid transparent;
}

.btn-hero:hover {
    background-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Nueva Carta - Estilo Frankie Burger */
.menu-section-new {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.menu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #E63946;
    margin-bottom: 1rem;
}

.menu-notes {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.menu-category-section {
    margin-bottom: 4rem;
}

.category-divider {
    width: 60px;
    height: 3px;
    background-color: #E63946;
    margin: 0 auto 1.5rem;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #E63946;
    margin-bottom: 2rem;
}

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

.menu-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 280px;
    height: 280px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    border: 3px solid #e0e0e0;
}

.food-icon {
    width: 180px;
    height: 180px;
    opacity: 0.8;
    object-fit: contain;
    filter: brightness(0.8);
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.dish-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 1rem;
    line-height: 1.3;
    flex: 1;
}

.dish-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4CAF50;
    white-space: nowrap;
}

.dish-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.dish-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.card-allergens {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.card-allergens .allergen-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
}

.allergen-legend {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid #e0e0e0;
}

.allergen-legend h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.allergen-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.allergen-legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.allergen-legend-item .allergen-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
}

.allergen-legend-item span:last-child {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.allergen-disclaimer {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #f8f8f8;
    border-radius: 6px;
    border-left: 3px solid #dc2626;
    line-height: 1.4;
}

/* Sección Carta Estilo Frankie */
.menu-section-frankie {
    background-color: white;
    padding: 4rem 2rem;
}

.menu-container-frankie {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-title-frankie {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 1rem;
}

.menu-notes-frankie {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.menu-divider {
    width: 100px;
    height: 3px;
    background-color: #4CAF50;
    margin: 0 auto;
}

.menu-category-frankie {
    margin-bottom: 3rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.category-title-frankie {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E63946;
    text-align: center;
    margin-bottom: 1rem;
}

.category-divider-frankie {
    width: 80px;
    height: 2px;
    background-color: #4CAF50;
    margin: 0 auto 2rem;
}

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

.menu-item-frankie {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.menu-item-frankie:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-image-frankie {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

.item-icon-frankie {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: brightness(0.8);
}

.item-content-frankie {
    flex: 1;
    min-width: 0;
}

.item-header-frankie {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.item-name-frankie {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 1rem;
    line-height: 1.3;
    text-align: center;
}

.item-price-frankie {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4CAF50;
    margin: 0;
    white-space: nowrap;
}

.item-divider-frankie {
    width: 100%;
    height: 1px;
    background-color: #4CAF50;
    margin: 0.5rem 0;
}

.item-description-frankie {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.item-allergens-frankie {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.item-allergens-frankie .allergen-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #555;
    filter: grayscale(100%);
}

/* Sección Horarios */
.schedule-section {
    background-color: #FAFAFA;
    padding: 4rem 2rem;
}

.schedule-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.schedule-header {
    margin-bottom: 3rem;
}

.schedule-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 1rem;
}

.schedule-subtitle {
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.schedule-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    border: 3px solid #4CAF50;
}

.schedule-table {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.schedule-day {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.schedule-hours {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.schedule-hours.closed {
    color: #E57373;
    font-weight: 600;
}

/* Sección Servicio a Domicilio */
.delivery-section {
    background-color: #FAFAFA;
    padding: 4rem 2rem;
}

.delivery-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.delivery-header {
    margin-bottom: 3rem;
}

.delivery-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.delivery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 1rem;
    text-align: center;
}

.delivery-description {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.delivery-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.delivery-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.delivery-btn-phone {
    background-color: #4CAF50;
    color: white;
}

.delivery-btn-phone:hover {
    background-color: #45a049;
}

.delivery-btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.delivery-btn-whatsapp:hover {
    background-color: #20ba5a;
}

/* Sección Contacto */
.contact-section {
    background-color: white;
    padding: 4rem 2rem;
}

.contact-hero {
    background-image: url('../img/burger-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-repeat: no-repeat;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-logo {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: brightness(1.2);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #E63946;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #ccc;
    font-weight: 400;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    padding-right: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-text {
    flex: 1;
    font-size: 0.9rem;
    color: #f1f1f1;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-link:hover {
    color: #66bb6a;
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


.contact-map {
    width: 100%;
}

.map-container {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title.red {
    color: #dc2626;
}

.section-title.green {
    color: #16a34a;
}

.section-title.orange {
    color: #ea580c;
}

/* Menu */
.menu-section {
    margin-bottom: 3rem;
}

.menu-category {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #d1d5db;
    gap: 1rem;
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.item-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.item-allergens {
    font-size: 0.85rem;
    color: #92400e;
    font-style: italic;
}

/* Iconos de alérgenos */
.allergen-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.allergen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: normal;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Colores específicos para cada alérgeno */
.allergen-gluten { background: linear-gradient(135deg, #8B4513, #A0522D); }
.allergen-lacteo { background: linear-gradient(135deg, #4169E1, #6495ED); }
.allergen-huevos { background: linear-gradient(135deg, #FFD700, #FFA500); color: #333; }
.allergen-mostaza { background: linear-gradient(135deg, #FFA500, #FF8C00); }
.allergen-pescado { background: linear-gradient(135deg, #20B2AA, #48CAE4); }
.allergen-sesamo { background: linear-gradient(135deg, #DAA520, #F4A460); }
.allergen-soja { background: linear-gradient(135deg, #32CD32, #90EE90); }
.allergen-frutos { background: linear-gradient(135deg, #FF6347, #FF7F50); }

/* Leyenda de alérgenos */
.allergen-legend {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.allergen-legend h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.allergen-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.allergen-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.item-price {
    font-weight: bold;
    color: #16a34a;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review {
    background: white;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
}

.review.green {
    border-left-color: #16a34a;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review-author {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: right;
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
}

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

.map {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: white;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-content {
    flex: 1;
    text-align: left;
}

.footer-claim {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: white;
}

.footer-copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive - Móvil General */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
    
    /* Carta - 2 columnas para resoluciones inferiores a 1024px */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .menu-grid-frankie {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive - Tablet y Móvil */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.2rem;
    }
    
    .header {
        padding: 0.75rem 0; /* py-3 en mobile */
    }
    
    .header-logo {
        gap: 0.75rem;
    }
    
    .logo {
        width: 96px; /* h-24 - doble de h-12 */
        height: 96px;
    }
    
    .logo-text h1 {
        font-size: 0.8rem;
        white-space: normal; /* Permitir salto de línea en móvil */
    }
    
    .desktop-title {
        display: none; /* Ocultar título desktop en móvil */
    }
    
    .mobile-title {
        display: block; /* Mostrar título móvil */
    }
    
    .logo-text .tagline {
        font-size: 0.75rem;
    }
    
    
    /* Servicio a Domicilio Responsive */
    .delivery-section {
        padding: 3rem 1.5rem;
    }
    
    .delivery-title {
        font-size: 2rem;
    }
    
    .delivery-description {
        font-size: 1rem;
    }
    
    .delivery-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .delivery-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Contacto Responsive */
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .contact-info {
        padding-right: 0;
        order: 2;
    }
    
    .contact-details {
        gap: 0.75rem;
    }
    
    .contact-map {
        order: 1;
        margin-top: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    /* Hero Origen Responsive */
    .hero-origin {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Nueva Carta Responsive */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .menu-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.7rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-price {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Tablet */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-claim {
        font-size: 1.15rem;
    }
    
    .footer-logo-img {
        width: 110px;
        height: 110px;
    }
    
    /* Contacto Logo Tablet */
    .contact-logo-img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo {
        width: 96px; /* h-24 - doble de h-12 */
        height: 96px;
    }
    
    .logo-text h1 {
        font-size: 0.8rem;
    }
    
    .logo-text .tagline {
        display: none;
    }
    
    /* Servicio a Domicilio Mobile */
    .delivery-section {
        padding: 2rem 1rem;
    }
    
    .delivery-title {
        font-size: 1.75rem;
    }
    
    .delivery-description {
        font-size: 0.95rem;
    }
    
    /* Contacto Mobile */
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-hero {
        background-attachment: scroll;
    }
    
    /* Carta Frankie Mobile */
    .menu-section-frankie {
        padding: 3rem 1.5rem;
    }
    
    .menu-title-frankie {
        font-size: 2rem;
    }
    
    .menu-grid-frankie {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .item-image-frankie {
        width: 200px;
        height: 200px;
    }
    
    .item-icon-frankie {
        width: 120px;
        height: 120px;
    }
    
    .item-name-frankie {
        font-size: 1.1rem;
    }
    
    .item-price-frankie {
        font-size: 1.1rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    /* Horarios Mobile */
    .schedule-section {
        padding: 3rem 1.5rem;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
    
    .schedule-table {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    /* Carta Frankie Mobile Pequeño */
    .menu-section-frankie {
        padding: 2rem 1rem;
    }
    
    .menu-title-frankie {
        font-size: 1.75rem;
    }
    
    .menu-notes-frankie {
        font-size: 0.9rem;
    }
    
    .category-title-frankie {
        font-size: 1.25rem;
    }
    
    .item-image-frankie {
        width: 150px;
        height: 150px;
    }
    
    .item-icon-frankie {
        width: 90px;
        height: 90px;
    }
    
    .item-name-frankie {
        font-size: 1rem;
    }
    
    .item-price-frankie {
        font-size: 1rem;
    }
    
    .item-description-frankie {
        font-size: 0.8rem;
    }
    
    /* Carta Mobile Pequeño */
    .card-image {
        width: 150px;
        height: 150px;
    }
    
    .food-icon {
        width: 90px;
        height: 90px;
    }
    
    /* Carta Frankie Mobile Pequeño */
    .menu-grid-frankie {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Horarios Mobile Pequeño */
    .schedule-section {
        padding: 2rem 1rem;
    }
    
    .schedule-title {
        font-size: 1.75rem;
    }
    
    .schedule-table {
        padding: 1rem;
    }
    
    .schedule-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Contacto Mobile Pequeño */
    .contact-hero {
        background-attachment: scroll;
    }
    
    .cta-mobile {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 15px;
    }
    
    /* Hero Origen Mobile */
    .hero-origin {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    .colibri-icon {
        width: 36px;
        height: 36px;
    }
    
    .btn-hero {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Nueva Carta Mobile */
    .menu-container {
        padding: 0 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .card-image {
        width: 200px;
        height: 200px;
    }
    
    .food-icon {
        width: 120px;
        height: 120px;
    }
    
    .dish-name {
        font-size: 1rem;
    }
    
    .dish-price {
        font-size: 1.1rem;
    }
    
    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-claim {
        font-size: 1.1rem;
    }
    
    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
    
    /* Contacto Logo Mobile */
    .contact-logo-img {
        width: 120px;
        height: 120px;
    }
}
