@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fff8f2;
  color: #3a2f1e;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  background-color: #ffc107;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.logo {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  color: #6a370c;
}
nav a {
  margin-left: 1.5rem;
  font-weight: 500;
}
.hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ffe082, #fff3e0);
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Fredoka', sans-serif;
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 6px 14px rgba(255, 152, 0, 0.2);
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 0.5rem;
  color: #e65100;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
footer {
  background: #ffe0b2;
  text-align: center;
  padding: 1.5rem;
  margin-top: 4rem;
  font-family: 'Inter', sans-serif;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
