* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}
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, footer {
  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;
}
.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;
}

.t2l3 {
  top: 20%;
  left: 30%;
}
.t5l6 {
  top: 50%;
  left: 60%;
}
.t7l2 {
  top: 70%;
  left: 20%;
}
.t4l8 {
  top: 40%;
  left: 80%;
}
/* Hero Section */
.hero {
  height: 100vh;
  background: url('image/banner.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FDFBF7;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  z-index: 1;
}
.hero-content {
  z-index: 2;
  max-width: 900px;
  transform: translateY(20px);
  opacity: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  margin: clamp(10px, 2vw, 20px) 0 clamp(20px, 4vw, 40px);
}
.hero-buttons .cta {
  margin: 0 clamp(10px, 2vw, 15px);
}

/* Gameplay Section */
.gameplay {
  background: #A8D5BA;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 5vw, 50px);
}
.gameplay-card {
  background: #F5E8C7;
  padding: clamp(15px, 3vw, 25px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
}
.gameplay-card:nth-child(2) { transform: rotate(2deg); }
.gameplay-card:nth-child(3) { transform: rotate(0deg); }
.gameplay-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  margin-bottom: clamp(10px, 2vw, 20px);
  object-fit: cover;
}
.gameplay-card::before {
  content: '';
  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 100" fill="none" stroke="%23F4C430" stroke-width="1"><path d="M10 90 Q50 70 90 90" /></svg>') repeat;
  opacity: 0.2;
}

/* Chickens Section */
.chickens {
  background: #FDFBF7;
  text-align: center;
  position: relative;
}
.chickens-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 5vw, 50px);
}
.chicken-card {
  width: clamp(160px, 20vw, 220px);
  background: #F4C430;
  padding: clamp(15px, 3vw, 20px);
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}
.chicken-card img {
  border-radius: 50%;
  width: 100%;
  height: clamp(140px, 18vw, 200px);
  object-fit: cover;
}
.chicken-card:hover {
  transform: scale(1.2) rotate(5deg);
}
.chicken-tooltip {
  display: none;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6F3C;
  color: #FDFBF7;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  z-index: 10;
}
.chicken-card:hover .chicken-tooltip {
  display: block;
}

/* Diner Section */
.diner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
  background: #F5E8C7;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.diner-text {
  flex: 1;
  padding: clamp(10px, 3vw, 20px);
}
.diner-image {
  flex: 1;
  position: relative;
}
.diner-image img {
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: rotate(3deg);
  object-fit: cover;
}

/* Social Section */
.social {
  text-align: center;
  background: #A8D5BA;
  position: relative;
}
.social-map {
  margin-top: clamp(30px, 5vw, 50px);
  position: relative;
  perspective: 1000px;
}
.social-map img {
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  height: auto;
}
.farm-icon {
  position: absolute;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: #F4C430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.farm-icon:hover {
  transform: rotateY(15deg) scale(1.3);
}

/* Events Section */
.events {
  background: #FDFBF7;
  text-align: center;
}
.events-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 20px);
  margin-top: clamp(30px, 5vw, 50px);
  justify-content: center;
}
.event-card {
  width: clamp(250px, 30vw, 300px);
  background: #F5E8C7;
  padding: clamp(10px, 2vw, 15px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.event-card:hover {
  transform: translateY(-10px) rotate(2deg);
}
.event-card img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 300px;
}

/* Reviews Section */
.reviews {
  background: #F5E8C7;
  text-align: center;
}
.accordion {
  max-width: 700px;
  margin: clamp(30px, 5vw, 50px) auto;
}
.accordion-item {
  margin-bottom: clamp(10px, 2vw, 15px);
  background: #FDFBF7;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.accordion-item:hover {
  transform: scale(1.05);
}
.accordion-header {
  padding: clamp(15px, 3vw, 20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 15px);
}
.accordion-header img {
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  border-radius: 50%;
}
.accordion-header h3, .accordion-header p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.accordion-content {
  display: none;
  padding: clamp(15px, 3vw, 20px);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.accordion-item.active .accordion-content {
  display: block;
}

/* Footer Section */
.footer {
  background: #8B4513;
  color: #FDFBF7;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 50px);
  margin-bottom: clamp(30px, 5vw, 50px);
}
.footer-social a {
  color: #F4C430;
  margin: 0 clamp(10px, 2vw, 15px);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: rotate(20deg);
}
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.footer-links a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* 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;
  }
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  .hero-buttons .cta {
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  .gameplay {
    clip-path: none;
  }
  .gameplay-card {
    transform: none;
  }
  .chickens-grid {
    gap: clamp(15px, 2vw, 20px);
  }
  .chicken-card {
    width: clamp(140px, 18vw, 180px);
  }
  .diner {
    flex-direction: column;
    clip-path: none;
  }
  .diner-image img {
    transform: none;
    max-width: 400px;
  }
  .social-map img {
    max-width: 600px;
  }
  .event-card {
    width: clamp(200px, 45vw, 250px);
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  .hero p {
    font-size: clamp(1rem, 2vw, 1.4rem);
  }
  .gameplay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chickens-grid {
    gap: clamp(20px, 3vw, 25px);
  }
  .diner {
    gap: clamp(15px, 3vw, 30px);
  }
  .social-map img {
    max-width: 700px;
  }
}