@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

.menu {
  background: green;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.menu.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#menu-toggle {
  display: none;
}

.menu-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.zoo-logo {
  font-size: 30px;
  font-weight: bold;
}

.buttons2 {
  text-decoration: none;
  padding: 10px 25px;
  margin-left: 80px;
  background-color: yellow;
  border-radius: 20px;
  color: black;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.buttons2:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.buttons:hover {
  background-color: green;
}

.menu-logo label {
  display: none;
  cursor: pointer;
}

.menu-logo label::before {
  content: "menu";
  font-family: "Material Icons";
  font-size: 32px;
}

.items {
  display: flex;
}

.item {
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.item:hover {
  background: rgba(0, 0, 0, 0.15);
}

.item.active {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid yellow;
}

@media (max-width: 700px) {
  .menu-logo label {
    display: block;
  }

  .items {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .buttons2 {
    margin-left: 20px;
    padding: 8px 15px;
    font-size: 14px;
  }

  .book {
    margin-left: 0;
  }

  .zoo-logo {
    font-size: 30px;
  }

  .team1,
  .team4 {
    padding: 30px 20px;
  }

  #menu-toggle:checked ~ .items {
    max-height: 600px;
  }

  #menu-toggle:checked + .menu-logo label::before {
    content: "close";
  }

  .item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .item.active {
    border-bottom: none;
    background: rgba(0, 0, 0, 0.25);
    border-left: 4px solid yellow;
  }
}

@media (max-width: 481px) {
  .zoo-logo {
    font-size: 24px;
  }

  .buttons {
    text-decoration: none;
    padding: 10px 20px;
    background-color: yellow;
    border-radius: 10px;
    color: black;
  }

  .button2 {
    text-decoration: none;
    padding: 10px 15px;
    background-color: green;
    border-radius: 20px;
    color: black;
  }

  .pic {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .pic img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .call-btn {
    border-radius: 20px;
    border: none;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    background-color: green;
    transition: background-color 0.15s;
  }

  .team1,
  .team4 {
    padding: 20px 10px;
  }

  .intro4 {
    font-size: 15px;
    font-family: "Inter", sans-serif;
    margin-top: 20px;
    margin-bottom: 18px;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
  }

  .gallery2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0px 30px;
  }

  .gallery2 img {
    width: 220px !important;
    height: 220px !important;
    object-fit: cover;
    border-radius: 20px !important;
  }

  .contact-new {
    margin-right: 15px;
    margin-left: 15px;
  }

  .contact-new-texts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0px 15px;
  }
}

.book {
  border-radius: 20px;
  padding: 10px;
  font-weight: bold;
  background-color: yellow;
  margin-left: 300px;
  width: 120px;
  border: none;
  transition: opacity 0.15s;
}

.book:hover {
  opacity: 0.8;
}

/* zoo.html / index.html */
.introduction {
  flex-wrap: wrap;
}

.intro {
  font-size: 25px;
  font-family: "Inter", sans-serif;
  margin-top: 15px;
  margin-bottom: 18px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}

.into {
  color: grey;
  font-size: 19px;
  margin-left: 30px;
  margin-right: 30px;
}

.buttons {
  text-decoration: none;
  padding: 10px 60px;
  margin-left: 30px;
  background-color: yellow;
  border-radius: 20px;
  color: black;
}

.buttons:hover {
  background-color: green;
}

.button2 {
  text-decoration: none;
  padding: 10px 60px;
  margin-left: 30px;
  background-color: green;
  border-radius: 20px;
  color: black;
}

.button2:hover {
  background-color: yellow;
}

.link1 {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-left: 30px;
  margin-right: 50px;
  flex-wrap: wrap;
}

.stat-box h2 {
  color: green;
  font-size: 28px;
  margin: 0;
}

.stat-box p {
  color: grey;
  margin-top: 5px;
  font-size: 14px;
}

