@font-face {
    font-family: 'dtmf';
    src: url(../fonts/dtmf.woff2);
}
@font-face {
    font-family: 'inter';
    src: url(../fonts/Inter.woff2);
}

h1{
    font-family: 'dtmf';

}
*{
    margin: 0px;
}
body{
    font-family: 'inter';
}
/* Sección Hero */
.hero {

  height: 100vh;
  background-image: url("../img/seccion-01-foto-bad-bunny.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
hero-content {
    font-family: 'DTMF', sans-serif;
    text-align: center;
  
}

.hero-title {
    
    font-size: 80px;
    color: transparent;               
    -webkit-text-stroke: 1px #FFD700;  
    text-stroke: 1px #FFD700;
    line-height: 1;
    text-transform: uppercase;
}

.subtitle {
    
    font-size: 50px;
    display: block;
    margin-top: 10px;
    color: #FFD700;          
    -webkit-text-stroke: 0;   
    text-stroke: 0;     
    text-transform: uppercase;      
}
/* Sección Amarilla */
.seccion-amarilla {
    min-height: 50vh;
    background-image: url('../img/seccion-02-fondo-amarillo.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: 'DTMF', sans-serif;
    font-size: 48px;
    color: #0066CC;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.seccion-texto {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #0066CC;
    line-height: 1.6;
}
/* Sección con Imagen */
.seccion-imagen {
    height: 80vh;
    background-image: url("../img/seccion-03-bad-bunny.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.texto-overlay {
    font-family: 'dtmf', sans-serif;
    font-size: 38px;
    color: white;
    text-align: center;

}

/* Sección Azul */
.seccion-azul {
    background-image: url('../img/seccion-04-fondo-azul.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.texto-principal {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #FFD700;
    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%;

    /* Responsive Design */

/* Tablets y pantallas medianas (768px y menos) */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
    
    .subtitle {
        font-size: 35px;
    }
    
    .seccion-titulo {
        font-size: 36px;
    }
    
    .seccion-texto {
        font-size: 16px;
    }
    
    .texto-overlay {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .texto-principal {
        font-size: 22px;
    }
}
