body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #faf8f7;
  color: #1a1a1a;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Background decorative images */
body::before,
body::after,
.bg-decoration {
  content: "";
  position: fixed;
  background-image: url("https://pftyuawncgpmjstfvnjx.supabase.co/storage/v1/object/public/main/background/DEGRADE%20ROSE.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: -1;
  animation: pulsate 5s ease-in-out infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(1.5);
  }
  90% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(0.5);
  }
}

body::before {
  top: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
}

body::after {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  width: 250px;
  height: 250px;
}

.bg-decoration {
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  transform-origin: center;
  animation: pulsate 6.4s ease-in-out infinite;
  animation-delay: -0.4s;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 12px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #1a1a1a;
}

.about-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem 4rem 2rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-section .subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.content-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff9052;
}

.content-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.content-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.content-section li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.content-section li::before {
  content: "🌟";
  flex-shrink: 0;
  font-size: 1.2rem;
}

.highlight {
  background: linear-gradient(
    120deg,
    rgba(255, 144, 82, 0.2) 0%,
    rgba(255, 144, 82, 0.1) 100%
  );
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
}

.fox-section {
  background: linear-gradient(
    135deg,
    rgba(255, 144, 82, 0.1),
    rgba(255, 255, 255, 0.8)
  );
  border: 2px solid rgba(255, 144, 82, 0.3);
}

.mission-section {
  background: linear-gradient(
    135deg,
    rgba(255, 144, 82, 0.05),
    rgba(255, 255, 255, 0.9)
  );
  text-align: center;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9052, #ff7a2e);
  margin: 2rem auto;
  border-radius: 2px;
}

.emoji {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.footer {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 4rem;
  padding: 2rem 0;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9052;
}

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 0.5rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .content-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }

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

  .about-container {
    padding: 0 1rem 2rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content {
    padding: 0 1rem;
  }
}
