/* ===== SABOR MEXICANO - RESTAURANT LANDING ===== */
/* Premium Elegant Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary: #c45c26;
    --primary-dark: #a34a1e;
    --primary-light: #e07a3f;
    --primary-glow: rgba(196, 92, 38, 0.3);
    --secondary: #2c1810;
    --accent: #d4a574;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray-900: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-600: #5a5a5a;
    --gray-500: #6b6b6b;
    --gray-400: #8a8a8a;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --cream: #faf7f2;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ===== BACK BUTTON ===== */
.back-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition);
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transition: left 0.5s ease;
}

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

.back-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px var(--primary-glow);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: '';
    width: 8px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.btn-reservar {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow), 0 0 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-reservar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transition: left 0.5s ease;
}

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

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 30px var(--primary-glow);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow), 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 40px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-particle:nth-child(1) {
    width: 6px;
    height: 6px;
    background: var(--gold);
    top: 20%;
    left: 10%;
    animation: floatParticle 8s infinite linear;
}

.hero-particle:nth-child(2) {
    width: 8px;
    height: 8px;
    background: var(--primary);
    top: 60%;
    left: 80%;
    animation: floatParticle 10s infinite linear 1s;
}

.hero-particle:nth-child(3) {
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    top: 80%;
    left: 20%;
    animation: floatParticle 12s infinite linear 2s;
}

.hero-particle:nth-child(4) {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    top: 40%;
    left: 60%;
    animation: floatParticle 9s infinite linear 3s;
}

.hero-particle:nth-child(5) {
    width: 5px;
    height: 5px;
    background: var(--accent);
    top: 70%;
    left: 40%;
    animation: floatParticle 11s infinite linear 4s;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decoration.top-left {
    top: 100px;
    left: 50px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.hero-decoration.bottom-right {
    bottom: 100px;
    right: 50px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(196, 92, 38, 0.15);
    border-radius: 50%;
    animation: pulse 5s infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-glow), 0 0 40px transparent;
    }
    50% {
        box-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translate(100px, -300px) rotate(360deg);
        opacity: 0;
    }
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero h1 span {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.light {
    color: var(--white);
}

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

.section-header.light p {
    color: rgba(255,255,255,0.7);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.section-header h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    border-radius: 50%;
    filter: blur(100px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 92, 38, 0.1) 0%, rgba(196, 92, 38, 0.05) 100%);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu {
    padding: 120px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.menu-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.menu-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.menu-item:hover .menu-image::after {
    opacity: 1;
}

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

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

.menu-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: var(--shadow);
}

.menu-badge.chef {
    background: var(--gradient-gold);
    color: var(--dark);
}

.menu-content {
    padding: 1.75rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.menu-header h3 {
    font-size: 1.35rem;
    color: var(--dark);
}

.price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

.menu-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img.main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.about-img.main:hover {
    transform: rotate(0);
}

.about-img.main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-img.secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
    transform: rotate(3deg);
    transition: var(--transition);
}

.about-img.secondary:hover {
    transform: rotate(0) scale(1.05);
}

.experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

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

.experience-badge .years {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.25rem;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.5));
}

.testimonial > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.testimonial-author strong {
    display: block;
    font-size: 1.05rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 92, 38, 0.1) 0%, rgba(196, 92, 38, 0.05) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.info-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
    color: var(--dark);
}

.info-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.reservation-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
}

.reservation-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-glow), transparent 50%);
    opacity: 0.15;
    animation: pulse 8s infinite;
}

.gallery .section-header {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

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

.gallery-item:hover::after {
    border-color: var(--gold);
    box-shadow: inset 0 0 30px rgba(201, 162, 39, 0.2);
}

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

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-caption span {
    font-size: 0.85rem;
    color: var(--gold);
}

.gallery-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-bounce);
}

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

/* ===== CHEF SECTION ===== */
.chef {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.chef-image {
    position: relative;
}

.chef-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.chef-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.chef-image-main:hover img {
    transform: scale(1.05);
}

.chef-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.4), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.chef-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: var(--shadow-xl);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.chef-badge svg {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.chef-badge span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.chef-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
}

.chef-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.chef-content > p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.chef-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.chef-name-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.chef-name-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-name-info h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.chef-name-info span {
    color: var(--primary);
    font-weight: 500;
}

.chef-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.specialty-tag {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.specialty-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===== INSTAGRAM FEED ===== */
.instagram-feed {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

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

.instagram-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.instagram-header a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.instagram-header a:hover {
    color: var(--primary-dark);
}

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

.instagram-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 92, 38, 0.8), rgba(201, 162, 39, 0.8));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.instagram-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z' fill='none' stroke='white' stroke-width='2'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
    z-index: 2;
    transition: var(--transition-bounce);
}

.instagram-item:hover::before {
    opacity: 1;
}

.instagram-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.footer-logo::before {
    content: '';
    width: 6px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.75rem;
    max-width: 320px;
    line-height: 1.8;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-4px);
    border-color: transparent;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    color: var(--gray-500);
}

.demo-note a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.demo-note a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .about-grid,
    .contact-grid,
    .chef-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-images {
        max-width: 550px;
        margin: 0 auto;
    }

    .chef-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .back-btn {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .header .container {
        height: 75px;
    }

    .btn-reservar {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-img.secondary,
    .experience-badge {
        display: none;
    }

    .about-stats {
        justify-content: center;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .chef-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -10px;
    }

    .chef-badge svg {
        width: 30px;
        height: 30px;
    }

    .chef-badge span {
        font-size: 0.75rem;
    }

    .chef-decoration {
        display: none;
    }

    .chef-specialties {
        justify-content: center;
    }

    .hero-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

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

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

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chef-content h2 {
        font-size: 2rem;
    }

    .chef-name {
        flex-direction: column;
        text-align: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        background-attachment: scroll;
    }
}
