:root {
    --dark-green: #073625;
    --light-olive-green: #c8dece; 
    --olive-green: #5e7463;
    --yellow: #c6a73e;
    --green: #436a56;
    --off-white: #f9f9f9;
    --dark-gray: #333;

    /* 
    color testing
    */

    --deep-blue: #1e3a8a;
    --sky-blue: #bfdbfe;
    --optimistic-orange: #f59e0b;
    --charcoal-grey: #1f2937;

}


@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* BASIC SETTINGS */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Merriweather Sans", sans-serif;
}

/* NAVBAR */

header {
    display: flex;
    justify-content: space-between;
    height: 100px;
     align-items: center;
    padding: 0 20px;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
   z-index: 999;
   background: linear-gradient(to right, var(--light-olive-green), var(--deep-blue));

   /* border-bottom: 5px solid var(--olive-green); */
}

body {
    margin-top: 100px;
    overflow-x: hidden;
    background-color: var(--off-white);
    color: var(--dark-gray);
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    list-style-type: none;
    
}

.hamburger {
    display: none;
}

.navbar ul li a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.navbar ul li a:hover {
    background-color: var(--deep-blue);
    color: white;
    border-radius: 10px;
}

.logo img {
    height: 120px;
    width: 120px;
}

.navbar a.pop {
    color: var(--charcoal-grey);
      background-color:  var(--optimistic-orange) !important;
      border-radius: 5px;
}




#hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),url(/images/naassom-azevedo-Q_Sei-TqSlc-unsplash.jpg);
    background-size: cover;
    background-position: bottom;
padding: 3rem;
    max-height: 900px;
    height: 100vh;
}

.hero-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e2f2e7;
    position: relative;
    text-align: center;
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-container h1 {
    font-size: 4.5rem;
  /*   text-decoration: 5px underline var(--green); */
    margin-bottom: 3rem;
}

.hero-container p {
    font-size: 1.9rem;
    color: #cbd3d3;
    padding: 2rem;
}

/* Hero container styling */
.hero-container h1,
.hero-container p {
  opacity: 0;              /* Start invisible */
  transform: translateY(20px); /* Start slightly lower */
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Delay paragraph so it appears after the heading */
.hero-container p {
  animation-delay: 0.6s;
}

/* Keyframes for fade + slide effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#who h2{
    text-align: center;
    margin-top: 5.2rem;
    
    font-weight: 800;
    font-size: 2rem;
}

#intro p {
    max-width: 1200px;
   
    font-size: 1.8rem;
   
    padding: 2rem;
    line-height: 1.3;
    margin: 3rem auto;
    
    
}

#cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, var(--light-olive-green), var(--deep-blue));

    margin-bottom: 50px;
}

.cta-logo {
    height: 120px;
    
}

.button-cta {
    padding: 1rem 2rem;
    border-radius: 10px;
    border: none;
    margin: 0 1rem;
    background-color: var(--deep-blue);
    color: white;
}

#cta button:nth-of-type(2) {
    
    color: white; /* Optional, for contrast */
    border: 4px solid var(--optimistic-orange); /* Optional, if you want a clean button */
}


/* highlights section */



.grid-container {
    display: grid; 
    row-gap: 9.6rem;
    column-gap: 6.4rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
     padding: 5.6rem 0;
     max-width: 1200px;
    margin: 100px auto;
}

.text-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
.text-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.text-box p {
    line-height: 1.4;
    font-size: 1.2rem;
}

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

.green {
    background-color: var(--green);
}

.grid-image img {
    height: 300px;
    width: 350px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}



#testimonial-header {
    padding-top: 5rem;
    text-align: center;
}

.testimonial-grid-container {
     display: grid; 
    row-gap: 9.6rem;
    column-gap: 6.4rem;
    grid-template-columns: repeat(3, 1fr);
  
    align-items: center;
     padding: 5.6rem 0;
     max-width: 1200px;
    margin: 50px auto;
}

.testimonial-card {
      /* background:var(--deep-blue); */
    height: 300px;
    width: 300px;
    border: 3px solid black;
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: var(--dark-gray)
}

.residents {
    display: flex;
    align-items: center;
}

.residents-name p:last-child {
  color: var(--olive-green);
}

.residents img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 5px solid var(--sky-blue);
}

.stars {
    display: flex;

}

i {
    color: gold;
}

#footer {
    background: linear-gradient(to right, var(--light-olive-green), var(--deep-blue));
    color: white;
    
}

.footer-about {
    position: relative;
    bottom: 35px;
}

.footer-container {
      display: grid; 
    row-gap: 9.6rem;
    column-gap: 6.4rem;
    grid-template-columns: repeat(4, 1fr);
  
    align-items: start;
     padding: 5.6rem 0 0.6rem 0;
    max-width: 1200px;
    margin: 100px auto 0 auto;
}

.footer-container a {
    text-decoration: none;
     color: white;
    
}
.footer-container ul {
    list-style-type: none;
   
}
.footer-links ul li, .footer-links h4 {
    margin: 0.5rem;
}
.footer-contact p, .footer-contact h4 {
    margin: 0.5rem;
}

.footer-bottom p {
    margin: 0.5rem;
}

/* NAVBAR MEDIA QUERY */

