@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    font-family: 'Roboto',sans-serif;
    scrollbar-width: 12px;
}

*::-webkit-scrollbar {
    width: 8px;
}

.typing-container{
    min-height:100px;    
    height: 100%;
    display:flex;
    align-items: center;
    flex-wrap: wrap;
}

*::-webkit-scrollbar-track {
    background: white;       
}

*::-webkit-scrollbar-thumb {
    background-color: #0e162b;    
    border-radius: 1px;       
}

.logoSmall{
    display:none;
}

.footerLogoSmall{
    display:none;
}

html{
    scroll-behavior: smooth;    
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.container{
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
}

.row{
    width:100%;
    max-width: 1400px;
}

.fullPageWidth{
    max-width: 100vw;
}

.sectionContent{
    display:flex;
    align-items: center;
    flex-direction: column;
    padding:0 30px;
    line-height: 1.5;
    margin-top: 6%;
}

.sectionHeader{    
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    color:#2DC55F;
}

.sectionDescription{
    font-weight: 400;
    text-align: center;
    line-height: 30px;
    padding-top: 10px;
    font-size: 20px;
    width:100%;
    max-width: 1000px;
    text-size-adjust: 100%;
    
}

button{
    cursor:pointer;
}


.defaultFontSize{
    font-size: 18px;
}

/**************************************NAVIGATION SECTION************************************************/

.contactMenu{
    background-color: #0e162b;
    color:white;
    font-weight: bold;
    display: Flex;    
    justify-content: space-around;
    align-items: center;
    height:35px;
}

.contactContainer{
    display: flex;
    max-width: 300px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin:5px;
}

.contactLogos{
    background-color: #FAF9F6;
    height:25px;
    border-radius: 5px;
    margin-right: 5px;    
}

.contactContent{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width:100%;
    max-width: 700px;
}

nav{
    background-color: white;
    position:fixed;    
    width:100%;
    top:0;
    z-index: 100;
}

.navigationContent{
    height:100px;
    padding:0 20px;
    display:flex;
    justify-content: space-between;
    align-items: center;    
}

.logoContainer{
    display: flex;
}

.logo{    
    max-width:150px;
    max-height:150px;      
}

.logo:hover{
    cursor: pointer;
}

.navigationLink{
    padding:24px;
    font-size: 16px;
    color: #2DC55F;
    font-weight: bold;
    transition:ease 200ms;
    -webkit-transition: ease 200ms;
}

.navigationLink:hover{
    color:black;
}

.customContact{
    /* background-color: #ff8b07; */
    /* background-color: #ffcc00; */
    background-color:#0e162b;
    color:white;
    font-weight: bold;
    padding:19.2px;
    /* border-radius: 32px; */
    border-radius: 12px;
    transition:ease 200ms;
    -webkit-transition: ease 200ms;
}

.customContact:hover{
    background-color: rgb(0,166,147,.8);
    color:white;
}

.btn__menu{
    background-color: transparent;
    text-align:center;
    border:none;
    color:#2DC55F;
    display: none;
}

.barsContainer{
    display:flex;
    justify-content: end;
    align-items: end;
    /* align-items: center; */
    width:150px;
    display:none;
} 

.fa-bars{
    font-size: 40px;
}

.menu__backdrop{
    position:absolute;
    background-color: #2DC55F;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    z-index:100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*you cannot animate a display none property so you should use visibility and opacity properties
    instead to make sure these elements exist in the DOM*/
    /*display: none;*/
    visibility: hidden;
    opacity:0;
    transition:all 300ms ease;
    -webkit-transition: all 300ms ease;
    max-width: 60%;
}

.menu--open .menu__backdrop{
    display:flex;
    visibility: visible;
    opacity: 1;
    transform:translateX(70%);
    -webkit-transform: translateX(70%);
    position: fixed;
}
/*the menu is covered for the whole page and no overflow is shown when you try to scroll*/
.menu--open{
    max-height:100vh;
}

.menu__links{
    display:flex;
    flex-direction: column;
    align-items: center;   
    font-size: 20px; 
}
.menu__list{
    padding:32px 0;
}

.menu__link{
    color:white;
    transition: ease-out 200ms;
    -webkit-transition: ease-out 200ms;
}

.menu__link:hover{
    font-weight: bold;
}

.btn__menu--close{
    position:absolute;
    right:20px;
    top:10px;
    padding:8px;
    color:white;
}

.menu--open .aboutMeLink{
    animation:fade-in 400ms 100ms backwards;
}

.menu--open .experienceLink{
    animation:fade-in 600ms 300ms backwards;
}

.menu--open .projectsLink{
    animation:fade-in 800ms 500ms backwards;
}

.menu--open .contactLink{
    animation:fade-in 1000ms 700ms backwards;
}

/**************************************LANDING SECTION************************************************/
.landingTheme{
    width:99.6vw; 
    max-width: 100vw;
    margin-top: 130px;      
    /* height:calc(100vh - 150px);
    max-height:calc(100vh - 150px); */
}

.landingThemeContent{
    display: flex;  
    position: relative;
    height:100%;
}

.themeText{
    position: absolute;
    font-family:'Poppins';
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding-left: 20%;
    color: white;
    font-weight: bold;
    width: 100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.landingHeader{
    font-size: 50px;
    max-width: 75%;
}

.landingText{
    font-size: 20px;
    max-width: 75%;
}

.houses{
    height:calc(100vh - 130px);
    width: 100%;
    width:100vw; 
    max-width: 100vw;
    object-fit: cover;
}

@keyframes slide-in {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  
  .landingThemeContent {
    overflow: hidden; /* Ensures the hidden part of the text doesn't show up */
  }
  
  .themeText li {
    display: block;
    animation: slide-in 1s ease-out forwards;
    opacity: 0;
  }
  
  .themeText .landingHeader:nth-child(1) {
    animation-delay: 0s; /* No delay for the first two landingHeader elements */
  }
  
  .themeText .landingText:nth-child(2) {
    animation-delay: 1.5s; /* Delay for the landingText elements to start after the headers */
  }
  

/**************************************ABOUT US SECTION************************************************/
#aboutUs{
    background-image: url(../content/curved.jpg);
    background-size: cover;
}

.bothPanel{
    display:flex;
    justify-content: center;
    align-items:normal;
}

.leftPanel{
    margin-top: 30px;
    padding:0% 5%;
}

/*******************************************************SERVICES SECTION************************************/
.statusContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:10px;
}

.status{
    border-radius: 5px;
    padding:5px 20px;
    height: 50px;        
    display:flex;
    align-items: center;
    justify-content: space-around;
    color:white;
    font-weight:bold;
    margin: auto;
    background-color: #2DC55F;  
}

.statusImage{
    height:100%;
    padding-right: 10px;
}

.services{
    margin-top:50px;
}

#services{
    height:600px;
    background: linear-gradient(to top,rgba(240, 247, 250, 0.1),rgba(240, 246, 250, 0.4), rgba(240, 245, 250, 0.7), rgb(240, 244, 250));
}

