/* Variables */
:root {
  --beige: #f5f1e6;
  --brown: #7c4a2d;
  --brown-dark: #5e3c2d;
  --accent: #a67b5b;
  --font-primary: 'Helvetica Neue', sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--beige);
  color: var(--brown-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hero Section (used for Coming Soon) */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #f5f1e6, #e7ddd0);
  animation: fadeIn 1s ease-in-out;
  flex-grow: 1;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--brown);
  color: var(--beige);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}