/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6c7b7f 0%, #8e9aaf 50%, #a8b8c8 100%);
  border-radius: 20px;
  margin: 40px 0;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero::before {
  content: "🐱";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #fff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e8f4f8;
  margin-bottom: 40px;
  font-weight: 300;
}

.cat-image-container {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.cat-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cat-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.image-overlay {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6b9d;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Section Styles */
section {
  margin: 60px 0;
}

.section-content {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.section-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6c7b7f, #8e9aaf, #a8b8c8);
}

.section-content h2 {
  font-size: 2.5rem;
  color: #6c7b7f;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.about-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #8e9aaf;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.about-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.about-card h3 {
  font-size: 1.4rem;
  color: #6c7b7f;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-card p {
  color: #666;
  line-height: 1.6;
}

/* Fun Facts Section */
.fun-facts {
  background: linear-gradient(135deg, #a8b8c8 0%, #6c7b7f 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: white;
}

.fun-facts .section-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fun-facts h2 {
  color: white;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.fact-item:hover {
  transform: translateX(10px);
}

.fact-number {
  background: #ff6b9d;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fact-item p {
  margin: 0;
  line-height: 1.5;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.placeholder-photo {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: #6c757d;
  text-align: center;
}

.placeholder-photo span {
  font-size: 3rem;
  margin-bottom: 10px;
}

.placeholder-photo p {
  font-weight: 500;
  margin: 0;
}

/* Contact Section */
.contact {
  text-align: center;
}

.contact-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #6c7b7f 0%, #495057 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  margin-top: 60px;
}

.footer-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.paw-prints {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.paw-prints span {
  font-size: 1.5rem;
  animation: pawBounce 2s ease-in-out infinite;
}

.paw-prints span:nth-child(2) {
  animation-delay: 0.5s;
}

.paw-prints span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pawBounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cat-image {
    width: 250px;
    height: 250px;
  }

  .section-content {
    padding: 30px 20px;
  }

  .about-grid,
  .facts-container,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    padding: 40px 20px;
  }

  .fun-facts,
  .footer {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cat-image {
    width: 200px;
    height: 200px;
  }

  .section-content h2 {
    font-size: 2rem;
  }
}
