@import url('https://fonts.googleapis.com/css2?family=Khula:wght@600;700&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gudea:ital@1&display=swap');
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html
{
    scroll-behavior: smooth;
}
:root
{
    --primary-black: #222222;
    --primary-white: #FFFFFF;
    --primary-grey: rgb(187, 187, 187);
    --off-white: #F5F5F5;
    --light-purple: rgb(253, 240, 242);
    --dark-purple: #770012;
    --middle-purple: #D4A6AD;
    /* --primary-font: 'Poppins', sans-serif; */
    --secondary-font: 'Gilroy', sans-serif;
    --transition: all 0.4s ease-in-out;
    --primary-font: 'Gilroy', sans-serif;
    --teratury-font: 'Gudea', sans-serif;
}
body
{
    background: var(--primary-black);
    color: var(--primary-white);
}
.section-center 
{
    width: 90vw;
    margin: 0 auto;
}
.btn 
{
    padding: 1rem;
    width: 300px;
    border-radius: 0;
    cursor: pointer;
    background: #3F3F3F;
    color: #FEF7DC;;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    display: inline-block;
    transform: translateX();
    border-style: none;
    letter-spacing: 0.5px;
    border-radius: 1rem;
}
i {
    color: #FEF7DC;;
    /* width: 35px; */
    font-size: 25px;
    margin-left: 20px;
    transform: rotateZ(320deg);
}
.navbar
{
    width: 100vw;
    height: 10vh;
    background: var(--primary-black);
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: fixed;
    top: 0;
    /* left: 4.5vw; */
    /* margin: 0 5vw; */
    /* margin: 0 5vw; */
    z-index: 2000;
    transition: var(--transition);
    /* background: transparent; */
}
.nav-links {
    display: none;
}
.navbar-logo 
{
    align-self: center;
    font-size: 26px;
    margin-left: 1rem;
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: bold;
    color: #A19882;
    transition: var(--transition);
}
.navbar-logo-hide
{
    transition: all 1s ease;
    opacity: 0;
}
.navbar-icon
{
    place-self: center;
    padding: 0.25rem;
    margin-right: 1.2rem;
    color: #A19882;
}
.navbar-icon-top-line
{
    width: 33px;
    height: 4px;
    background-color:var(--primary-white);
    margin-top: 9px;
    border-radius: 2px;
    transition: var(--transition);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.navbar-icon-bottom-line
{
    width: 33px;
    height: 4px;
    background-color: #A19882;
    margin-top: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
    border-radius: 2px;
}
.navbar-icon-top-close
{   
    transform: rotate(45deg) translate(5%, 50%);
    transition: var(--transition);
}
.navbar-icon-bottom-close
{   
    transform: rotate(-45deg) translate(0, -50%);
    margin: 0;
    transition: var(--transition);
}
@media screen and (min-width: 1170px) {
    .navbar {
        width: 100vw;
        height: 15vh;
        margin: 0;
        background: transparent;
        display: grid;
        grid-template-columns: auto 1fr;
        justify-items: flex-end;
    }
    .navbar-logo 
    {
        margin-left: 2rem;
    }
    .navbar-icon {
        display: none;
    }
    .nav-links li {
        align-self: center;
        justify-self: center;
        transition: var(--transition);
    }
    .nav-links li:hover {
        transform: scale(1.2);
    }
    .nav-links li a{
        text-decoration: none;
        font-size: 20px;
        color: #A19882;
        letter-spacing: 1px;
        padding: 5px;
    }
    #home {
        color: var(--primary-grey);
        box-shadow: 0 0 5px var(--primary-grey);
        padding: 5px;
        border-radius: 4px;
    }
    .nav-links li a:hover {
        color: var(--primary-grey);
        box-shadow: 0 0 5px var(--primary-white);
        padding: 5px;
        border-radius: 4px;
    }
    .nav-links {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 2rem;
        margin-right: 5.3rem;
        font-family: var(--primary-font);
        font-weight: 600;
        
    }
}

