* {
  margin: 0;
  padding: 0;
}

html{
    scroll-behavior: smooth;
}

header {
  /* border:2px solid #000; */
  background-color: #f3f3f3;
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  z-index: 9999;
}
.logo-section {
  /* border:2px solid red; */
  margin: 15px;
}

#logo {
  height: 7rem;
  width: 7rem;
}

.links-section {
  margin: 15px;

  ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;

    li {
      padding: 5px;
      margin: 2rem;
      font-family: "Google Sans", sans-serif;
      font-size: 20px;
      font-weight: 800;
      transition: ease-in-out 300ms;
    }
    a {
      text-decoration: none;
      color:#242424
    }

    li:hover {
      transition: ease-in-out 100ms;
      color: navy;
      cursor: pointer;
    }
  }
}

.hero-section {
  position: relative;
  background-color: #f3f3f3;
  /* border:2px solid red; */
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  h1 {
    font-family: "Google Sans", sans-serif;
    margin-top: 100px;
  }

  p {
    position: relative;
    margin-top: 3%;
    font-family: "Merriweather", serif;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    max-width: 60%;
    line-height: 170%;
  }
}

.CTA {
  border-radius: 18px;
  padding: 10px;
  margin: 25px;
  border: 2px solid #6a6a6a;
  background-color: #242424;
  color: #fff;
  font-family: "Google Sans", sans-serif;
  transition: ease-in-out 300ms;
}

.CTA:hover {
  color: #242424;
  background-color: #fff;
  transition: ease-in-out 300ms;
  border: 2px solid #242424;
  cursor: pointer;
}

.about-section {
  background-color: #f3f3f3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  h2 {
    font-family: "Google Sans", sans-serif;
  }

  p {
    position: relative;
    margin-top: 3%;
    font-family: "Merriweather", serif;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    max-width: 55%;
    line-height: 170%;
  }
}

.services-section {
  background: linear-gradient(#f3f3f3, #cfcfcf);
  background-color: #cfcfcf;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;

  h2 {
    font-family: "Google Sans", sans-serif;
  }

  .cards-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-top: 2%;
    /* border:2px solid green; */
  }

  .card {
    position: relative;
    height: 400px;
    width: 300px;
    /* border: 2px solid #6b6b6b; */
    border-radius: 21px;

    img {
      position: relative;
      width: 300px;
      border-radius: 18px 18px 70px 0px;

      /* border:2px blue solid; */
    }

    h3 {
      font-family: "Google Sans", sans-serif;
      margin-top: 5px;
    }

    p {
      font-family: "Merriweather", serif;
      font-size: 14px;
    }
  }
}


.team-section {
  background: linear-gradient(#cfcfcf, #f3f3f3);
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-section h2 {
  font-family: "Google Sans", sans-serif;
  margin-bottom: 20px;
}

.team-wrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  gap: 25px;
}

.team-card {
  width: 260px;
  height: 300px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(0,0,0,0.08) 0px 5px 20px;
  transition: 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-card h3 {
  font-family: "Google Sans", sans-serif;
}

.team-card .role {
  font-family: "Google Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.team-card p {
  font-family: "Merriweather", serif;
  font-size: 14px;
}

.contact-section {
  background: linear-gradient(#f3f3f3, #cfcfcf);
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  font-family: "Google Sans", sans-serif;
  margin-bottom: 25px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 1000px;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: rgba(0,0,0,0.08) 0px 5px 20px;
  width: 300px;
}

.contact-info h3 {
  font-family: "Google Sans", sans-serif;
  margin-bottom: 10px;
}

.contact-info p {
  font-family: "Merriweather", serif;
  margin: 8px 0;
}

.contact-form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: rgba(0,0,0,0.08) 0px 5px 20px;
  width: 400px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: "Merriweather", serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #242424;
}

/* ================= MOBILE (Tablets & Phones) ================= */

@media (max-width: 1024px) {
  #logo {
    height: 5rem;
    width: 5rem;
  }

  .links-section ul li {
    margin: 1rem;
    font-size: 16px;
  }

  .hero-section p {
    max-width: 80%;
  }

  .about-section p {
    max-width: 75%;
  }

  .services-section .cards-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ================= SMALL TABLETS / LARGE PHONES ================= */

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .links-section ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section h1 {
    text-align: center;
  }

  .hero-section p {
    max-width: 90%;
    font-size: 16px;
  }

  .about-section p {
    max-width: 90%;
  }

  .services-section .cards-wrapper {
    flex-direction: column;
  }

  .card {
    width: 90%;
    height: auto;
  }

  .card img {
    width: 100%;
  }
}

/* ================= PHONES ================= */

@media (max-width: 480px) {
  .links-section ul li {
    margin: 0.5rem;
    font-size: 14px;
  }

  .hero-section h1 {
    margin-top: 50px;
    font-size: 28px;
  }

  .CTA {
    width: 80%;
  }

  .card p {
    font-size: 13px;
  }
}

/* .easter-wrapper{
    position: fixed;
    background-color: #ffc456;
    z-index: 999;
    width: 4rem;
    height: 16rem;
    left:-80px;
}

.easter-wrapper-active{
    position: fixed;
    background-color: #ffc456;
    z-index: 999;
    width: 4rem;
    height: 16rem;
    left:0px;
    transition: ease-in-out 300ms;
} */
