/* Fonts & Base */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fffaf3;
  color: #3b2e2a;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1511920170033-f8396924c348') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  text-align: center;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.btn {
  background-color: #f3e4c8;
  color: #3b2e2a;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  width: 250px;
}

.features.dark {
  background-color: #3b2e2a;
  color: #f3e4c8;
}

.features.dark .feature-box {
  background-color: #4b3b36;
  color: #f3e4c8;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
}
