* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}
.logo  {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Annie Use Your Telescope', cursive;
}
a {
  text-decoration: none;
  color: inherit;
}

body {
  background: #FDFBF7;
  color: #8B4513;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Annie Use Your Telescope', cursive;
}
button, .cta {
  background: linear-gradient(45deg, #F4C430, #FF6F3C);
  border: none;
  padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 50px;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
button:hover, .cta:hover {
  transform: scale(1.15) rotate(2deg);
  box-shadow: 0 0 15px rgba(255, 111, 60, 0.7);
}
section {
  padding: clamp(40px, 8vw, 80px) clamp(10px, 3vw, 20px);
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.9);
  color: #FDFBF7;
  padding: clamp(10px, 2vw, 15px) 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 20px);
}
.header-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
}
.nav-links a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #FF6F3C;
}
.burger-menu {
  display: none;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 69, 19, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.mobile-menu a:hover {
  color: #FF6F3C;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}

/* Story Section */
.story {
  background: #A8D5BA;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.story h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(20px, 3vw, 30px);
  margin-top: 50px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 5vw, 50px);
}
.story-card {
  background: #F5E8C7;
  padding: clamp(15px, 3vw, 25px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.story-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}
.story-card:hover {
  transform: translateY(-10px);
}

/* Team Section */
.team {
  background: #FDFBF7;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 5vw, 50px);
}
.team-card {
  background: #F4C430;
  padding: clamp(15px, 3vw, 20px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.team-card img {
  width: clamp(120px, 15vw, 150px);
  height: clamp(120px, 15vw, 150px);
  border-radius: 50%;
}
.team-card:hover {
  transform: scale(1.1);
}

/* Vision Section */
.vision {
  background: #F5E8C7;
  text-align: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.vision-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  margin-top: clamp(20px, 3vw, 30px);
  transform: rotate(2deg);
}

/* Community Section */
.community {
  background: #A8D5BA;
  text-align: center;
}
.community-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 20px);
  margin-top: clamp(30px, 5vw, 50px);
  justify-content: center;
}
.community-card {
  width: clamp(180px, 25vw, 200px);
  background: #F5E8C7;
  padding: clamp(10px, 2vw, 15px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.community-card img {
  width: 100%;
  height: clamp(160px, 20vw, 200px);
  border-radius: 10px;
}
.community-card:hover {
  transform: translateY(-10px) rotate(2deg);
}

/* Journey Section */
.journey {
  background: #FDFBF7;
  text-align: center;
}
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 5vw, 50px);
  justify-content: center;
}
.timeline-item {
  width: clamp(200px, 25vw, 250px);
  background: #F4C430;
  padding: clamp(10px, 2vw, 15px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.timeline-item img {
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  border-radius: 50%;
}
.timeline-item:hover {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: #8B4513;
  color: #FDFBF7;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin: clamp(20px, 3vw, 30px) 0;
}
.contact-social a {
  color: #F4C430;
  margin: 0 clamp(10px, 2vw, 15px);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  transition: transform 0.3s ease;
}
.contact-social a:hover {
  transform: rotate(20deg);
}

/* Wave Background Animation */
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none" stroke="%23A8D5BA" stroke-width="1"><path d="M0 10 Q25 0 50 10 T100 10" /></svg>') repeat-x;
  opacity: 0.3;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .story, .vision, .contact {
    clip-path: none;
  }
  .story-grid, .team-grid, .timeline {
    grid-template-columns: 1fr;
  }
  .community-card, .timeline-item {
    width: clamp(200px, 45vw, 250px);
  }
  .vision-image img {
    transform: none;
    max-width: 400px;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .story-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-gallery, .timeline {
    gap: clamp(15px, 2vw, 20px);
  }
  .vision-image img {
    max-width: 500px;
  }
}