body {
  margin: 0;
  font-family: sans-serif;
  color: white;
  background: #0c2b27;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #0c2b27;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}

.btn {
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  margin-left: 20px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: url("salmon_with_microgreens.png") no-repeat center center/cover;
  height: 90vh;
  position: relative;
}

.hero-text {
  max-width: 40%;
  background: #0c2b27;
  padding: 30px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.btn-outline {
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
}

.invite {
  background: #102928;
  color: white;
  padding: 60px 40px;
  text-align: center;
}

.invite h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.invite p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.invite-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.invite-form textarea,
.invite-form input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
}

.invite-form button {
  background: #b58c67;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.invite-form button:hover {
  background: #a17853;
}
