/* GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f5f5f3;
}
h1, h2, .nav-title, .notas-titulo {
    font-family: "Bree Serif", serif;
    font-weight: 400;
    font-style: normal;
}
p {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}
a, .notas-medio, .notas-fecha {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
}
ul {
    list-style: none;
}

/* HEADER */


header {
    align-items: center;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15vh;
    text-align: center;
}
.nav-bar {
    align-items: center;
    background-color: #185e77;
    box-shadow: 0 0 5px 1px rgb(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
}
.nav-title {
    font-size: 2rem;
    text-transform: none;
}
.nav-bar nav ul {
    display: flex;
    gap: 1rem;
}
.nav-title, .nav-bar nav ul li a {
    color: #f5f5f3;
}
.foto-perfil {
    width: 80vw;
}
.txt-presentacion {
    padding: 2rem;
}
.txt-presentacion h1 {
    margin-bottom: 1vh;
}

/* MAIN */

.tarjeta-notas, .tarjeta-podcast {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.tarjeta-notas {
    background-color: #185e77;
    color: #f5f5f3;
}
.tarjeta-podcast {
    background-color: #71c2dd;
    color: #1e293b;
}
.tarjeta-btn {
    background-color: #f5f5f3;
    border-radius: 5rem;
    box-shadow: 0 0 5px 1px rgb(0, 0, 0, 0.1);
    color: #1e293b;
    margin: 1rem;
    padding: 1rem;
    width: 60vw;
}

/* FOOTER */

footer {
    background-color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 8vh;
}
footer nav {
    margin: 1rem;
}
footer nav ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
footer nav ul a {
    color: #f5f5f3;
}

/* ----- ESTILOS SOBRE MI ----- */

.sobremi-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}
.sobremi-main h1 {
    margin-bottom: 1rem;
}
.bio-txt p {
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.bio-formacion h2 {
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
}
.bio-formacion p {
    margin-bottom: 1rem;
}

/* ----- ESTILOS NOTAS ----- */

.notas-main {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}
.notas-tarjeta h2 {
    margin-top: 0.5rem;
}
.notas-tarjeta a {
    color: #1e293b;
    text-decoration: underline;
    text-transform: none;
}
.notas-medio, .notas-fecha {
    text-transform: none;
}
.notas-medio {
    background-color: #71c2dd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 0.4rem 0.8rem 0.4rem 0.4rem;
}

/* ----- ESTILOS PODCAST ----- */

.podcast-main {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}
.podcast-presentacion {
    line-height: 1.5rem;
}
.podcast-presentacion a {
    box-shadow: 0 0 0 0;
    color: #185e77;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    text-transform: none;
}
.podcast-main iframe {
    border: 0;
}

/* MEDIA QUERIES */

@media (min-width: 768px) {

    /* GENERAL */

    nav ul li a {
        font-size: 0.8rem;
    }
    
    /* HEADER */

    header {
        flex-direction: row;
        align-items: center;
        margin-top: 5rem;
        padding-top: 0;
    }
    .nav-bar {
        flex-direction: row;
        justify-content: space-between;
        left: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .nav-title {
        font-size: 1.5rem;
    }
    .foto-perfil {
        margin-bottom: 1rem;
        width: 30vw;
    }
    .txt-presentacion {
        padding: 5rem;
    }

    /* MAIN */

    main {
        display: flex;
    }
    .tarjeta-notas, .tarjeta-podcast {
        flex: 1;
        padding-left: 4rem;
        padding-right: 4rem;
        width: 50%;
    }
    .tarjeta-btn {
        width: 30vw;
    }
    .tarjeta-btn:hover {
        background-color: #1e293b;
        color: #f5f5f3;
    }

    /* ----- ESTILOS SOBRE MI ----- */
    
    .sobremi-main {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding: 2rem;
    }

    /* ----- ESTILOS NOTAS ----- */

    .notas-main {
        padding: 4rem 10rem;
    }

    /* ----- ESTILOS PODCAST ----- */

    .podcast-main {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-around;
    }
    .podcast-presentacion {
        flex: 2;
    }
    .podcast-main iframe {
        flex: 3;
    }
}