:root{
      --bg:#1C2B1F; 
      --bg2:#243228; 
      --bg3:#2D3D30;
      --green:#4A7C59; 
      --green-light:#7FB08A;
       --mint:#B8D4BE;
      --cream:#F2EDE3; 
      --gold:#C9A84C;
      --font-head:'Libre Baskerville',Georgia,serif;
      --font-body:'DM Sans',sans-serif;
      --radius:14px;
    }

    nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg3);
  border-bottom: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  width: 100%;
}

.nav-logo {
  font-size: 1.25rem;
  color: var(--cream);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--green-light);
  font-size: 0.875rem;
  text-transform: uppercase;
}
 #hero {
      display: flex;
      padding: 100px 2rem 4rem;
      background-color: var(--bg);
    }

    .hero-inner {
  
      width: 100%;
      
    }

  

    #sidebyside {
      
      display: grid;
      grid-template-columns: 50% 50%;
      width: 100%;
      width: 100%;
    }
   
    .horse, .volunteering {
      background-color: var(--bg2);
      display: grid;
      grid-template-columns: 50% 50%;
      
    }

    h6 {  
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    
    h1 {
      font-size: 2.5rem;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }
    span {
      color: var(--green);
    }
    button {
      background-color: transparent;
      border: 1px solid var(--green);
      color: var(--green);
      padding: 0.5rem 1rem;
      border-radius: var(--radius);
      font-size: 0.875rem;;
    }
    img {
    
      width: 100%;
      height: 100%;
      border-radius: 5px;
    }
     
     .texts h2 {
      font-size: 1.5rem;
      color: var(--cream);
      margin-bottom: 1rem;
    }
     .texts p {
      font-size: 1rem;
      color: var(--mint);
      line-height: 1.5;
 
    }
.texts {
  width: 100%;
  padding: 5px;
}
.img {
  align-items: center;
  padding: 5px;
}

#achievements {
  background-color: var(--bg);
  padding: 4rem 2rem;
  align-items: center;

}

.info-cube {
  background-color: var(--bg2);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--cream);
  text-align: center;
}

.achievements-inner {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  gap: 2rem;
  width: 100%;
}