

/* Hero Css */ 

.heroBanner {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('images/hero.png');
    height: 100%;
    min-height: 80dvh;
    width: 100vw;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    max-width: 100vw;
    overflow: hidden;
    align-items: center;
}

.heroContent-container {
   height: auto;
   width: auto;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   margin: 20px;
   margin-top: 50px;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.heroContent-container.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

.heroHeading {
    font-family: Tonus Sans;
    font-size: 58px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.heroText {
    font-family: Tonus Sans;
    font-weight: normal;
    font-size: 21px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.buttons-container {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 768px) {
    .buttons-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: auto;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
    }

    .heroHeading {
        font-size: 38px;
    }
}

/* About Us Section Css */

.aboutUs {
    background-color: #598896;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    max-width: 100vw; 
    height: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.aboutUs-heading {
    font-weight: bold;
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 60px;
    margin-left: 25px;
    margin-right: 25px;
}

.aboutUs-heading span {
    color: #f0c12a; 
    font-size: 60px;
}

.aboutUs-subheading {
    opacity: 60%;
    font-size: 21px;
    font-weight: bold;
    margin-top: 0px;
}

.aboutUs-text {
    font-size: 18px;
    font-weight: normal;
    width: 60%;
    text-align: center;
}

/* Missions Section */
.missions h2 {
    font-size: 38px;
}

.missions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.missonContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    gap: 20px;
    border: solid 2px #598896;
    border-radius: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.missonContainer.slide-in-left {
    opacity: 1;
    transform: translateX(0);
  }

.missionImg {
    border-radius: 10px;
}

.missonContent a {
    text-decoration: none;
    color: #598896;
    transition: all 0.3s ease;
}
.missonContent a:hover {
    color: #f0c12a;
}

@media only screen and (max-width: 780px) {
    .missonContainer {
        flex-direction: column;
    }

    #missionContainer-alt {
        flex-direction: column-reverse;
    }

    .missionImg {
        width: 100%;
    }
}
/* Blog Section CSS */

.homeBlog {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ffffff;
    font-family: Tonus Sans;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homeBlog h2 {
    font-family: Tonus Sans;
    font-size: 38px;
}

.blogTitle {
    font-size: 18px;
}

.homeBlog-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.blogCard {
    border: solid 2px #f1f1f1;
    border-radius: 20px;
    padding: 10px;
    width: 300px;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: #111111;
}

.blogImage-container {
    width: 100%;
    overflow: hidden;
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogAuthor {
    color: #ffffff;
    background-color: #598896;
    width: 100%;
    display: block;
    border-radius: 999px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.blogDate {
    text-align: right;
    font-size: 15px;
    color: #a5a5a5;
    margin: 0px;
}

.blogCard:hover {
    border: #598896 2px solid;
}

.blogCard:hover .blogImage {
    scale: 110%;
}

.blogImage {
    transition: all 0.3s ease;
}

.blogCard:hover .blogAuthor {
    background-color: #f0c12a;
}
