
/* Gloomy Effect */
.word-art {
    font-family: 'Arial', sans-serif;
    font-size: 1.3em;
    font-weight: bold;
    color: yellow; /* Changed from maroon to yellow */
    position: relative;
    text-shadow:
      2px 2px 2px rgba(0, 0, 0, 0.5), 
      4px 4px 6px rgba(0, 0, 0, 0.3), 
      6px 6px 10px rgba(0, 0, 0, 0.2); 
}


@media (max-width: 1024px) { 
    .word-art {
        font-size: 1em;
    }
}

/* page container */
.team-container {
    position: relative;
   /*  padding: 12rem 0 1.5rem 4px;  *//* Adjust padding as needed */
    /* background: url('../../../public/images/team-photo.jpg'); */
    /* background-size: cover; /* Adjust background size property */
    background-position: top; /* Adjust background position property */ 
    background:  maroon;
    h2{
        color: #fff; /* Text color set to white */
        padding: 4rem 0 4px 4px;
    }
}
.hero-container{
    
    padding: 2rem 1rem; 
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.span-title{
    font-size: 3rem; 
    font-family: 'Montserrat', sans-serif; 
    font-style: italic;
} 

@media (max-width: 1024px)
{
    .team-container {
       margin-top: 2rem;
    }
    .hero-container{
        
        padding: 4rem 0 0 0; 
      
                
        h2{
            font-size: 1rem;
            padding: 1rem 0 10px 4px;
        }
    }
    
    .span-title{
        font-size: 1.5rem; 
    } 

}

/* Hero Section */

.hero {
   /*  background: rgba(0, 0, 0, 1) url('../../images/Menilele/IMG_20230207_141258_975.jpg') no-repeat center center/cover; */
    text-align: center;
    color: #fff;
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh;
   
}

.hero .custom-container {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    padding: 20px; /* Add padding inside container */
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    margin: 9rem 0 0 1rem;
    padding: 2rem 1rem;
    font-family: 'Montserrat', sans-serif;  
    font-weight: 900; /* Extra bold */
    font-size: 2rem;
    color: maroon; /* Maroon text color */
    background-color: rgba(255, 255, 255, 0.5); /* White with 80% transparency */
    text-shadow:
      2px 2px 2px rgba(0, 0, 0, 0.5), 
      4px 4px 6px rgba(0, 0, 0, 0.3), 
      6px 6px 10px rgba(0, 0, 0, 0.2); 
}



.hero h2 {
    font-size: 2.5rem;
    margin: 4rem 2rem 3rem 15rem; /* Add margin bottom for spacing */
    color: #fff; 
    
}

.hero .cta-buttons {
    display: flex;
    justify-content: center; /* Center buttons horizontally */
}


.hero .cta-buttons {
    margin-top: 20px;
}

.hero .btn {
    margin-top: 3rem;
    transition: all 0.3s ease-in-out;
    padding: 6px 18px;
    border: none;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 1rem;
}

.hero .btn.primary-btn {
    background-color: transparent;
    border: 2px solid #3498db;
    color: #fff;
}

.hero .btn.secondary-btn {
    background-color: transparent;
    border: 2px solid #e74c3c;
    color: #fff;
    margin-left: 10px;
}

.hero .btn.btn.primary-btn:hover{
    background-color: #e74c3c;
    border: none;
}

.hero .btn.btn.secondary-btn:hover{
    background-color:  #3498db;;
    border: none;
}


@media (max-width: 1024px)
{
    .hero h1 {
        margin: 2rem 0 3rem 0;;
        padding: 2rem 1rem;
        font-size: 2rem;
    
    }
   
    .hero h2 {
        font-size: 2rem;
        margin: 3px 0; /* Add margin bottom for spacing */
        
    }

    .hero .btn {
        margin: 1rem 0 2rem 0;
        padding: 10px 15px;
        font-size: 1rem;
    }
}









/* About Us Section */
.about-us {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.about-us .about-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us .about-content img {
    width: 20%;
   
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}



.services .service-item img {
    width: 100%;
    height: 200px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures the image covers the area and maintains aspect ratio */
}

.services .service-item h3 {
    font-size: 1.5em;
}

/* Projects Section */
.projects {
    padding: 60px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.projects .project-item {
    display: inline-block;
    width: 30%;
    margin: 1.5%;
}

.projects .project-item img { 
    width: 100%;
    border-radius: 10px;
    height: 200px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures the image covers the area and maintains aspect ratio */
}

.projects .btn.primary-btn {
    margin-top: 20px;
}


/*================= TESTIMONIAL's ========================*/
.testimonials_container{
    overflow-x: hidden;
    position: relative;
    
}
.testimonial{
    padding-top: 1rem;
}
.avatar{
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 0.5rem solid #e74c3c;
}
.avatar img{
    width: 100%;
    height: 100%;
    
}
.testimonial_info{
    text-align: center;
}


/* News Section */
.news {
    padding: 50px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.news .news-item {
    display: inline-block;
    width: 30%;
    margin: 1.5%;
}

.news .news-item img {
    width: 100%;
    border-radius: 10px;
}

.news .btn.secondary-btn {
    margin-top: 10px;
}

/* Get Involved Section */
.get-involved {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.services{
    padding: 60px 20px;
    background: rgb(245, 245, 245);
}



/* Contact Us Section */
.contact-us {
    background-color: #ecf0f1;
    
}



.contact-us .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us .contact-form input,
.contact-us .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
}

.contact-us .btn.primary-btn {
    width: 100%;
}

.contact-us .contact-details {
    margin-top: 20px;
}

.contact-us .map {
    margin-top: 20px;
    height: 300px;
    background-color: #bdc3c7;
}

/* Footer Section */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}







footer .newsletter {
    margin-top: 20px;
}

footer .newsletter #newsLetterEmail {
    padding: 10px;
    width: 20%;
    border: none;
    border-radius: 5px;
    /* margin-right: 10px; */
}

footer .newsletter .btn {
    padding: 10px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-bottom: 6px;
}

footer p {
    margin-top: 20px;
}





/* Up Coming Events */
.upcoming-events img{
    height: auto; 
    width: 5rem;
    border-radius: 50%;
}

.upcoming-events .card{
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.upcoming-events .card:hover{
    background: linear-gradient(to bottom right, #4ca895, #3eaca8);
    color: #fff;
}















/* Media Queries */
@media screen and (max-width: 768px) {

    .hero {
        padding: 80px 20px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .about-us .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-us .about-content img {
        width: 100%;
    }

    .services .service-item,
    .projects .project-item,
    .testimonials .testimonial-item,
    .news .news-item,
    .get-involved .involvement-item {
        width: 100%;
    }
}

@media (max-width: 1024px) {
  
    .hero h2 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .about-us .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-us .about-content img {
        width: 100%;
    }

    .services .service-item,
    .projects .project-item,
    .testimonials .testimonial-item,
    .news .news-item,
    .get-involved .involvement-item {
        width: 100%;
    }

    footer .newsletter #newsLetterEmail {
        width: 80%;
        margin-right: 0;
    }
}

