
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: #fdf3e7; /* warm off-white */
}

section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero {
  background: url('../../images/coming-soon.png') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: flex-start; /* Align to the left */
  align-items: flex-start;     /* Align to the top */
  padding: 3rem 4rem;          /* Space from edges */
  position: relative;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 0, 0.55); /* subtle dark overlay */
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.5); /* Optional: Dark translucent background for readability */
  padding: 2rem;
  border-radius: 12px;
}

h1 {
  font-size: 2.5rem;
  color: #f8e4d9; /* Soft beige that blends nicely */
}

h2 {
  color: #f2d1b3;
  margin-top: 1rem;
}

p {
  color: #f5e3d6;
  line-height: 1.6;
}

.notify-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.25rem;
}

.notify-form input {
  width: 100%;
  max-width: 300px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 6px;
}

.notify-form button {
  background: #222;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.notify-form button:hover {
  background-color: #444;
}

html {
  scroll-behavior: smooth;
}