@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
.hero{
    background: radial-gradient(circle, hsla(270, 47%, 24%, 1) 0%, hsla(205, 94%, 12%, 1) 100%);
    width: 100%;
    height: 100vh;
    position: relative; 
}

.hero header{
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
    padding: 1rem 6vw;  
    position: sticky;
    top: 0;
    z-index: 11111;
    backdrop-filter: blur(5px);
}

header .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

header .logo h1{
    color: var(--white);
}

.hero header nav{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.hero header nav a{
    color: var(--white);
    text-decoration: none;
    opacity: .7;
}

.hero header nav a.active, .hero header nav a:hover{
    font-weight: 600;
    opacity: 1;
}

.hero header .cta{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.hero header .cta i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    background-color: var(--secondary-color-500);
    cursor: pointer;
    transition: all .3s ease;
}

.hero header .cta i:active{
    transform: scale(0.9);
}


.bible-verse-widget{
    width: 100%;
    position: relative;
    min-height: 60vh;   
    padding-inline: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bible-verse-widget::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    top: -15%; 
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.6)
    );
    filter: blur(3px);
    pointer-events: none;
}

.bible-verse-widget h3{
    font-size: 1rem;
    font-weight: 600;
    color: #c82f67;
    margin-bottom: 1rem;
}

.bible-verse-widget #verse-text{
    padding-block: 4rem;
    width: 100%;
    font-size: 64px;
    letter-spacing: -1px;
    line-height: 3.9rem;  
    text-align:center;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /*-webkit-text-fill-color: transparent;*/
    /*-webkit-text-stroke: 1px #6d6e68;*/
}

.bible-verse-widget .cta{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: .7rem;
}

.bible-verse-widget .cta #new-verse-btn{
    background: var(--secondary-color-500);
    padding: .9rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    color: #fff;
    border: none;
}

.bible-verse-widget .cta #share-verse-btn{
    background: var(--secondary-color);
    padding: .9rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    color: #fff;
}

.bible-verse-widget .cta #new-verse-btn:active{
    background: var(--secondary-color);
    transform: scale(0.9);
}

.bible-verse-widget .cta #share-verse-btn:active{
    background: var(--white);
    color: var(--black);
    transform: scale(0.9);
}

.board{
    position: relative;
    height: unset; 
    padding: 5vh 10vw;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.mission, .vision{
    width: 100%; 
    display: flex; 
    align-items: stretch;
    justify-content: center; 
    position: relative;  
    height: 40vh;
    gap: 10px;
}  

.mission h1{
    flex: 1;
    height: 100%;
    font-size: 3rem;
    line-height: 1.3rem;
    font-weight: 700;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    border: .6px solid #bdb8b8;
}

.mission .text-content{
    position: relative;
    flex: 2; 
    height: 100%;
    background: url(../images/placeholder/8m-women-strike-movement.jpg) #211f1f;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    border-radius: 20px;
    padding: 2rem;   
    display: flex;
    align-items: center;
    border: .6px solid #bdb8b8;
}

.mission img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

.mission .text-content p{
    width: 48%;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #bdb8b8;
}

.vision{
    flex-direction: row-reverse;
}

.vision h1{
    flex: 1;
    height: 100%;
    font-size: 3rem;
    line-height: 1.3rem;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    border: .6px solid #bdb8b8;
    font-weight: 700;
}

.vision h1 span, .mission h1 span{
    font-size: 2rem;
    font-weight: 300;
}

.vision .text-content{
    position: relative;
    flex: 2; 
    height: 100%;
    background: url(../images/placeholder/side-view-worried-man-holding-pencil.jpg) #211f1f;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    border-radius: 20px;
    padding: 2rem;   
    display: flex;
    align-items: center;
    border: .6px solid #bdb8b8;
}

.vision .text-content p{
    margin-left: 25%;
}

.team{
    width: 100%; 
    height: 120vh;
    display: flex; 
    flex-direction: column; 
    padding: 7vh 10vw;
    position: relative;  
}

.team .text h3{
    font-size: 2.8rem;
    line-height: 2.6rem;
    color: #bdb8b8;
    font-weight: 400;
    margin-bottom: 1rem;
}

.team .team-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; 
    align-items: center; 
    margin-top: 1rem;
}