@media only screen and (max-width: 930px) {
    .hamburger {
        display: block;
    }

    .lines {
        height: 5px;
        width: 30px;
        background-color: black;
        margin: 5px 0;
    }

    .navbar {
        position: absolute;
        top: 100px;
        height: 0;
        width: 100vw;
        background-color: white;
        right: 0;
        left: 0;
        overflow: hidden;
    }

    .navbar ul {
        display: block;
        margin: 10px auto;
        text-align: center;
        max-width: fit-content;
        opacity: 0;
    }

    .navbar ul li  {
        margin: 20px 0;
    }

    .navbar.active {
        height: 200px;
    }

    .navbar.active ul {
        opacity: 1;
    }

  
}

@media only screen and (min-width: 1220px) {
    #hero {
  
    background-size: cover;
    background-position: bottom;

    max-height: 900px;
    height: 100vh;
}
}
@media only screen and (min-width: 1420px) {
    #hero {
  
    background-size: cover;
    background-position: bottom;

    max-height: 1100px;
    height: 100vh;
}
}
@media only screen and (min-width: 1620px) {
    #hero {
  
    background-size: cover;
    background-position: bottom;

    max-height: 1300px;
    height: 100vh;
}
}
@media only screen and (min-width: 1820px) {
    #hero {
   
    background-position: bottom;

    max-height: 1500px;
    height: 100vh;
}
}
@media only screen and (min-width: 1920px) {
    #hero {
   
    background-size: cover;
    background-position: center;

    max-height: 900px;
    height: 100vh;
}
}

/* about page */ 

#about-hero {
    
    
    padding: 4.8rem 0 5.6rem 0;
}

.about-hero-container {
    max-width: 100rem;
   
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    justify-content: center;
    align-items: center;
    padding: 0 3.2rem;
    
}

.about-hero-container h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--charcoal-grey)
}
.about-hero-container h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    
}
.about-hero-container p {
    margin: 1.8rem 0;
    font-size: 1.5rem;
    
}

.about-hero-container ul {
    padding-left: 1.2rem;
}

.about-hero-container ul li {
  
    font-size: 1.5rem;
    margin: 0.5rem 0;
}



.about-img img {
    height: 100%;
    width: 100%;
}

.about-txt {
    
    height: 100%;
    width: 100%;
}

.subtle-line {
    border: none;            /* Remove default border */
    height: 1px;             /* Very thin */
    background-color: #ccc;  /* Light gray for subtlety */
    margin: 20px 0;          /* Space above and below */
    opacity: 0.5;            /* Make it even more subtle */
}


.history-container h1 {
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 5rem;
}



.history-container p {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    line-height: 1.3;
}

.history-container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 5rem;
}

#meet h1 {
    margin-top: 2rem;
    text-align: center;
}

.team-grid-container {
     display: grid; 
    row-gap: 2.6rem;
    column-gap: 6.4rem;
    grid-template-columns: repeat(3, 1fr);
  
    align-items: center;
     padding: 3.6rem 0;
     max-width: 1200px;
    margin: 50px auto;
}

.team-card {
     
    height: 450px;
    width: 300px;
    
    color: var(--dark-gray);
    display: flex;
    flex-direction: column;
   box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 2rem;
  justify-content: space-around;
}

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

.team-pic img {
 height: 200px;
    width: 200px;
   border-radius: 50%;
    border: 7px solid var(--charcoal-grey);
}
.team-card-info {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.7rem;
    border-bottom: 6px solid var(--deep-blue);
}
.team-card-info p {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
  /*  background:   linear-gradient(to right, var(--light-olive-green), var(--deep-blue));;*/
}


#services {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),url(/images/services.jpg);
    background-size: cover;
    background-position: bottom;

    max-height: 900px;
    height: 100vh;
}

.services-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e2f2e7;
    position: relative;
    text-align: center;
  
}

.services-container h1 {
    font-size: 4.5rem;
    
    margin-bottom: 3rem;
}

.services-container p {
    font-size: 1.9rem;
}

/* services grid section */


.services-grid-container {
     display: grid; 
    row-gap: 3.6rem;
    column-gap: 5.6rem;
    grid-template-columns: repeat(3, 1fr);
  
    align-items: center;
     padding: 3.6rem 0;
     max-width: 1200px;
    margin: 50px auto;
}

.services-card {
    border-radius: 2px;
    height: 300px;
    width: 310px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  color: black;
    display: flex;
    flex-direction: column;
    
    padding: 2rem;
  
}

.services-card h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.services-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.services-card button {
    background-color: var(--deep-blue);
    max-width: 150px;
    padding: 0.5rem 2rem;
    border-radius: 2px;
    color: #f9f9f9;
}

.services-container h1,
.services-container p {
  opacity: 0;              /* Start invisible */
  transform: translateY(20px); /* Start slightly lower */
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Delay paragraph so it appears after the heading */
.services-container p {
  animation-delay: 0.6s;
}

/* Keyframes for fade + slide effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#involved {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),url(/images/test-pic.jpg);

    background-size: cover;
    background-position: center;

    max-height: 900px;
    height: 100vh;
}

.involved-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e2f2e7;
    position: relative;
    text-align: center;
  
}

.involved-container h1 {
    font-size: 4.5rem;
    
    margin-bottom: 3rem;
}

.involved-container p {
    font-size: 1.9rem;
}

#involved-info {
    background-color: var(--light-olive-green);
}


.involved-grid-container {
     display: grid; 
    row-gap: 9.6rem;
    column-gap: 6.4rem;
    grid-template-columns: repeat(3, 1fr);
  
    align-items: center;
     padding: 3.6rem 0;
     max-width: 1200px;
    margin: 0 auto;
}

.involved-card {
     background-color: var(--deep-blue);
    height: 300px;
    width: 300px;
    border: 2px solid black;
    color: var(--off-white);
   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
