/* Estilos para la página de biografía */
.bio-container {
    width: 80%;
    max-width: 960px;
    margin: 60px auto; /* Ajusta el margen superior para evitar solapamiento con el header fijo */
    padding: 20px;
    padding-left: 30px;
   
    border-radius: 8px;
    line-height: 1.6;
    color: #333;
    font-family: "Montserrat";
}

.bio-intro h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Montserrat";
}

.bio-intro p {
    font-size: 1.1em;
    margin-bottom: 30px;
    font-family: "Montserrat";
}

.bio-image {
    text-align: center;
    margin-bottom: 30px;
}

.bio-image img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Podemos añadir estilos para otras secciones aquí */

/* Estilos generales del footer */
footer {
    /* background-color: #f8f8f8; */
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 40px;
    width: 100vw;
    font-family: "Montserrat";
    border-radius: 0;
}

.social-links {
    text-align: center;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    vertical-align: middle;
}

.location-info p {
    font-size: 1em;
    color: #777;
    margin-bottom: 5px;
}

.contact-link {
    text-align: center;
    margin-bottom: 10px;
    display: flex; /* Convertimos el contenedor en un flex container */
    flex-direction: column; /* Apilamos los elementos en pantallas pequeñas (por defecto) */
    align-items: center; /* Centramos los elementos horizontalmente en la disposición vertical */
}

.contact-link a {
    margin: 5px 0;
    color: #333;
    text-decoration: none;
}

.contact-link a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 1em;
    color: #555;
    margin-top: 15px;
}

/* Media query para pantallas medianas y grandes (768px de ancho o más) */
@media (min-width: 768px) {
    .contact-link {
        flex-direction: row; /* Mostramos los elementos en fila */
        justify-content: center; /* Centramos los elementos horizontalmente */
        align-items: center; /* Centramos verticalmente si fuera necesario */
    }

    .contact-link a {
        margin: 0 15px; /* Espacio horizontal entre los enlaces */
    }
}