.noteWrapperContainer{
    max-width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: -300px;
}

.noteWrapper{
    padding-left: 10px;
    padding-right:10px;
    display: flex; 
    justify-content: center;  
    flex-wrap: wrap;
}

.noteImages{
    display:flex;
    margin: 0 auto;    
    padding-top: 20px;
}

.noteHeader{
    text-align: center;
    color:#2DC55F;
    padding-top: 10px;
}

.noteDescription{
    text-align: center;
    height:150px;
    color:#141c3a;
    font-size: 18px;
    padding-top:20px;    
    font-weight:400;
    line-height: 27px;
}

.noteContent{
    padding:10px 10px;
    width: 32%;
    min-width: 337.5px;
    height:450px;
    background-color: white; 
    border-radius: 16px 16px;
    box-shadow: 0px 2px 5px 2px #e6ecf8;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:9px;  
}

.notePicture {
    width:100%;
    height:55%;
}


/*******************************************************GALLERY SECTION**************************************/

#gallery{
    margin-bottom: 20px;
}

.gallery {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 600px;
}

.image-container {
    display: flex;
    transition: transform 1s ease;
}


.images{
    margin: 10px;    
    object-fit: cont;
}

.image-container img {
    height: 100%;
    width:50%;
    object-fit:cover; /* Ensure the image covers the entire container without distorting aspect ratio */
}


