@import url(http://fonts.googleapis.com/css?family=Gentium+Book+Basic:400,700,700italic,400italic);

body {
    font-family: 'Gentium Book Basic', serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    min-height: 100vh; /* Set minimum height to ensure footer stays at the bottom */
}

/* Styling for the header */
.header {
    /* background-color: rgba(0, 0, 0, 0.9); */
    background-color: #fbfbfb;
    position: sticky;
    top: 0;
    height: 100px;
    transition: height 0.3s, opacity 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Add scrolling effect */
.scrolling {
    background-color: #fbfbfb;
    position: sticky;
    top: 0;
    height: 50px;
    transition: height 0.3s, opacity 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.menu-icon{
    display: none;
}
  
.bar {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
  }

.shrink {
    height: 70px; /* Set the desired height when the header is shrunk */
    opacity: 0.85; /* Adjust the opacity as desired when the header is shrunk */
}

#nav{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* position: relative; */
    /* background-color: green; */
}

#logo{
    background-image: url('./images/logo-3.png');
    width: 128px;
    height: 90%;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s;
    cursor: pointer;
    /* background-color: red; */
    /* margin-right: 20px; */
}

#nav ul {
    list-style: none;
    /* margin: 0; */
    /* padding: 0; */
    /* position: absolute; */
    /* bottom: 10px; */
    /* left: 230px; */
    display: flex;
    position: absolute;
    bottom: -16px;
    left: 100px;
}

#nav ul li {
    /* display: inline-block;
    margin-right: 20px; */
    position: relative;
    /* background-color: yellow; */
    
}

#nav ul li a {
    float: left;
    display: block;
    color: #333;
    text-align: center;
    padding: 0 8px;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 3px solid transparent;
}

#nav a:hover:not(#logo) {
    border-bottom: 3px solid deeppink;
}

#nav a.active {
    border-bottom: 3px solid deeppink;
}

.donate-button {
    /* background-color: hotpink;
    border: 1px solid #280d48; */
    display: block;
    position: fixed;
    bottom: 50px;
    right: 20px;
    padding: 10px;
    font-size: 0;
    background-image: url('./images/coffee-cup-outline.svg');
    background-position: center;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: rgb(199, 78, 142);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
  }

.donate-button:hover {
    display: block;
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: fit-content;
    padding: 10px 40px 10px 10px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    background-image: url('./images/coffee-cup-outline.svg');
    background-position: calc(100% - 5px);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: rgb(199, 78, 142);
    color: #fff;
    /* border: 1px solid #776ea9; */
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }

main {
    flex: 1; /* Use flex: 1 to allow main content to grow and fill available space */
    padding: 20px 12%;
}

.hero-section {
    background-image: url('./images/hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    text-align: center;
    background-color: #f2f2f2;
    /* padding: 50px 0; */
    border-radius: 5px;
}

#overlay{
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fbfbfb;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75); /* Add a background color for better visibility */
    overflow: hidden;
    border-radius: 5px;
}

.hero-section p{
    font-size: 1.2rem;
}

/* .hero-section h1{
    font-size: 1.2em;
} */

.services-section,
.contact-section{
    padding: 30px 0;
    border-radius: 5px;
}

.about-section{
    /*padding: 30px 280px;*/
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .header{
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        position: fixed;
        top: 0;
        left: -50%;
        width: 50%;
        height: 100%;
        padding: 0;
        transition: left 300ms ease-in-out;
    }
    #nav{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        padding: 0;
        width: 100%;
    }
    #nav ul {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        left: 0;
        top: 15%;
        padding: 0;
        gap: 10px;
    }
    #logo{
        width: 100%;
        height: 15%;
        border-bottom: 3px solid #ccc;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
        position: absolute;
        right: -50px;
        top: 20px;
        padding: 5px 10px;
        background-color: rgb(199, 78, 142);
        border-radius: 0 5px 5px 0;
    }

    /* Show the side menu when the hamburger icon is clicked */
    .show-menu {
        left: 0;
    }
    .update-first-bar{
        transform: translateY(10px) rotate(45deg);
    }
    .update-second-bar{
        transform: translate(-100vw);
    }
    .update-third-bar{
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .donate-button {
        /* background-color: hotpink;
        border: 1px solid #280d48; */
        display: block;
        position: fixed;
        cursor: pointer;
        bottom: 50px;
        right: 20px;
        padding: 10px;
        font-size: 0;
        background-image: url('./images/coffee-cup-outline.svg');
        background-position: center;
        background-size: 30px 30px;
        background-repeat: no-repeat;
        background-color: rgb(199, 78, 142);
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        text-decoration: none;
      }
} 

.cta-button {
    display: inline-block;
    background-color: rgb(199, 78, 142);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

.cta-button:hover{
    cursor: pointer;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-top: auto; /* Push the footer to the bottom */
}

/* Styling for the testimonials section */
.testimonial-section {
    text-align: center;
    padding: 30px 0;
    background-color: #f2f2f2;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
}

.testimonial blockquote {
    position: relative; /* To position the quotation marks */
    font-size: 16px;
    /* line-height: 1.6; */
    margin-bottom: 10px;
    
}

.testimonial blockquote {
    quotes: "“" "”" "‘" "’";
  font-style: italic;
}


blockquote:before {
  content: open-quote;
}


.testimonial blockquote:after {
  content: close-quote;
}


.testimonial blockquote:before,
.testimonial blockquote:after {
  color: rgb(199, 78, 142);
  font-size: 1.2em;
}

.testimonial blockquote {
  margin-left: 0;
  padding-left: 1em;
  border-left: 5px solid rgb(199, 78, 142);
}

.testimonial cite {
    font-weight: bold;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fbfbfb;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color:  rgb(199, 78, 142);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}



/* Styling for the services section */
.services-section {
    text-align: center;
    /* padding: 30px 0; */
    background-color: #f2f2f2;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* Add transition for smooth animation */
    cursor: pointer;
}

.service-image {
    background-image: url('your_image_url_here');
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 150px;
    position: relative;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    width: 280px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0; 
    position: absolute;
    bottom: -20px;
    overflow: hidden;
}

.service-description {
    
    font-size: 16px;
    color: #333;
    /* line-height: 1.6; */
    padding: 20px 0;
    text-align: left;
    
}

/* Add hover effect */
.service-card:hover, .cta-button {
    transform: scale(1.05); /* Increase the size on hover */
    z-index: 1; /* Bring the card to the front on hover */
}

#under-construction{
    background-image: url('./images/under-construction.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

#container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85); /* Add a background color for better visibility */
    padding: 20px; /* Adjust the padding for the title */
    margin-left: auto;
    position: fixed;
    bottom: 0;
    overflow: hidden;
}
#container a{
    display: inline-block;
    background-color: rgb(199, 78, 142);
    color: #fff;
    padding: 10px 120px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}