@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  z-index: 9999;
  width: 100%;
}

main {
  width: 100%;
  padding-top: 150px;
}

@media screen and (max-width: 600px) {
  main {
    padding-top: 20px;
  }
}

.top-main-image-section {
  width: 100%;
}

.top-main-image-section img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .top-main-image-section {
    padding-top: 60px;
  }
}

/* Welcome Section */

.welcome-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.welcome-heading-con {
  text-align: center;
}

.welcome-heading-con h1 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
}

.welcome-img-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 200px;
}

.welcome-info-con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  width: 25%;
  flex-wrap: wrap;
}

.welcome-info-con p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.welcome-info-con a {
  background-color: #eee6d7;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.377);
  text-decoration: none;
  color: black;
}

.welcome-info-con a:hover {
  color: #eee6d7;
  background-color: black;
}

.welcome-img-con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}

.welcome-img-con img {
  width: 500px;
  height: auto;
  border-radius: 50%;
}

/* Tablet view */
@media (max-width: 768px) {
  .welcome-img-info-container {
    flex-direction: column;
    gap: 20px;
  }

  .welcome-img-con {
    order: -1; /* This will place the image container before the text container */
    width: 80%;
  }

  .welcome-info-con {
    width: 80%;
  }

  .welcome-img-con img {
    width: 300px;
  }

  .welcome-heading-con h1 {
    font-size: 40px;
  }

  .welcome-info-con p {
    font-size: 18px;
  }

  .welcome-info-con a {
    padding: 10px 20px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .welcome-img-info-container {
    flex-direction: column;
    gap: 10px;
  }

  .welcome-img-con {
    order: -1; /* This will place the image container before the text container */
    width: 90%;
  }

  .welcome-info-con {
    width: 90%;
  }

  .welcome-img-con img {
    width: 250px;
  }

  .welcome-heading-con h1 {
    font-size: 30px;
  }

  .welcome-info-con p {
    font-size: 16px;
  }

  .welcome-info-con a {
    padding: 8px 16px;
    text-align: center;
    width: 95%;
  }
}

.expecting-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

.expecting-video img {
  max-width: 80%;
  width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.expecting-video h1 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
}

@media (max-width: 800px) {
  .expecting-video video {
    max-width: 95%;
    width: 100%;
  }
}

/* Meet Our Puppies Section */

.meet-our-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #eee6d7;
  background-image: url("../images/paw_prints_trail_across_screen.png");
  background-size: 1920px auto; /* This will ensure your image covers the entire div */
  background-repeat: no-repeat; /* This will prevent the image from repeating */
  background-position: center; /* This will center the image within the div */
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}

.meet-our-section h1 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin: 0;
}

.meet-our-btn-con {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.meet-contact-btn {
  background-color: black;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.377);
  text-decoration: none;
  color: #eee6d7;
  border: 2px black solid;
}

.meet-contact-btn:hover {
  color: black;
  background-color: #eee6d7;
}

.meet-gallery-btn {
  color: black;
  background-color: #eee6d7;
  border: 2px black solid;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.377);
  text-decoration: none;
}

.meet-gallery-btn:hover {
  color: #eee6d7;
  background-color: black;
}

/* Mobile devices (phones, less than 768px) */
@media (max-width: 767px) {
  .meet-our-btn-con {
    flex-direction: column;
    gap: 20px;
  }

  .meet-contact-btn,
  .meet-gallery-btn {
    padding: 10px 20px; /* Smaller padding */
    font-size: 14px; /* Smaller font size */
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.377); /* Smaller shadow */
    width: 100%;
    text-align: center;
  }
}

/* Tablet devices (portrait, 768px and up) */
@media (min-width: 768px) and (max-width: 1024px) {
  .meet-contact-btn,
  .meet-gallery-btn {
    padding: 12px 25px; /* Medium padding */
    font-size: 16px; /* Medium font size */
  }
}

/* Tablet devices (landscape, 1024px and up) */
@media (min-width: 1024px) and (orientation: landscape) {
  .meet-contact-btn,
  .meet-gallery-btn {
    padding: 12px 25px; /* Medium padding */
    font-size: 16px; /* Medium font size */
  }
}

.product-slider-con {
  width: 80%;
}

.product-card {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.product-card img {
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 50%;
  object-fit: cover;
}

.product-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.lSAction > a {
  background-color: #000;
  border-radius: 50%;
}

.lSAction > a:hover {
  background-color: #333;
}

.lSAction > .lSPrev {
  background-position: 2px 0 !important;
  left: 30px !important;
}

.lSAction > .lSNext {
  background-position: -33px 0 !important;
  right: 30px !important;
}

/* Mobile responsiveness */
@media only screen and (max-width: 800px) {
  .meet-our-section {
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .meet-our-section h1 {
    font-size: 30px;
    text-align: center;
  }

  .product-card {
    padding: 10px;
  }

  .product-card img {
    width: 240px;
    height: 240px;
    margin-bottom: 10px;
  }

  .product-card h3,
  .product-card p,
  .product-card span {
    font-size: 14px;
  }

  /* Adjust navigation buttons for smaller screens */
  .lSAction > .lSPrev {
    left: 10px !important;
  }

  .lSAction > .lSNext {
    right: 10px !important;
  }
}

/* About Us Section */

.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-heading-con {
  text-align: center;
}

.about-heading-con h1 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
}

.about-img-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 200px;
}

.about-info-con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  width: 25%;
  flex-wrap: wrap;
}

.about-info-con p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.about-info-con a {
  background-color: #eee6d7;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.377);
  text-decoration: none;
  color: black;
}

.about-info-con a:hover {
  color: #eee6d7;
  background-color: black;
}

.about-img-con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}

.about-img-con img {
  width: 500px;
  height: auto;
  border-radius: 50%;
}

/* Tablet view */
@media (max-width: 768px) {
  .about-img-info-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-img-con {
    order: -1; /* This will place the image container before the text container */
    width: 80%;
  }

  .about-info-con {
    width: 80%;
  }

  .about-img-con img {
    width: 300px;
  }

  .about-heading-con h1 {
    font-size: 40px;
  }

  .about-info-con p {
    font-size: 18px;
  }

  .about-info-con a {
    padding: 10px 20px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .about-img-info-container {
    flex-direction: column;
    gap: 10px;
  }

  .about-img-con {
    order: -1; /* This will place the image container before the text container */
    width: 90%;
  }

  .about-info-con {
    width: 90%;
  }

  .about-img-con img {
    width: 250px;
  }

  .about-heading-con h1 {
    font-size: 30px;
  }

  .about-info-con p {
    font-size: 16px;
  }

  .about-info-con a {
    padding: 8px 16px;
    text-align: center;
    width: 95%;
  }
}

footer {
  margin-top: 50px;
}
