*{
  margin: 0;
  font-family: monument;
}


.body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
    background-color: #e6d3a3;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e6d3a3;
  }
  
  .logo {
    width: 120px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li {
    padding: 0.5rem 1rem;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #ddd;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    transform: scale(1.1); 
  }
  
  .nav-links a:hover::after {
    width: 100%;
    left: 0;
    background: black;
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem;
      flex-direction: column;
      align-items: center;
    }
  
    .nav-links {
      gap: 0.5rem;
      margin-top: 0.5rem;
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .nav-links li {
      padding: 0.5rem;
    }
  
    .nav-links a {
      font-size: 0.9rem;
    }
  
    .logo {
      width: 120px;
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .nav-links a {
      font-size: 0.8rem;
      padding: 0.5rem;
    }
  
    .logo {
      width: 120px;
    }
  }
  
  @media (max-width: 305px) {
    .nav-links a {
      font-size: 0.7rem;
      padding: 0.3rem;
    }
  
    .logo {
      width: 100px;
      margin-bottom: 0.8rem;
    }
  }
  
  
  


  h1 {
    color: BLACK;
  }
  .grid-container {
    columns: 5 200px;
    column-gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
    div {
      width: 150px;
      margin: 0 1.5rem 1.5rem 0;
      display: inline-block;
      width: 100%;
      border: solid 2px black;
      padding: 5px;
      box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
      border-radius: 5px;
      transition: all .25s ease-in-out;
      &:hover img {
        filter: grayscale(0);
      }
      &:hover {
        border-color: coral;
      }
      img {
        width: 100%;
        filter: grayscale(100%);
        border-radius: 5px;
        transition: all .25s ease-in-out;
      }
      p {
        margin: 5px 0;
        padding: 0;
        text-align: center;
        font-style: italic;
      }
    }
  }
  
  /* footer */


.footer {
    background-color: #ce4d31;
    color: #fff;
    padding: 40px 0;
}

.footer .container {
    max-width: 1170px;
    margin: auto;
}

.footer .row {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer .footer-col {
    flex: 1;
    min-width: 200px;
    margin: 15px 10px;
}

.footer .footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer .footer-col ul li {
    margin-bottom: 10px;
}

.footer .footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #bbbbbb;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

  /* .container {
    max-width: 1170px;
    margin: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  ul {
    list-style: none;
  }
  
  .footer {
    background-color: #ce4d31;
    padding: 70px 0;
  }
  
  .footer-col {
    width: 25%;
    padding: 0 15px;
  }
  
  .footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #91972a;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  
  .footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
  }
  
  .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
  }
   */
  /*responsive*/
  @media(max-width: 767px) {
    .footer-col {
      width: 50%;
      margin-bottom: 30px;
    }
  
    .footer-col h4 {
      text-align: center;
      /* Center align the h4 element */
    }
  
    .footer-col h4::before {
      left: 50%;
      transform: translateX(-50%);
      /* Center align the ::before element */
    }
  }
  
  @media(max-width: 574px) {
    .footer-col {
      width: 100%;
      text-align: center;
    }
  
    /* added wip */
    .footer-col h4 {
      text-align: center;
      /* Center align the h4 element */
    }
  
    .footer-col h4::before {
      left: 50%;
      transform: translateX(-50%);
      /* Center align the ::before element */
    }
  }
  
  /* added wip */
  
  .logo-col {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    max-width: 150px;
    /* Adjust size as needed */
    display: block;
    margin: 0 auto;
  }
  
  /* Make the footer responsive */
  @media (max-width: 768px) {
    .footer-col {
      width: 50%;
    }
  
    .logo-col {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .footer-col {
      width: 100%;
    }
  }
  
  
  
  