* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
                           
body {
  line-height: 1.6;
}

/* Header */
header {
  background: #1b3a57;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

nav a:hover {
  color: #ffd166;
}

/* Hero */
.hero {
  height: 300px;
  background: url("../img/hero.jpg") center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  text-shadow: 2px 2px 5px black;
}

/* Spots */
.spots {
  padding: 40px;
  text-align: center;
}

.spot-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.spot {
  width: 250px;
}

.spot img {
  width: 100%;
  border-radius: 10px;
}

/* Information */
.info {
  background: #f4f4f4;
  padding: 40px;
  text-align: center;
}

/* Contact */
.contact {
  padding: 40px;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

button {
  background: #ef476f;
  border: none;
  padding: 10px;
  width: 100%;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #d62839;
}

/* Footer */
footer {
  background: #1b3a57;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .spot-box {
    flex-direction: column;
    align-items: center;
  }
}