/* CSS Variables para diseño Premium Dark Mode + Acentos Italia */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    --color-green: #009246; /* Verde Bandera Italia */
    --color-red: #CE2B37;   /* Rojo Bandera Italia */
    --color-white: #F5F5F5; /* Blanco Bandera Italia */
    
    --glow-green: rgba(0, 146, 70, 0.4);
    --glow-red: rgba(206, 43, 55, 0.4);
    
    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Tipografía de Acentos */
.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-white { color: var(--color-white); }

/* --- Botones --- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-green), #007a3a);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 146, 70, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 146, 70, 0.5);
    background: linear-gradient(135deg, #00ab52, var(--color-green));
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--text-secondary);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    box-shadow: 0 0 15px rgba(206, 43, 55, 0.2);
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo a {
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

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

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

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

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 5% 0 5%;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-green);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-burger {
    width: 80%;
    max-width: 500px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Efectos de Luz de Fondo (Bandera Italia) */
.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.5;
}

.green-glow {
    background: var(--glow-green);
    top: 10%;
    left: 10%;
}

.red-glow {
    background: var(--glow-red);
    bottom: 10%;
    right: 10%;
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 5%;
    background-color: #0d0d10;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards de Menu Glassmorphism */
.menu-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 146, 70, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

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

.menu-card:hover .card-img-container img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.price {
    color: var(--color-red);
    font-weight: 800;
    font-size: 1.2rem;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex: 1;
}

.btn-add {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.menu-card:hover .btn-add {
    background: var(--color-green);
    border-color: var(--color-green);
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
}

/* --- Info Section --- */
.info-section {
    padding: 100px 5%;
    position: relative;
    background: url('data:image/svg+xml;utf8,<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.05)"/></svg>') repeat;
}

.glass-effect {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-white), var(--color-red));
}

.info-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.feature {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    color: #e0e0e0;
}

/* --- Footer --- */
.footer {
    background-color: #050505;
    padding: 60px 5% 20px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--color-green), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links h3 {
    margin-bottom: 15px;
    color: white;
}

.footer-links p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

/* --- Misión, Visión y Valores (MVV) --- */
.mvv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 146, 70, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.mvv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Recetas (Recipe Cards) --- */
.recipe-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    transition: var(--transition);
}

.recipe-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(206, 43, 55, 0.15);
}

.recipe-img {
    flex: 1;
    min-height: 300px;
    background: #111;
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-content h2 {
    font-size: 2.2rem;
    color: var(--color-green);
    margin-bottom: 10px;
}

.ingredients-list {
    margin-top: 20px;
    padding-left: 20px;
    color: var(--text-secondary);
}

.ingredients-list li {
    margin-bottom: 8px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .title { font-size: 3.5rem; }
    .hero { flex-direction: column; padding-top: 120px; text-align: center; }
    .hero-content { margin-bottom: 50px; }
    .hero-buttons { justify-content: center; }
    .stats { justify-content: center; }
    .glow-circle { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 12, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--color-green);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .navbar .btn-primary { display: none; }
    .menu-toggle { display: flex; }
    
    .title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; text-align: center; }
    .stats { flex-direction: column; gap: 20px; }
    
    .glass-effect { padding: 30px; }
    .info-text h2 { font-size: 2rem; }
    
    .footer-content { flex-direction: column; text-align: center; }
}
