@font-face {
  font-family: "gaga";
  src: url(../font/gaga);;
}

h1{
    font-family: 'gaga'
;
    

}

*{
    margin: 0px;
}
body {
  font-family: "inter";
}

/* Sección Hero */
.hero {

  height: 100vh;
  background-image: url("../IMG/img2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  font-family: "lady";
  src: url(../fonts/GrandSlang-Roman.woff2);

    }

.hero-title {
    
    font-size: 80px;
    color: transparent;               
    -webkit-text-stroke: 1px #ffffff;  
    text-stroke: 1px #ffffff;
    line-height: 1;
    text-transform: uppercase;
}

.subtitle {
    
    font-size: 50px;
    display: block;
    margin-top: 10px;
    color: hsl(0, 0%, 100%);          
    -webkit-text-stroke: 0;   
    text-stroke: 0;     
    text-transform: uppercase;      
}

/* Sección Amarilla */
.seccion-amarilla {
    min-height: 50vh;
    background-image: url('../img/fondo1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.seccion-content {
    max-width: 800px;
    text-align: center;
}

.seccion-titulo {
    font-family: 'lady', sans-serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.seccion-texto {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

/* Sección con Imagen */
.seccion-imagen {
    height: 80vh;
    background-image: url("../img/img1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.texto-overlay {
    font-family: 'gaga', sans-serif;
    font-size: 38px;
    color: rgb(255, 238, 2);
    text-align: center;

}

/* Sección Azul */
.seccion-azul {
    background-image: url('../img/fondo2.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.texto-principal {
    font-family: 'gaga', sans-serif;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.5;
}

.galeria {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.galeria-item {
    width: 100%;
    aspect-ratio: 1 / .6;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}