@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFAE6;
}


/*SHORTCUTS*/
.bold {
    font-weight: 900;
}
/*SHORTCUTS*/



/*HEADER*/
header {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #FF1F45;
}

nav a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7em;
    color: #FF1F45;
}

.menu-izquierda, .menu-derecha {
    display: flex;
    gap: 20px;
}

.logo {
    text-align: center;
    padding: 10px;
}

.logo img {
    width: 10%;
    min-width: 100px;
}
/*HEADER*/



/*HERO*/
/* Contenedor principal del slider */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px); /* Ocupa todo el espacio bajo el header */
    overflow: hidden;
}

/* Centrado de texto */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF; /* Cambia el color del texto según el fondo */
    z-index: 1; /* Asegura que el texto esté encima del slider */
}

.boton-inicio {
    color: #FF1F45;
    font-family: 'space grotesk';
    border: 1px solid #FF1F45;
    border-radius: 15px;
    padding: 5px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.5s ease; /* Agrega una transición para el fondo y el color del texto */
}

.boton-inicio:hover {
    background-color: #FF1F45;
    color: #FFFAE6;
}

.hero-text h1 {
    font-size: 5em;
    font-family: 'space grotesk';
    color: #FFFAE6;
    opacity: 90%;
    margin: 0;
}

.hero-text p {
    font-size: 1.2em;
    font-family: 'space grotesk';
    color: #FFFAE6;
    opacity: 90%;
    margin: 0;
    margin-top: -10px;
    margin-bottom: 40px;
}

.slides {
    display: flex;
    width: 300%; /* Tres veces el ancho del contenedor para alojar las tres imágenes */
    height: 100%;
    animation: slideAnimation 12s infinite; /* Duración total de la animación */
}

/* Cada slide ocupa el 100% del ancho de .hero */
.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Animación para desplazar el slider con pausas */
@keyframes slideAnimation {
    0%, 25% { transform: translateX(0); }       /* Primera imagen se muestra durante 3s */
    33.33%, 58.33% { transform: translateX(-33.3333%); } /* Segunda imagen se muestra durante 3s */
    66.66%, 91.66% { transform: translateX(-66.6666%); } /* Tercera imagen se muestra durante 3s */
    100% { transform: translateX(0); }          /* Regresar a la primera imagen */
}
/*HERO*/


/*HERO-CONTACTO*/
.hero-text-contacto {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF; /* Cambia el color del texto según el fondo */
    z-index: 1; /* Asegura que el texto esté encima del slider */
}

.hero-text-contacto h1 {
    font-size: 5em;
    font-family: 'Arial';
    color: #FF1F45;
    opacity: 90%;
    margin: 0;
}

.hero-text-contacto h2 {
    font-size: 1.2em;
    font-family: 'Arial';
    font-weight: 100;
    color: #FF1F45;
    opacity: 90%;
    margin: 0;
    margin-top: -10px;
}

.hero-text-contacto p {
    font-size: .5em;
    font-family: 'Arial';
    font-weight: 100;
    color: #FF1F45;
    opacity: 90%;
    margin: 5;
}


.button {
    border: 1px solid #FF1F45;
    border-radius: 10px;
    margin-top: 10%;
    padding: 10px;
    text-align: center;
}

.button a{   
    text-decoration: none;
    font-family: 'Arial';
    color: red;
}
/*HERO-CONTACTO*/



/*HERO-COLLECCIONES*/
/* Dividir en 3 columnas */
.hero-colecciones {
    position: relative;
    height: calc(100vh - 50px); /* Ocupa todo el espacio bajo el header */
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas iguales */
    width: 100%;
}

.hero-columns {
    display: grid;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.coleccion-01 {
    width: 100%;
    height: 100%;
    background-image: url('/IMAGES/P01V.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Capa de superposición */
.coleccion-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); /* Oscurecimiento inicial */
    transition: background-color 0.3s ease; /* Transición suave */
}

/* Aclarado al hacer hover */
.coleccion-01:hover::before {
    background-color: rgba(0, 0, 0, 0); /* Casi transparente */
}

.coleccion-01-title {
    position: relative;
    z-index: 2;
    margin-top: 10%;
    margin-left: 3%;
}

.coleccion-01 h2 {
    font-family: 'space grotesk';
    color: #FFFAE6;
    font-size: 1.5em;
    margin: 0;
}

.coleccion-01 p {
    color: #FFFAE6;
    font-family: 'space grotesk';
    font-size: .8em;
    margin: 0;
    font-weight: 100;
}

.P02 {
    border: 0px solid #FF1F45;
    display: flex;
    justify-content: center;
    align-items: center;
}

.P02 h1{
    color: #FF1F45;
    font-family: 'space grotesk';
}

/*HERO-COLLECCIONES*/


/*HERO-P01*/
/* Hero container */
.hero-P01 {
    width: 100%;
    height: 160vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid container for 2x2 layout */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    grid-template-rows: 1fr 1fr; /* Dos filas iguales */
    width: 100%;
    height: 100%;
}

/* Each grid item representing an image */
.grid-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/*HERO-P01*/

/*FOOTER*/
/* Footer styling */
footer {
    border-top: 1px solid #FF1F45;
    background-color: #FFFAE6;
    color: #FF1F45;
    padding: 70px 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-section {
    padding: 10px;
    min-width: 200px;
}

.ho {
    width: 150px;
}

.correo {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: .8em;
    margin: 0;
    text-transform: uppercase;
}

.descripcion {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: .8em;
    margin: 0;
    margin-top: 10px;
    max-width: 220px;
    text-transform: uppercase;
}

.aviso-boton{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: .8em;
    margin: 0;
    margin-top: 10px;
}

.footer-redes {
    padding-top: 10px;
}

.footer-redes img {
    width: 15px;
}

.footer-section h3 {
    color: #FFFAE6;
}

.footer-section h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #FF1F45;
    margin: 0;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 10px;
    font-size: 0.8em;
    color: #FFFAE6;
}

.button-footer {
    border: 1px solid #FF1F45;
    border-radius: 10px;
    margin-top: 15px;
    padding: 10px;
    text-align: center;
}

.button-footer a{   
    text-decoration: none;
    font-family: 'Arial';
    color: red;
}
/*FOOTER*/