/* --- CONFIGURACIÓN GENERAL Y FUENTES --- */
:root {
    --color-principal: #1a1a1a; /* Negro suave */
    --color-texto: #555555;
    --color-acento: #333333;
    --color-fondo: #ffffff;
    --fuente-titulos: 'Cormorant Garamond', serif;
    --fuente-cuerpo: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--fuente-cuerpo);
    color: var(--color-texto);
    background-color: var(--color-fondo);
    font-size: 16px;
}

a {
    color: var(--color-texto);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-principal);
}

/* --- ENCABEZADO Y SECCIÓN HERO --- */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* IMAGEN DE FONDO - ¡CAMBIAR POR UNA TUYA! */
    background-image: url('https://images.pexels.com/photos/1191531/pexels-photo-1191531.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* Capa oscura para legibilidad */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-title {
    font-family: var(--fuente-titulos);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.main-nav a {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.main-nav a:hover {
    border-bottom-color: white;
    color: white;
}

/* --- SECCIÓN DE INSPIRACIÓN --- */
.inspiration-section {
    padding: 5rem 1rem;
    text-align: center;
}

.inspiration-section h2 {
    font-family: var(--fuente-titulos);
    font-size: 3rem;
    color: var(--color-principal);
    margin: 0 0 1rem 0;
}

.inspiration-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 0.5rem auto;
}

/* --- GRID DE CATEGORÍAS --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category-item {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end; /* Alinea el título abajo */
    justify-content: center;
    padding: 2rem;
    color: white;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    transition: background 0.4s ease;
}

.category-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%);
}

/* --- ¡DEBES CAMBIAR ESTAS IMÁGENES POR LAS TUYAS! --- */
#category-mujer { background-image: url('https://images.pexels.com/photos/265906/pexels-photo-265906.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); }
#category-hombre { background-image: url('https://images.pexels.com/photos/1689731/pexels-photo-1689731.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); }
#category-ideas { background-image: url('https://images.pexels.com/photos/2735970/pexels-photo-2735970.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); }
#category-especiales { background-image: url('https://images.pexels.com/photos/942854/pexels-photo-942854.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); }


.category-title {
    position: relative;
    z-index: 2;
    font-family: var(--fuente-titulos);
    font-size: 2rem;
}

/* --- PIE DE PÁGINA (FOOTER) --- */
.site-footer {
    background-color: #f8f8f8;
    color: var(--color-texto);
    padding: 4rem 2rem 1rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-family: var(--fuente-cuerpo);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--color-principal);
    margin-bottom: 1.5rem;
}

.footer-column p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}
.footer-column p.horario {
    font-size: 0.9em;
    color: #777;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--color-texto);
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.social-icons a:hover {
    color: var(--color-acento);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 0.85rem;
}
.footer-legal a {
    margin: 0 10px;
}


/* --- DISEÑO RESPONSIVO (PARA CELULARES) --- */
@media (max-width: 768px) {
    .logo-title {
        font-size: 2.5rem;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    .inspiration-section {
        padding: 3rem 1.5rem;
    }
    .category-grid {
        grid-template-columns: 1fr; /* Una columna en celulares */
    }
    .category-item {
        height: 50vh;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        margin-bottom: 2rem;
    }
}
