@font-face {
  font-family: "Google Sans Text";
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/googlesanstext/v21/5aUu9-KzpRiLCAt4Unrc-xIKmCU5qEp2iw.woff2");
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans Text", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    "Helvetica";
}

nav {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0.75rem;
  backdrop-filter: blur(16px);
  margin: 0.5rem;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.flex-gap-x-1 {
  gap: 0.25rem;
}

a > img {
  border-radius: 0;
  margin: 0;
  width: 35px;
  width: 40px;
  height: auto;
}

.ml-2 {
  margin-left: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-800 {
  color: #1f2937;
}

.hidden {
  display: none;
}

.sm\:block {
  display: block;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.space-x-5 > * {
  margin-right: 1.25rem;
}

.text-gray-700 {
  color: #374151;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.no-underline {
  text-decoration: none;
}

.sm\:hidden {
  display: none;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-gray-900 {
  color: #111827;
}

.cursor-pointer {
  cursor: pointer;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.fill-none {
  fill: none;
}

.stroke-current {
  stroke: currentColor;
}

.stroke-2 {
  stroke-width: 2;
}

.p-5 {
  padding: 1.25rem;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.flex-col {
  flex-direction: column;
}

.items-end {
  align-items: flex-end;
}

.gap-y-5 {
  gap: 1.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.justify-end {
  justify-content: flex-end;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.cursor-pointer {
  cursor: pointer;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
.pt-12 {
  padding-top: 4rem;
}
/* Header Styles */
header {
  background-color: #ff7e5f;
  color: white;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  opacity: 0.9;
}

/* Main Content */
main {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

/* Filter Section */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #ff7e5f;
  color: white;
}

/* Cats Grid */
.cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Cat Card */
.cat-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.cat-card:hover {
  transform: translateY(-9px);
}

.cat-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.cat-info {
  padding: 1.2rem;
}

.cat-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.cat-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.cat-description {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.adopt-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #ff7e5f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.adopt-btn:hover {
  background-color: #ff6b4a;
}

/* Footer */
footer {
  background-color: #ffffff;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Responsive Design */
@media (min-width: 600px) {
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 2.2rem;
  }
}

code: footer {
  padding: 1rem;
  background-color: transparent;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.sm\:flex {
  display: flex;
}

.sm\:items-center {
  align-items: center;
}

.sm\:justify-between {
  justify-content: space-between;
}

.list-none {
  list-style-type: none;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.md\:justify-end {
  justify-content: flex-end;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.sm\:mb-0 {
  margin-bottom: 0;
}

.no-underline {
  text-decoration: none;
}

.mr-4 {
  margin-right: 1rem;
}

.md\:mr-6 {
  margin-right: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-gray-500 {
  color: #6b6b6b;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.flex-row {
  flex-direction: row;
}

.sm\:justify-end {
  justify-content: flex-end;
}

.gap-x-4 {
  column-gap: 1rem;
}

.w-7 {
  width: 1.75rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.sm\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.lg\:my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.block {
  display: block;
}

.sm\:text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
}
