body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdf6e3; /* Bright parchment / sandal vintage */
  color: #3e2b1f;
}

/* Navbar */
header {
  background-color: #f1d8a3;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  color: #4a321a;
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #3e2b1f;
  font-weight: 600;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff1d0, #fbe6b3);
  color: #3e2b1f;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #ffc857;
  color: #3e2b1f;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

/* Fun Fact Marquee */
.fact-marquee {
  overflow: hidden;
  background-color: #f6e1b5;
  padding: 1rem 0;
  margin-top: 2rem;
}

.fact-track {
  display: flex;
  gap: 2rem;
  animation: scrollFacts 40s linear infinite;
}

.fact-card {
  background: #fff8e1;
  color: #3e2b1f;
  padding: 1rem;
  border-radius: 10px;
  min-width: 250px;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

@keyframes scrollFacts {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Footer */
footer {
  text-align: center;
  background-color: #e6c48f;
  padding: 1.5rem 1rem;
  color: #3e2b1f;
  margin-top: 3rem;
  font-size: 0.95rem;
}

footer .slogan {
  font-style: italic;
  margin-top: 5px;
  font-size: 1rem;
  color: #5a3a20;
}