.sidebar
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background:var(--primary-black);
    z-index: 1000;
    display: grid;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: translateX(-100%);
}
.sidebar li a
{
    font-size: 3.1rem;
    text-decoration: none;
    font-family: var(--primary-font);
    color: #A19882;
    margin: 5px 0;
    font-weight: 600;
    line-height: 80px;
    letter-spacing: 0;
}
.sidebar li 
{
    list-style-type: none;
    text-align: center;
}
.sidebar-active
{
    transform: translateX(0);
}
.about-photo
{   
    
    /* margin-top: 10vh; */
    height: 80vh;
    background: linear-gradient(rgba(34,34,34,0.2), rgba(34,34,34,1)),url(/images/profile-pic-nobackground.png) center/cover no-repeat;
    /* background-size: 390px; */
    background-position-y: 35px;
    /* background-position-x: -15px; */
    position: relative;
}

.hello
{   
    width: 100%;
    color: #A19882;
    font-family: var(--primary-font);
    font-size: 6rem;
    font-weight: 600;
    line-height: 105px;
    position: absolute;
    bottom: 0;
    /* left: 5vw; */
    background: linear-gradient(rgba(34,34,34,0.9), rgba(34,34,34,1));
    padding-left: 5vw;
}

.about-text
{   
    margin-top: 2.5rem;
    font-size: 20px;
    font-family: var(--secondary-font);
    line-height: 30px;
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2.25rem;
    letter-spacing: 1px;
    color: #FEF7DC;
}

.photo-reel
{   
    height: 250px;
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(9, 1fr) ;
    column-gap: 2rem;
    transform: translateX(0%);
    /* border: 1px solid white; */
    overflow-x: auto;
}
.photo-reel img {
    width: 125px;
    height: 170px;
    /* background-color: blue; */
    /* border-radius: 1rem; */
    align-self: flex-end;
    object-fit: cover;
    border-radius: 0.5rem;
}
.photo-reel img:nth-child(odd) {
    align-self: flex-start;
    /* background: red; */
}

.about-text-continue
{
    font-size: 20px;
    font-family: var(--secondary-font);
    line-height: 30px;
    font-weight: 400;
    margin-top: 5rem;
    color: #FEF7DC;
}

.map-div
{   
    transform: translateX(-20%) scale(0.54);
    margin-top: -2rem;
}
.map-div path 
{
    fill: var(--primary-black);
    stroke: #FEF7DC;
    stroke-width: 1px;
    transition: var(--transition);
    
}

