/* Resetting default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body,
p {
  font-family: "Open Sans", sans-serif;
  line-height: 25px;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  color: #fff9f9;
  font-weight: 400;
}


/* Heading styles */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #a6af88;
  font-weight: 600;
  font-family: "Unna", serif;
}

h1,
.h1 {
  font-size: 38px;
  line-height: 48px;
}

h2,
.h2 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

h3,
.h3 {
  font-size: 24px;
  font-weight: 700;
}

h4,
.h4 {
  color: #d28a33;
  font-size: 20px;
  line-height: 28px;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 26px;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 22px;
}

/* Container */
.container {
  width: 90%; /* Adjust as needed */
  max-width: 75%; /* Maximum width for large screens */
  padding: 0 15px;
  margin: auto;
}

/* Flex container for filters and pet list */
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.flex .dropdown {
  flex: 1 1 auto;
  max-width: calc(20% - 10px); /* Adjust based on the number of dropdowns */
}

/* Button styles */
.btn {
  border-radius: 0px;
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 10px;
  transition: 350ms;
  letter-spacing: 1px;
  font-size: 12px;
  border: 1px solid transparent;
  background-color: #ce8460;
}

.btn:hover {
  background-color: #000;
  border-color: #000;
}


/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #3498db; /* Blue button */
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  width: 100px;
  height: 50px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero section styles */
/* Hero section styles */
.hero-section {
  position: relative;
  background-image: url("img/photo-1526363269865-60998e11d82d.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the rgba values for desired shadow intensity */
  z-index: 1;
}

.hero-section .about-picku {
  position: relative;
  z-index: 2;
}


.hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-section .btn-primary {
  margin-top: 15px;
}

/* About section styles */
.about-section {
  padding: 100px 0;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 30px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.search {
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px; /* Adjust as needed */
  height: 50px;
  margin-top: 10px;
  margin-bottom: 20px;
}


      .creator-info {
        display: flex;
        align-items: center;
        margin: 16px 0;
      }
      
      .creator-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 16px;
      }


/* Adopt a pet section styles */
.adopt-section {
  padding: 50px 0;
  text-align: center;
}

.adopt-section h2 {
  margin-bottom: 30px;
}

.pet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  min-width: 30px;
  min-height: 50px;
}

.pet-card {
  transition: transform 0.3s ease;
  box-sizing: border-box; 
}

.pet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pet-card h2 {
  font-size: 1.5rem;
  color: #333333;
  margin: 15px 0;
}

.pet-card p {
  color: #666666;
  margin: 5px 0;
}

.pet-card .btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #333333;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.pet-card .btn:hover {
  background-color: #ffffff;
}


@media (min-width: 992px) {
  .pet-card {
    flex: 1 1 calc(33.333% - 30px); 
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .pet-card {
    flex: 1 1 calc(50% - 30px); 
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .pet-card {
    flex: 1 1 100%; 
    max-width: 100%;
  }
}

.pagination {
  margin-top: 20px;
}

.pagination .page-item {
  display: inline-block;
  margin-right: 5px;
}

.pagination .page-link {
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #f0f0f0;
}

.pagination .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.pagination .page-item.disabled .page-link {
  pointer-events: none;
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    width: 95%; /* Adjust for smaller screens */
  }

  .flex .dropdown {
    max-width: 100%; /* Full width for dropdowns on small screens */
  }

  .search {
    width: 100%;
    max-width: 100%; /* Full width for search input */
  }

  .hero-section {
    padding: 100px 0;
  }

  .about-section {
    padding: 70px 0;
  }

  .adopt-section {
    padding: 30px 0;
  }

  .contact-section {
    padding: 70px 0;
  }

  .pagination {
    text-align: center;
  }
}
#noData{
  display: none;
}

.nodata{
  display: none;
}

#spinner{
  display: none;
}
#see_more{
  display: none;  
}

.review-card {
  border: 1px solid #ddd; 
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  width: 250px;
  flex: 0 0 auto;
}
.review-card img{
  width: 70px;
  height: 70px;
  border-radius:50px;

}
.review-card h4 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
}

.review-card p {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.review-card small {
  display: block;
  color: #999;
  font-size: 0.8em;
}

