body {
  margin: 0;
  font-family: Arial;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #2c7a7b;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 80vh;
  background: url('photo1.jpeg') center/cover;
  color: white;
  text-align: center;
  padding-top: 100px;
}

/* BUTTON */
.btn {
  background: orange;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 50px;
  text-align: center;
}

.light {
  background: #f4f4f4;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 15px;
  width: 250px;
}

/* GALLERY */
.gallery img {
  width: 300px;
  margin: 10px;
}

/* FORM */
form {
  max-width: 300px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin: 10px 0;
  padding: 10px;
}

/* FOOTER */
footer {
  background: #2c7a7b;
  color: white;
  padding: 10px;
}