.pic {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pic img {
  width: 100%;
  max-width: 600px;
  display: block;
  height: auto;
  margin-left: 35px;
  margin-right: 30px;
  margin-top: 40px;
  border-radius: 20px;
}

.services {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  margin-top: 90px;
  margin-bottom: 18px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}

.bundles {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bundle {
  background: #f6f6f6;
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.bundle img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.bundle-content {
  padding: 20px;
  text-align: normal;
}

.price {
  display: inline-block;
  margin-top: 15px;
  background: #99fb92fb;
  color: green;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.contact {
  font-weight: bold;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact9 {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.call-btns {
  text-align: center;
  margin-bottom: 20px;
}

.call-btns2 {
  text-align: center;
  margin-bottom: 100px;
}

.call-btns3 {
  text-align: center;
  margin-bottom: 30px;
}

.call-btn {
  border-radius: 20px;
  border: none;
  color: white;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  background-color: green;
  width: 220px;
  transition: background-color 0.15s;
}

.call-btn:hover {
  background-color: yellow;
}

.about-us {
  background-color: #a5ff8076;
  padding-bottom: 60px;
}

.story {
  font-weight: bold;
  margin-left: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
  color: green;
}

.intro2 {
  font-size: 25px;
  font-family: "Inter", sans-serif;
  margin-top: 15px;
  margin-bottom: 18px;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 40px;
}

.into2 {
  color: grey;
  font-size: 19px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.into3 {
  color: grey;
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
}

.states {
  margin-left: 30px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
}

.elite {
  margin-left: 30px;
  color: grey;
  margin-top: 15px;
}

.states2 {
  margin-left: 30px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  margin-left: 30px;
  margin-right: 30px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.buttons {
  display: block;
  text-decoration: none;
  padding: 10px 60px;
  text-align: center;
  background-color: green;
  border-radius: 20px;
  color: white;
  width: fit-content;
  justify-content: space-between;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.buttons:hover {
  background-color: yellow;
  opacity: 0.9;
  color: black;
}

.insta {
  text-align: center;
  padding: 40px 20px;
}

.insta p {
  font-size: 16px;
  margin-bottom: 15px;
}

.insta-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: green;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.insta-link i {
  font-size: 20px;
}

.comments {
  background-color: #70ff40;
}

.services3 {
  background-color: #64ff3c;
  padding: 40px 20px 20px 20px;
  text-align: center;
}

.comment {
  background-color: white;
  padding: 25px;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #91ff80;
  gap: 10px;
  margin-bottom: 15px;
}

.school {
  font-weight: bold;
  margin-top: 20px;
}

.service2 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  margin-top: 30px;
  margin-bottom: 18px;
  margin-left: 30px;
  margin-right: 30px;
  color: white;
}

.into6 {
  color: grey;
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 45px;
}

.end {
  background-color: #303030;
  padding: 5px 5px;
}

.into4 {
  color: white;
  font-size: 15px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 30px;
  margin-right: 30px;
}

.icons i {
  font-size: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  margin-top: 25px;
  margin-left: 30px;
  margin-right: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 15px;
}

.footer-column a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-column a:hover {
  color: green;
  padding-left: 5px;
}

.contact2 {
  margin-top: 25px;
  margin-left: 30px;
  margin-right: 30px;
  font-weight: bold;
  color: white;
  font-size: 20px;
}

.contact3 {
  margin-left: 30px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.contact3 a {
  color: #bfbfbf;
  text-decoration: none;
}

.footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  opacity: 0.8;
  color: #bfbfbf;
}

/* team.html */
.team1 {
  background-color: green;
  color: white;
  padding: 40px 100px;
  text-align: center;
}

.team2 {
  background-color: white;
  color: black;
  border: 5px solid white;
}

.intro4 {
  font-size: 25px;
  font-family: "Inter", sans-serif;
  margin-top: 25px;
  margin-bottom: 18px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}

.into5 {
  text-align: center;
  color: grey;
  margin: 10px 30px;
}

.gallery2 {
  display: flex;
  flex-direction: row;
  gap: 60px;
  max-width: 900px;
  margin: 0px 30px;
}

.gallery2 img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery2:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 128, 0, 0.3);
}

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

.pic-text h3 {
  margin-bottom: 12px;
  margin-top: 20px;
  text-align: center;
}

.pic-title {
  color: green;
  text-align: center;
}

.pic-texts {
  color: grey;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.pic-titles {
  color: green;
  text-align: center;
}

.team4 {
  background-color: #85ff40;
  padding: 30px 100px;
}

/* contact.html */
.book1 {
  font-size: 25px;
  margin-top: 80px;
  color: black;
  margin-left: 30px;
}

.contact-text1 {
  margin-top: 12px;
  margin-left: 30px;
  color: grey;
}

.contact-text {
  margin-top: 12px;
  margin-left: 10px;
  color: grey;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #70ff40;
  border-radius: 50%;
  margin-top: 30px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  color: green;
  font-size: 22px;
  text-decoration: none;
  margin-top: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-text a {
  text-decoration: none;
  color: grey;
}

.contact-text h4 {
  text-decoration: none;
}

.big {
  color: black;
  font-size: 17px;
  margin-top: 17px;
}

.contact-text a:hover {
  color: green;
}

.contact-texts {
  margin-top: 12px;
  margin-left: 10px;
  color: grey;
}

.contact-texts a {
  text-decoration: none;
  color: grey;
}

.contact-texts h4 {
  text-decoration: none;
}

.contact-texts a:hover {
  color: green;
}

.last {
  margin-bottom: 80px;
}

.icon-circles {
  width: 50px;
  height: 50px;
  background-color: #70ff40;
  border-radius: 50%;
  margin-top: 30px;
  margin-left: 30px;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circles i {
  color: green;
  font-size: 22px;
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact-new {
  font-size: 25px;
  font-family: "Inter", sans-serif;
  margin-top: 15px;
  margin-bottom: 18px;
  text-align: center;
  padding-top: 30px;
}

.contact-new-text {
  color: grey;
  text-align: center;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 50px;
}

.contact-new-texts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0px 30px;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
}

.icon-circles2 {
  width: 50px;
  height: 50px;
  background-color: #70ff40;
  border-radius: 50%;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circles2 i {
  color: green;
  font-size: 22px;
  text-decoration: none;
}

.info-card h2 {
  font-size: 17px;
  margin-bottom: 12px;
}

.info-card p {
  color: grey;
}

.info-cards {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
}

.info-cards h2 {
  font-size: 17px;
  margin-bottom: 12px;
}

.info-cards p {
  color: grey;
}

.contact-item1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.faq-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-card {
  display: flex;
  gap: 15px;
  background: #f5f6f8;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: #70ff40;
  color: green;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-content h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.faq-content p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: green;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s;
  align-items: center;
  justify-content: center;
}

#back-to-top:hover {
  background: #006400;
  transform: scale(1.1);
}

#back-to-top.show {
  display: flex;
          }
        
