/* --- ESTILOS UNIFICADOS KAKO GOURMET: VINOS --- */

:root {
    --gold-accent: #c5a059;
    --dark-red: #4a0505; /* Granate para títulos */
    --footer-bg: #2a0505; /* Granate profundo para el footer */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Assistant', sans-serif;
    background-color: white;
}

.serif { font-family: 'Playfair Display', serif; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

.logo {
    text-decoration: none;
    color: var(--dark-red);
    font-size: 1.4rem;
    border: 2px solid var(--dark-red);
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.logo:hover {
    background: var(--dark-red);
    color: white;
}

nav ul { display: flex; list-style: none; margin: 0; }
.nav-link {
    text-decoration: none;
    color: #444;
    margin-left: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO */
.hero-minimal {
    margin-top: 80px; 
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-minimal h1 {
    font-size: 3rem;
    color: var(--dark-red);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.line {
    width: 50px;
    height: 2px;
    background: var(--gold-accent);
    margin: 1rem auto;
}

.hero-minimal .subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    font-weight: 300;
}

/* CUADRÍCULA (3 columnas fijas) */
.meat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; 
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5; 
    overflow: hidden;
    background: #0d0d0d;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* OVERLAY HOVER */
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 5, 5, 0.9), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.item-overlay .origin {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.item-overlay .info-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-saber-mas {
    padding: 8px 20px;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-saber-mas:hover {
    background: var(--gold-accent);
    color: black;
}

/* FOOTER GRANATE */
footer {
    padding: 4rem 5% 2rem;
    background: var(--footer-bg); /* Fondo Granate */
    text-align: center;
    color: white;
}

footer h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}