/* Global Styles */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f9f8f6;
  color: #222;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

/* Typography */
h1, h2 {
  font-family: "Spectral", serif;
  color: #111;
}

h1 {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom right, #ffffff, #f3f2f0);
  box-shadow: inset 0 -2px 8px rgba(0,0,0,0.05);
}

.hero-content {
  max-width: 700px;
}

.logo {
  max-width: 244px;
}

.tagline {
  font-size: 1.2rem;
  color: #444;
}

/* Celebrate Section */
.celebrate-section {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.celebrate-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 600;
}

.celebrate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.celebrate-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.celebrate-card:hover {
  transform: translateY(-6px);
}

.celebrate-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.celebrate-card h3 {
  font-size: 1.3rem;
  margin: 20px;
  color: #222;
}

.celebrate-card p {
  margin: 0 20px 20px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* Why It Matters Section */
.why-it-matters {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.why-it-matters h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.why-it-matters p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #374151;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to bottom, #fdfdfd, #f9f8f6);
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  flex: 1;
  min-width: 240px;
}

.newsletter button {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter button:hover {
  background: #333;
}

#form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #555;
}


/* Navbar inside Hero */
.navbar {
  position: absolute;
  top: 20px;
  right: 40px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #222;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #555;
}

/* Placeholder sections */
.featured, .about {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.featured h2, .about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}



/* Footer */
.site-footer {
  padding: 26px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #f0ece9;
}