/* FORCED YOUTUBE LINK */

.forced-youtube-link {
    display: block;
    position: absolute;
    width: 100vw;
    height: 100vh;
}

/* ABOUT */

.about-grid {
    display: grid;
    margin: 2em auto;
    /* width: 80%; */
    /* max-height: 60vh; */
    max-width: fit-content;
    max-height: fit-content;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 1em;
}

.image-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-row: 1 / -1;
    z-index: -1;
}

.framed-image {
    position: relative;
    width: 15em;
    height: 19em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5em;
}

.Jesus {
    position: absolute;
    max-width: 70%;
    max-height: 90%;
    margin-top: 1em;
}

.frame {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
}

.Jesus-description {
    font-size: 1em;
    margin-top: 0.2em;
    text-align: center;
}

.about-title {
    padding: 1em;
    grid-column: 2 / -1;
    grid-row: 1 / 2;
    font-size: 1.4em;
}

.about-info {
    grid-column: 2 / -1;
    grid-row: 2 / -1;
    display: flex;
    justify-content: space-evenly;
}

.experience {
    display: flex;
    flex-direction: column;
}

.experience-logo {
    max-height: 8em;
    margin: 1em auto 0 auto;
}

.experience-caption {
    margin: 0 0.5em;
    text-align: center;
    text-justify: auto;
    font-style: oblique;
    font-size: 1.1em;
}

.record {
    display: flex;
    flex-direction: column;
}

.record-logo {
    max-height: 8em;
    margin: 1em auto 0 auto;
}

.record-caption {
    margin: 0 0.5em;
    text-align: center;
    text-justify: auto;
    font-style: oblique;
    font-size: 1.1em;
}

.champion {
    display: flex;
    flex-direction: column;
}

.champion-logo {
    max-height: 8em;
    margin: 1em auto 0 auto;
}

.champion-caption {
    margin: 0 0.5em;
    text-align: center;
    text-justify: auto;
    font-style: oblique;
    font-size: 1.1em;
}

/* SOCIAL */

.social {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 2em auto;
    width: 80%;
}

.youtube-indicator {
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 0.5em;
}

.curved-arrow-image {
    max-height: 5.5em;
    max-width: 5.5em;
}

.youtube-caption {
    font-size: 1.4em;
    text-align: center;
}

.youtube {
    position: relative;
    width: 10em;
    height: 10em;
}

.youtube-logo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 250ms;
    border-radius: 50%;
    z-index: 1;
}

.youtube-overlay:hover {
    opacity: 1;
}

.youtube-overlay:hover > .youtube-title {
    transform: translateY(0);
}

.youtube-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    transform: translateY(0.5em);
    transition: transform 250ms;
}

/* PHONE LAYOUT */

@media only screen and (max-width: 700px) {
    /* MENU */

    header {
        height: 5em;
    }
    
    .menu {
        height: 5em; /* same as the height of header */
        justify-content: space-between;
    }
    
    .menu ul li {
        line-height: 5em; /* same as the height of header */
        display: none;
    }

    .brand-title {
        display: inline-block;
    }

    .toggle-button {
        display: flex;
    }

    /* ABOUT */

    .about-grid {
        max-width: 80%;
        grid-gap: 0.2em;
        grid-template-rows: repeat(2, 1fr);
        margin-bottom: 0;
    }
    
    .framed-image {
        max-width: 8em;
        max-height: 10em;
        margin-top: 0;
    }
    
    .Jesus {
        max-width: 100%;
        max-height: 90%;
    }
    
    .frame {
        max-width: 100%;
        max-height: 100%;
    }
    
    .Jesus-description {
        font-size: 0.5em;
        margin-top: 0.2em;
    }

    .about-title {
        padding: 0.5em;
        font-size: 0.8em;
    }

    .experience-logo {
        max-height: 3em;
        margin: 0 auto;
    }

    .experience-caption {
        margin: 0 0.2em;
        font-size: 0.6em;
    }

    .record-logo {
        max-height: 3em;
        margin: 0 auto;
    }

    .record-caption {
        margin: 0 0.2em;
        font-size: 0.6em;
    }

    .champion-logo {
        max-height: 3em;
        margin: 0 auto;
    }

    .champion-caption {
        margin: 0 0.2em;
        font-size: 0.6em;
    }

    /* SOCIAL */

    .social {
        margin-top: 1.5em;
    }

    .youtube-indicator {
        margin-right: 0.5em;
    }

    .curved-arrow-image {
        max-height: 2.5em;
        max-width: 2.5em;
    }

    .youtube-caption {
        font-size: 0.5em;
    }

    .youtube {
        width: 5em;
        height: 5em;
    }

    .youtube-title {
        font-size: 1em;
    }
}

@media only screen and (max-width:414px) {
    header {
        height: 4em;
    }
    
    .menu {
        height: 4em;
    }
    
    .menu ul li {
        line-height: 4em; /* same as the height of header */
    }
}