/* Fonts */
@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-VariableFont_wght.ttf);
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-Italic-VariableFont_wght.ttf);
    font-display: swap;
    font-style: italic;
}
@font-face {
    font-family: 'Caveat';
    src: url(fonts/Caveat-VariableFont_wght.ttf);
    font-display: swap;
}


body {
    background-color: #efe7d6;
}
.scroll-smooth {
    scroll-behavior: smooth;
}
.unselectable {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.wrapper {
    display: flex;
    flex-flow: column;
    gap: 16px;
    width: 80%;
    max-width: 700px;
    margin: 64px auto;
    margin-top: 24px;
}
.bold {
    font-weight: 700;
}
.semi-bold {
    font-weight: 600;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    color: #545559;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 6px 0 0 0;
}
p, span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin: 0;
}
hr {
    border-top: 1px solid #545559;
}


.scripture {
    font-style: italic;
    color: #006770;
}
.reference {
    font-style: italic;
}
.scripture-box {
    display: flex;
    flex-flow: column;
    gap: 12px;
    padding: 14px 20px;
    margin-bottom: 18px;
    border-radius: 12px;
    background-color: aliceblue;
}


.profile-img {
    aspect-ratio: 1 / 1;
    width: 200px;
    object-fit: cover;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}
.address-bar {
    display: flex;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}
.address-bar span:first-child {
    margin-right: auto;
}
.quote {
    display: flex;
    flex-flow: column;
    gap: 12px;
    width: 60%;
    margin: 0 auto;
}
.prophecy {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.prophecy > span {
    font-family: 'Caveat', sans-serif;
    font-size: 1.25rem;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid;
}
.footer span:first-child {
    font-family: 'Montserrat', sans-serif;
    color: #545559;
    font-size: 0.9rem;
    flex-basis: 100%;
    text-align: center;
}
.footer .icon-wrappers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.footer .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    padding: 8px;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #545559;
    overflow: hidden;
    transition: all 0.15s ease;
}
.icon > img {
    width: 100%;
    height: auto;
}
.icon:hover {
    transform: scale(1.2);
}


/* Media Queries */
@media only screen and (max-width: 768px) {
    .wrapper {
        width: 90%;
    }
    .quote {
        width: 80%;
    }
}