/* Estilos generales para todos los dispositivos */
body {
    font-family: 'Montserrat', sans-serif;
    background: url("https://raw.githubusercontent.com/josesampayo01/Jas-music-Record-s-Offcial-Site/main/static/images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mejorar la legibilidad */
}

h1 {
    font-size: 3em;
    color: #ff5722;
}

h2 {
    color: #ff5722;
}

p {
    line-height: 1.6;
    font-size: 1.2em;
}

.social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px; /* Espacio entre los elementos */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 2em;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #ff5722;
}

.social-links img {
    width: 40px;
    height: 40px;
    margin-right: 8px; /* Espacio entre el icono y el texto */
}

.biografia, .contacto, .generos, .videos {
    margin-top: 40px;
    text-align: left;
}

iframe {
    width: 100%;
    height: 315px;
    margin: 20px 0;
}

.logo {
    max-width: 150px;
    margin-top: 20px;
}

.contacto form {
    display: flex;
    flex-direction: column;
}

.contacto label {
    margin-bottom: 5px;
    color: #ff5722;
}

.contacto input, .contacto textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contacto button {
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.contacto button:hover {
    background-color: #e64a19;
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-links img {
        width: 30px;
        height: 30px;
        margin-right: 0;
    }

    .contact-form input, .contact-form textarea {
        max-width: 90%;
    }

    iframe {
        width: 100%;
        height: 200px;
    }

    .video-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
