body {
  margin: 0;
  font-family: sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
a { color: hotpink; text-decoration: none; }
.hero {
  position: relative;
  background: url('img/_MG_7039.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero .content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.hero .buttons a {
  background: hotpink;
  color: white;
  padding: 0.75em 1.5em;
  margin: 0 0.5em;
  border-radius: 30px;
  font-weight: bold;
}
section {
  padding: 4em 2em;
}
.about .images, .gallery .images {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2em;
}
.about .images img, .gallery .images img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  filter: blur(4px);
  transition: filter 0.3s ease;
}
.gallery .images img:hover, .about .images img:hover {
  filter: none;
}
.gallery .cta {
  display: inline-block;
  margin-top: 2em;
  background: hotpink;
  color: white;
  padding: 1em 2em;
  border-radius: 30px;
  font-weight: bold;
}
.facts blockquote {
  font-style: italic;
  margin: 1em auto;
  max-width: 600px;
}
form {
  max-width: 500px;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
input, textarea {
  padding: 0.75em;
  border: none;
  border-radius: 10px;
  font-size: 1em;
}
button {
  background: hotpink;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background: deeppink;
}
footer {
  padding: 2em;
  background: #111;
  color: #777;
  font-size: 0.9em;
}
.footer-links {
  margin-bottom: 1em;
}
.footer-links a {
  margin: 0 1em;
  color: #ccc;
  font-size: 0.9em;
}