.experience
{
    position: relative;
    margin-top: -5rem;
    color: #FEF7DC;
}
.experience-title
{
    font-family: var(--primary-font);
    font-size: 122px;
    color: #1D1D1D;
    font-weight: 550;
    transform: translateX(3.5%);
    letter-spacing: -5px;
    position: relative;
    overflow-x: hidden;
}
.experience-layout
{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
    transform: translateY(-10%);
}
.experience-1
{
    /* position: absolute;
    top: 55%; */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
}
.experience-1 h1
{
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 40px;
    /* border: 2px solid white; */
    padding: 10px 0;  
    line-height: 40px;
}
.experience-1 h1 span{
    color: #A19882;
}
.experience-1 p 
{
    font-size: 18px;
    line-height: 30px;
    font-family: var(--secondary-font);
    text-align: left;
    color: #FEF7DC;
}
.experience-1 h2 {
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.experience-2
{
    /* position: absolute;
    top: 55%; */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
}
.experience-2 h1
{
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 40px;
    /* border: 2px solid white; */
    padding: 10px 0;  
    line-height: 40px;
}
.experience-2 h1 span{
    color: #A19882;
}
.experience-2 p 
{
    font-size: 18px;
    line-height: 30px;
    font-family: var(--primary-font);
    text-align: left;
    color: #FEF7DC;

}
.experience-2 h2 {
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

/* Volunteer */
.volunteer
{
    margin-top: 2.5rem;
    position: relative;
}
.volunteer-title
{
    font-family: var(--primary-font);
    font-size: 122px;
    color: #1D1D1D;
    font-weight: 550;
    transform: translateX(2%);
    letter-spacing: -5px;
    position: relative;
    overflow-x: hidden;
}
.volunteer-layout
{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
    transform: translateY(-7%);
}
.volunteer-1
{
    /* position: absolute;
    top: 55%; */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
}
.volunteer-1 h1
{
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 40px;
    /* border: 2px solid white; */
    padding: 10px 0;  
    line-height: 40px;
}
.volunteer-1 h1 span{
    color: #A19882;
}
.volunteer-1 p 
{
    font-size: 18px;
    line-height: 30px;
    font-family: var(--secondary-font);
    text-align: left;
    color: #FEF7DC;
}
.volunteer-1 h2 {
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.volunteer-2
{
    /* position: absolute;
    top: 55%; */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
}
.volunteer-2 h1
{
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 40px;
    /* border: 2px solid white; */
    padding: 10px 0;  
    line-height: 40px;
}
.volunteer-2 h1 span{
    color: #A19882;
}
.volunteer-2 p 
{
    font-size: 16px;
    line-height: 30px;
    font-family: var(--primary-font);
    text-align: left;
    color: #FEF7DC;
}
.volunteer-2 h2 {
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.volunteer-3
{
    /* position: absolute;
    top: 55%; */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
}
.volunteer-3 h1
{
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 40px;
    /* border: 2px solid white; */
    padding: 10px 0;  
    line-height: 40px;
}
.volunteer-3 h1 span{
    color: #A19882;
}
.volunteer-3 p 
{
    font-size: 18px;
    line-height: 30px;
    font-family: var(--secondary-font);
    text-align: left;
    color: #FEF7DC;
}
.volunteer-3 h2 {
    color: var(--primary-grey);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

/* footer */
footer
{
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    display: grid;
    place-items: center;
    margin-top: 6rem;
}
.footer-container
{
    width: 90vw;
    max-width: 1170px;
}
.footer-layout
{   
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    row-gap: 2rem;
    padding: 50px 25px;
    border-top: 2px solid var(--primary-grey);
}
.footer-title
{
    color: var(--primary-grey);
    font-size: 20px;
}
.footer-title span
{
    color: #A19882;
}
.footer-links 
{
    justify-self: start;
    margin-top: 1rem;
}
.footer-links ul li
{
    list-style: none;
    
}
.footer-links ul li a 
{   
    display: inline-block;
    text-decoration: none;
    color: #FEF7DC;;
    font-size: 25px;
    padding: 10px 0;
}
.footer-copyright
{   
    margin-top: 1rem;
    padding: 1rem 0 0 0;
    color: #A19882;
}
.footer-copyright a
{
    text-decoration: none;
    color: var(--primary-grey);
}

/* Ipad Screen */
@media screen and (min-width: 768px) {
    .about-photo {
        margin-top: 2rem;
        height: 80vh;
        width: 90vw;
        transform: translateY(0%);
        background-position-y: 10%;
        background-position-x: 100%;
        background-size: 500px;
    }
    .hello {
        font-size: 12rem;
        line-height: 15rem;
        text-align: left;
        left: 0px;
        bottom: 100px;
        background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0));
        font-weight: 500;
    }
    .about-text {
        font-size: 30px;
        line-height: 60px;
        width: 90vw;
        transform: translateY(-10%)
    }
    .map-div
    {   
        transform: translateX(0%) scale(1);
        margin: 5rem auto;
        width: 90vw;
    }
    .about-text-continue {
        font-size: 30px;
        line-height: 60px;
    }
    .experience-title
    {
        font-size: 170px;
        transform: translateX(10%);
    }
    .footer-layout {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 13rem;
        row-gap: 4rem;
    }
    .experience-1 h1, .experience-2 h1
    {
        color: #777777;
        font-size: 40px;  
        line-height: 50px;
    }
    .experience-1 p, .experience-2 p
    {
        font-size: 25px;
        line-height: 50px;
        
    }
    .experience-1 h2, .experience-2 h2{
        color: #777777;
        font-size: 18px;
        font-family: var(--secondary-font);
    }
    .volunteer-title
    {
        font-size: 170px;
        transform: translateX(10%);
    }
    .volunteer-1 h1, .volunteer-2 h1,.volunteer-3 h1
    {
        color: #777777;
        font-size: 40px;  
        line-height: 50px;
    }
    .volunteer-1 p, .volunteer-2 p, .volunteer-3 p
    {
        font-size: 25px;
        line-height: 50px;
        
    }
    .volunteer-1 h2, .volunteer-2 h2, .volunteer-3 h2{
        color: #777777;
        font-size: 18px;
        font-family: var(--secondary-font);
    }
    .footer-title {
        align-self: center;
        font-size: 2rem;
        margin-left: 2rem;
    }
    .footer-links {
        align-self: center;
    }
    .footer-links ul li a {
        font-size: 1.5rem;
        transition: var(--transition);
        letter-spacing: 2px;
    }
    .footer-links ul li a:hover {
        color: var(--primary-grey);
        transform: scale(1.1);
    }
    .footer-copyright {
        justify-self: start;
        align-self: flex-end;
        margin-left: 2rem;
        letter-spacing: 1px;
    }
}



/* desktop screen */
@media screen and (min-width: 1170px) {
    .about-photo {
        margin-top: 2rem;
        height: 80vh;
        width: 40vw;
        transform: translateY(0%);
        background-position-y: 20%;
        background-position-x: 150%;
        background-size: 550px;
    }
    .hello {
        font-size: 15rem;
        line-height: 15rem;
        text-align: left;
        left: -250px;
        bottom: 0px;
        background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0));
        font-weight: 400;
    }
    .about-text {
        font-size: 30px;
        line-height: 60px;
        width: 60vw;
        margin-top: 5rem;
    }
    .photo-reel {
        height: 80vh;
        overflow-x: scroll;
    }
    .photo-reel img {
        width: 300px;
        height: 370px;   
        transition: var(--transition);
    }
    .photo-reel img:hover {
        transform: scale(1.2);
    }
    .about-text-continue {
        font-size: 30px;
        line-height: 60px;
        width: 40vw;
        position: absolute;
        bottom: -265%;
        right: 5%;
        text-align: right;
    }
    .map-div
    {   
        transform: translateX(0%) scale(1);
        margin-top: 10rem;
        width: 80vw;
    }
    .map-div path 
    {
        fill: var(--primary-grey);
        stroke: var(--primary-black);
        stroke-width: 1px;
        transition: var(--transition);   
    }
    .experience {
        margin-top: 5rem;
        overflow: hidden;
    }
    .experience-title
    {
        font-size: 270px;
        transform: translateX(12%);
    }
    .experience-layout
    {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 4rem;
        transform: translateY(-15%);
        width: 45vw;
        margin: 0 auto;
    }
    .experience-1 h1, .experience-2 h1
    {
        color: #777777;
        font-size: 40px;  
        line-height: 50px;
    }
    .experience-1 p, .experience-2 p
    {
        font-size: 22px;
        line-height: 40px;
        
    }
    .experience-1 h2, .experience-2 h2{
        color: #777777;
        font-size: 18px;
    }
    .volunteer {
        margin-top: 5rem;
        overflow-x: hidden;
    }
    .volunteer-title
    {
        font-size: 270px;
        transform: translateX(10%);
    }
    .volunteer-layout
    {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 4rem;
        transform: translateY(-15%);
        width: 45vw;
        margin: 0 auto;
    }
    .volunteer-1 h1, .volunteer-2 h1, .volunteer-3 h1
    {
        color: #777777;
        font-size: 40px;  
        line-height: 50px;
    }
    .volunteer-1 p, .volunteer-2 p, .volunteer-3 p
    {
        font-size: 22px;
        line-height: 40px;
        
    }
    .volunteer-3 h2,.volunteer-2 h2, .volunteer-1 h2 {
        color: #777777;
        font-family: var(--primary-font);
        font-size: 18px;
    }
    .btn 
    {
        margin-left: 0;
        padding: 2rem;
        width: 350px;
        transform: translateX(108%);
        letter-spacing: 1px;
        font-size: 18px;
        border-radius: 0;
    }
    i {
        color: var(--primary-white);
        /* width: 35px; */
        font-size: 30px;
        margin-left: 20px;
        transform: rotateZ(320deg);
    }
    .footer-layout {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25rem;
        row-gap: 4rem;
    }
    .footer-title {
        align-self: center;
        font-size: 3rem;
        margin-left: 5rem;
    }
    .footer-links {
        align-self: center;
    }
    .footer-links ul li a {
        font-size: 2.5rem;
        transition: var(--transition);
    }
    .footer-links ul li a:hover {
        color: var(--primary-grey);
        transform: scale(1.1);
    }
    .footer-copyright {
        justify-self: center;
        align-self: flex-end;
        margin-left: 5rem;
    }
}