/*
 * Mister Leigh - Restaurant & Barra
 * Estilos Completos y Corregidos
 * Versión 3.0 - Con video de fondo
 */

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

:root {
    --color-primary: #d4af37;
    --color-gold-light: #f0d576;
    --color-red: #c41e3a;
    --color-dark: #1a1a1a;
    --color-darker: #0a0a0a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7); }
}

/* ===== HEADER ===== */
.header-restaurant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-restaurant {
    padding: 18px 0;
}

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

.logo-restaurant img {
    height: 70px;
}

.nav-menu-restaurant {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu-restaurant a {
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 10px 0;
}

.nav-menu-restaurant a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-red);
    transition: width 0.3s;
}

.nav-menu-restaurant a:hover {
    color: var(--color-red);
}

.nav-menu-restaurant a:hover::after {
    width: 100%;
}

.btn-reservar-nav {
    background: linear-gradient(135deg, var(--color-red), #dc143c);
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-reservar-nav::after {
    display: none;
}

.btn-reservar-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

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

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
}

/* ===== HERO CON VIDEO ===== */
.hero-restaurant {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(139,0,0,0.7));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 3rem;
    animation: fadeInUp 1.2s ease;
}

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

.hero-subtitle {
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--color-gold-light);
    font-weight: 400;
}

.hero-title {
    font-size: 100px;
    margin-bottom: 24px;
    color: white;
    text-shadow: 4px 4px 20px rgba(0,0,0,0.8);
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-slogan {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 45px;
    font-style: italic;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-reservar {
    background: linear-gradient(135deg, var(--color-red), #dc143c);
    color: white;
    border: 3px solid var(--color-red);
}

.btn-reservar:hover {
    background: transparent;
    transform: translateY(-5px);
}

.btn-carta {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-carta:hover {
    background: white;
    color: var(--color-red);
}

.hero-description {
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255,255,255,0.95);
}

.hero-description strong {
    color: var(--color-gold-light);
}

.hero-scroll {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    color: white;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-18px); }
}

.main-content {
    margin-top: 106px;
}

/* ===== INFO BAR ===== */
.info-bar {
    background: linear-gradient(135deg, var(--color-primary), #b8942c);
    padding: 30px 0;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 32px;
    color: var(--color-darker);
}

.info-item h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 6px;
}

.info-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.info-item a {
    color: white;
    font-weight: 700;
}

/* ===== SECCIONES GENERALES ===== */
.especialidades-section,
.platos-tradicionales,
.menu-completo {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 52px;
    margin-bottom: 18px;
    color: var(--color-dark);
}

.section-header p {
    font-size: 19px;
    color: #666;
}

/* ===== ESPECIALIDADES ===== */
.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.especialidad-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.especialidad-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.especialidad-card.destacada {
    background: linear-gradient(135deg, var(--color-red), #dc143c);
    color: white;
}

.especialidad-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.especialidad-card.destacada .badge {
    background: rgba(255,255,255,0.3);
}

.especialidad-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.especialidad-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.especialidad-card.destacada p {
    color: rgba(255,255,255,0.95);
}

.precio {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.especialidad-card.destacada .precio {
    color: white;
}

.btn-ordenar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: var(--color-red);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-ordenar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* ===== PLATOS TRADICIONALES ===== */
.platos-tradicionales {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

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

.plato-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.plato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.plato-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.plato-card h4 {
    font-size: 22px;
    padding: 24px 24px 12px;
}

.plato-card p {
    padding: 0 24px;
    font-size: 15px;
    color: #666;
}

.plato-card .precio {
    display: block;
    padding: 18px 24px 28px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}

/* ===== MENÚ COMPLETO ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.menu-categoria {
    padding: 80px 50px;
    min-height: 700px;
    background: var(--color-darker);
    color: white;
}

.menu-categoria:nth-child(2) {
    background: linear-gradient(135deg, var(--color-primary), #b8942c);
}

.menu-categoria:nth-child(3) {
    background: var(--color-dark);
}

.menu-categoria h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.menu-categoria ul {
    list-style: none;
}

.menu-categoria li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 17px;
}

.menu-categoria li:hover {
    padding-left: 10px;
}

.btn-reservar-menu {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--color-red), #dc143c);
    color: white;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 40px;
}

.btn-reservar-menu:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* ===== MAPA ===== */
.mapa-section {
    position: relative;
}

.mapa-container iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.mapa-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.96), rgba(10,10,10,0.75));
    padding: 40px 0;
    text-align: center;
    color: white;
}

.mapa-info h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.mapa-info h3 i {
    color: var(--color-primary);
    font-size: 36px;
}

.mapa-info p {
    font-size: 18px;
    color: rgba(255,255,255,0.96);
    margin: 6px 0;
}

/* ===== FOOTER ===== */
.footer-restaurant {
    background: var(--color-darker);
    color: white;
    padding: 70px 0 35px;
}

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

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

.footer-logo {
    width: 130px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-slogan {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-5px) rotate(5deg);
}

.footer-info h4,
.footer-contact h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 28px;
}

.footer-info ul,
.footer-contact ul {
    list-style: none;
}

.footer-info li,
.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.87);
}

.footer-info i,
.footer-contact i {
    color: var(--color-primary);
    margin-top: 4px;
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255,255,255,0.87);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

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

.footer-bottom p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 10px 0;
}

.footer-bottom a {
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .especialidades-grid,
    .platos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 70px; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 768px) {
    .nav-menu-restaurant {
        position: fixed;
        top: 106px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 106px);
        background: white;
        flex-direction: column;
        padding: 45px 35px;
        transition: left 0.4s;
        overflow-y: auto;
    }
    
    .nav-menu-restaurant.active { left: 0; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .info-grid { grid-template-columns: 1fr; }
    .especialidades-grid,
    .platos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 40px; }
    .section-header h2 { font-size: 32px; }
}
