body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background: #1f2937;
  color: white;
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  background: url('../images/hero.jpg') center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

section {
  padding: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.media-item img,
.media-item video {
  width: 100%;
  border-radius: 8px;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  margin: 10px 0;
  padding: 10px;
}

button {
  background: #2563eb;
  color: white;
  padding: 10px;
  border: none;
}