/* VARIABLES DE MARCA */
:root {
    --primary-red: #660000;
    --dark-red: #4a0000;    /* Color granate principal */
    --footer-bg: #2a0505;   /* Granate más oscuro para el footer */
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --gold-accent: #c5a059;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo {
    text-decoration: none;
    color: var(--dark-red);
    font-size: 1.4rem;
    border: 2px solid var(--dark-red);
    padding: 5px 15px;
    transition: var(--transition);
}

.logo:hover {
    background: var(--dark-red);
    color: white;
}

nav ul { display: flex; list-style: none; }
.nav-item { position: relative; margin-left: 2.5rem; }
.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 0 0 8px 8px;
    padding: 1rem 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--text-black);
    font-size: 0.9rem;
    transition: 0.3s;
}

.dropdown a:hover {
    background: #f4f4f4;
    color: var(--primary-red);
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1551028150-64b9f398f678?auto=format&fit=crop&q=80&w=1920') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }

/* BOTONES */
.btn-gourmet {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-gourmet:hover {
    background: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-gourmet-small {
    padding: 8px 15px;
    font-size: 0.7rem;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECCIONES Y CARRUSEL */
.section-title { text-align: center; margin: 4rem 0 2rem; }
.section-title h2 { font-size: 2.2rem; color: var(--dark-red); }
.line { width: 60px; height: 3px; background: var(--gold-accent); margin: 10px auto; }

.slider-container {
    display: flex;
    overflow-x: auto;
    padding: 1rem 5% 2rem;
    gap: 2rem;
    scrollbar-width: none;
}

.product-card {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #222;
}

.product-image {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover .product-image { transform: scale(1.1); }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.card-overlay h3 { color: white; margin-bottom: 15px; }

.button-center-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0 4rem;
}

/* FOOTER GRANATE */
footer {
    background: var(--footer-bg); /* Color granate solicitado */
    color: white;
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-grid h3, .footer-grid h4 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}