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

:root {
  --primary: #2563eb;
  --highlight: #fde68a;
  --bg-light: #f9fafb;
  --font-title: 'Fredoka One', cursive;
  --font-body: 'Open Sans', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: #111827;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.logo {
  height: 50px;
}

.top-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 1rem;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: #374151;
}




.spin-box {
  background: white;
  padding: 2rem 2rem 0.5rem;
  margin: 2rem auto;
  border: 3px solid #fde047;
  border-radius: 1rem;
  max-width: 575px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 1.15rem;
}

.spin-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#spinForm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#spinForm input {
  width: 100%;
  padding: 1rem;
  font-size: 1.15rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: white;
}

#spinForm button {
  background: #2563eb;
  color: white;
  font-weight: 700;
  border: none;
  padding: 1rem;
  font-size: 1.15rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

#spinForm button:hover {
  background: #1e40af;
}

.disclaimer {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.gallery {
  padding: 3rem 1rem 1rem;
  background: white;
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.gallery-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-images figure {
  flex: 1 1 250px;
  max-width: 280px;
}

.gallery-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gallery-images figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.about {
  background: #f0f4ff;
  padding: 3rem 1rem;
}

.about h2 {
  text-align: center;
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.about-content .text {
  max-width: 400px;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.about-content li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.about-content img {
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
}

.why-box {
  background: #fffbea;
  border: 2px solid var(--highlight);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  max-width: 420px;
  margin: 2rem auto 0 auto;
}

.why-box h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #f59e0b;
}

.why-box ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.9rem;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  margin-top: 3rem;
}

canvas#wheelCanvas {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  border-radius: 50%;
}