.team .team-cards .team-card{
    background-color: #1e1d1d;
    height: 80%;
    border-radius: 10px; 
    padding: .7rem;
    display: flex;
    flex-direction: column;  
    transition: all .3s ease-in-out;
    cursor: pointer;
    border: .6px solid #bdb8b85a;
    position: relative;
}

.team .team-cards .team-card img{
    width: 100%;
    height: 72%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px; 
    transition: all .3s ease-in-out;
    margin-bottom: 2rem;
}

.team .team-cards .team-card:hover img{
    transform: scale(1.09);
    border-radius: 10px 10px 0 0;
}

.team .team-cards .team-card h4{
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin-bottom: .3rem;
    font-weight: 700;
    transition: .3s ease-in-out;
}

.team .team-cards .team-card h4:hover{
    color: #c82f67;
}

.team .team-cards .team-card p{
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #bdb8b8;
    flex: 1;
}

.getintouch{
    width: 100%;
    height: 140vh;
    background: url(../images/6671430_3376510.jpg);
    background-position: center;
    background-size: 100%;  
    position: relative; 
    padding: 10vw 8vw 0 8vw;
    display: flex;
    align-items: stretch; 
}

.getintouch .text, .getintouch .contact-form{
    flex: 1;
    position: relative;
}

.getintouch .text .header, .team .text .header{
    font-size: 1rem; 
    font-weight: 500;
    margin-bottom: 2rem;
    color: #a82656;
    text-transform: uppercase;
}

.getintouch .text h3{
    font-size: 2.3rem;
    line-height: 2.6rem;
    color: #bdb8b8;
    font-weight: 600;
    margin-bottom: 1rem;
    width: 75%;
}

.getintouch .text button, .contact-form button{ 
    border: none;
    outline: none;
    background: #a82656;
    color: var(--white);
    border-radius: 25px;
    cursor: pointer; 
    display: flex;
    align-items: center; 
    justify-content:space-between;
    padding: .3rem .3rem .3rem 1.5rem;
    width: 40%;
    height: 50px;
    position: relative;
}

.getintouch .text button i, .contact-form button i{
    background-color: #000000;
    height: 100%;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.getintouch .text .bottom{
    position: absolute;
    bottom: 25%;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 1.5rem;
}

.getintouch .text .bottom .card{
    flex: 1;
}

.getintouch .text .bottom .card:not(:first-of-type){
    border-left: 1px solid var(--white);
    padding-left: 1.5rem;
}

.getintouch .text .bottom .card h4{
    font-weight: 800;
}

.getintouch .text .bottom .card p{
    font-size: 13px;
    font-weight: 600;
}

.getintouch .contact-form{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 3rem;
    background-color: #000000;
    height: 80%;
    border-radius: 20px;
    padding: 3rem;
}

.getintouch .contact-form header h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.getintouch .contact-form span{
    color: #a82656;
}

.getintouch .contact-form .form-control{
    display: flex;
    gap: 1.5rem;
    margin-block: 2rem;
}

.getintouch .contact-form .form-group{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.getintouch .contact-form .form-group label{
    font-size: 0.9rem;
    font-weight: 600;
    opacity: .6;
}

.getintouch .contact-form .form-group input, .getintouch .contact-form .form-group textarea{
    padding: .8rem 1.3rem;
    background-color: #3c3b3bc1;
    border: .3px solid #631c36a3;
    border-radius: 10px;
}

.getintouch .contact-form .form-group textarea{
    resize: none;
    min-height: 130px;
}