/*******************************************************FOOTER SECTION**************************************/
footer{
    background-color: #0e162b;
    height: 300px;
    height:100%;
    margin-top: 100px;
}

.footerWrapper{
    height: 100%;
}

.footerContent{
    height:100%;
    padding:20px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footerLogo{
    width: 100px;
    height:100px;
    margin-top: -50px;
    border-radius: 20%;
}

.footerText{
    color:white;
    font-weight: bold;
    line-height: 1.5;
    padding-top: 2%;    
}

.footerNote{
    max-width:600px;
    text-align: center;
}

.footerLinks{
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkLogo{
    height:50px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: ease 300ms;
}

.linkBorder:hover .linkLogo{
    scale: 1.1;
}

.footerDescription{
    max-width:340px;
    width:100%;
}

.footerContent{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: bold;
}

.footerContactInfo{
    display:flex;
    flex-direction: column;
    justify-content: left;
    color:white;
    height:250px;
}

.footerQuickLinks{
    color:white;
    height:250px;
}

.footerLinks{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color:white;
    padding-top: 10px;
}

.footerLink{
    color:white;
    font-weight: 400;
    padding-top:10px;
    font-size: 18px;
}

.footerContacts{
    padding-top: 20px;
}

.footerContact{
    padding-top: 10px;
    display:flex;
    align-items: center;
}

.footerContactLogo{
    margin-right: 10px;
    background-color: white;
    height:25px;
    border-radius: 5px;
}

.footerNote{
    color: white;
    width:100%;
    max-width: 1400px;
}
body{
    position: relative;
}


/*****************************************MEDIA QUERIES*****************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
/***********************************************************************************************************/
@media(max-width:1503px)
{
    .gallery {       
        max-height: 500px;
    }    
}
/*****************************************************************************************/
@media(max-width:1378px)
{
    .noteContent{
        width: 48%;
        height:500px;            
    }
    .notePicture{
        height:65%;
    }
}
/*****************************************************************************************/
@media(max-width:1251px)
{
    .gallery {       
        max-height: 400px;
    }   
}
/*****************************************************************************************/
@media(max-width:1225px)
{
    .noteContent{
        width: 48%;
        height:450px;            
    }
    .notePicture{
        height:55%;
    }
}

/*****************************************************************************************/
@media(max-width:1002px)
{
    .gallery {       
        max-height: 350px;
        width:95%;
    }   

    .images{
        margin: 0px;    
        object-fit: cover;
    }
    
    .image-container img {
        height: 100%;
        width:100%;
        object-fit:cover; /* Ensure the image covers the entire container without distorting aspect ratio */
    }
}
/*****************************************************************************************/
@media(max-width:1094px){
    .swiper{
        width:98%;
        min-width:350px;
        min-height:525px;
        height:100%;
        margin:3% 1%;
    }

    .prayerSchedule{
        width:98%;
        min-width: 350px;
        min-height:525px;
        height:100%;
        border:solid 1px #E6ECF8;
        border-radius: 10px;
        padding:1%;
        /* box-shadow:  2px 5px 0px rgb(240,250,243,.7); */
        box-shadow: 0px 2px 5px 0px #e6ecf8;
        margin:3% 1%;
    }

    .bothPanel{
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .themeText{
        position: absolute;
        font-family:'Poppins';
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        padding-left: 5%;
        color: white;
        font-weight: bold;
        width: 100%;
        height:100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
}

/*****************************************************************************************/
@media(max-width:927px){

    /*********************SERVICES*********************/
    .noteContent{
        width: 98%; 
        height:600px;
    }

    .notePicture{
        height:75%;
    }

    .landingHeader{    
        max-width: 90%;
    }
    .landingText{
        max-width: 90%;
    }
}
/*****************************************************************************************/
@media(max-width:840px){
    .footerContent{
        display:flex;
        flex-direction: column;                        
    }

    .footerDescription{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:start;
        margin-top: 40px;
    }

    .footerQuickLinks{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:start;
        max-width: 340px;
        width:100%;
        max-height: 200px;
    }

    .footerContactInfo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 340px;
        max-height:200px;
        width: 100%;
    }

}

/*****************************************************************************************/

@media(max-width:861px){

    .donateLinkMobile{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        text-align: center;
        color:white;
        border: solid 2px white;
        border-radius: 30px;
        margin-top: 40px;
        padding:10px 10px;
        font-weight: 600;
        width:100%;
        max-width:350px;
    }

    .logoLarge{
        display:none;        
    }

    .footerLogoLarge{
        display:none;        
    }

   .logoSmall{
        display: block;
        position: absolute;
        left:0px;        
        top:34px;
        padding-left: 20px;        
    } 

    .footerLogoSmall{
        display: block;
        
    } 

    .navigationContent{
        display: flex;
        justify-content: start;
        justify-content: space-between;
    }

    .navigationLink{
        display:none;
    }

    .btn__menu{
        display: block;
    }

    .menu__backdrop{
        display: block;
    }

    .barsContainer{
        display:flex;
        justify-content: end;
        align-items: center;        
    }

    .highlight:not(:last-child){
        width:100%;
        margin-bottom: 24px;
    }

    .highlight__wrapper{
        flex-wrap: wrap;
    }

}

/*****************************************************************************************/
@media(max-width:781px){

    .noteContent{
        width: 98%; 
        height:450px;
    }

    .notePicture{
        height:65%;
    }

    #notes{
        margin-top: 5%;        
    }

    .landingHeader{
        font-size: 40px;
    }
    

}
/*****************************************************************************************/
@media(max-width:600px){
   .logo{
    max-width: 125px;
    max-height: 125px;
   }

   .satisfactionImage{
    height:400px;
   }

   .phoneContainer{
    justify-content: start;
    padding-left: 2%;
   }
   .emailContainer{
    justify-content: end;
    padding-right: 2%;
   }

}

/*****************************************************************************************/
@media(max-width:450px){
    #notes{
        padding-top: 20%;
    }

    .gallery {
        width: 95%;
        max-height: 350px;
    }
    
    .image-container {
        display: flex;
        transition: transform 1s ease;
    }
    
    .images{
        margin: 0px;    
        object-fit: cover;
    }
    
    .image-container img {
        height: 100%;
        width:100%;
        object-fit:cover; /* Ensure the image covers the entire container without distorting aspect ratio */
    }
    
    .landingHeader{
        font-size: 40px;
    }
    
    .landingText{
        font-size: 20px;
    }
    .landingTheme{
        width:100vw; 
    }

 }

/*****************************************************************************************/
@media(max-width:400px){
    .logo{
     max-width: 125px;
     max-height: 125px;
    }
 
    .satisfactionImage{
     height:300px;
    }

    .phoneContainer{
        justify-content: start;
        padding-left: 0%;
       }
       .emailContainer{
        justify-content: end;
        padding-right: 0%;
       }
 }
/*****************************************************************************************/
@media(max-width:367px){

    .gallery {
        width: 95%;
        max-height: 300px;
    }

}

