/* Tipografía personalizada */
@font-face {
font-family: 'Snell BT';
src: url('Snell-BT-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: 'Snell BT', serif;
}
/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra icono y título en la pantalla */
    gap: 10px; /* Espacio entre icono y título */
    padding: 20px;
    font-family: 'Snell BT', serif; /* Igual que el body */
    width: 70%; /* Ocupa el 70% del ancho de la pantalla */
    margin: 0 auto; /* Centra el header horizontalmente */
}

.icono {
    width: 120px;
    height: auto;
}

.titulo {
    font-size: 90px;
    letter-spacing: 2px;
    color: #F5CF27;
    text-align: left; /* Mantiene el texto junto al icono */
    flex: none;
}
/* IMAGEN PRINCIPAL */
.hero {
    margin-top: 40px;
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center; /* Centra la imagen verticalmente dentro del contenedor */
}

.imagen-principal {
    width: 60%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Garantiza que esté centrada */
}

/* BOTÓN CENTRAL */
.boton-contenedor {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 120px;

}

.boton {
    padding: 5px 40px;
    background: white;
    color: #F5CF27;
    text-decoration: none;
    font-size: 80px;
    border-radius: 15px;
    border: 10px solid #F5CF27; /* Contorno de color naranja y grosor 4px */

}

/* VIDEOS */
.videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 50px 0;
    margin-top: 50px;
}

/* Eliminamos width y height de .video para que el iframe use estilos inline responsivos */
.video {
    border: none;
}


/* OTRAS EDICIONES */
.otras-ediciones {
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 60px;
    color: #F5CF27;
    border: 20px solid #F5CF27;
}

.carteles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    color: #F5CF27;
    margin-bottom: 60px;
}

.cartel {
    width: 28%;
    min-width: 220px;
    height: auto;
}

/* Contacto email */
.contacto {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
margin-top: 60px;
margin-bottom: 100px;
}
.contacto img {
width: 50px;
height: 50px;
}
.contacto a {
text-decoration: none;
color: #F5CF27;
font-size: 25px;
font-weight: bold;
}

/* ============================= */
/*   RESPONSIVE DESIGN            */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {
    .imagen-principal,
    .video {
        width: 85%;
    }
    .cartel {
        width: 30%;
    }
}

/* Móviles */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    .icono {
        width: 50px;
    }
    .titulo {
        font-size: 26px;
    }
    .imagen-principal,
    .video {
        width: 95%;
    }
    .video {
        height: 250px;
    }
    .carteles {
        flex-direction: column;
        gap: 25px;
    }
    .cartel {
        width: 70%;
        margin: 0 auto;
    }
}

