  body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

header, footer {
  background-color: #1e1e1e;
  padding: 10px 0;
}

.navigation {
  background-color: #1e1e1e;
}

.navigation .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.navigation .logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
}

.navigation .menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.navigation .menu li {
  margin-left: 15px;
}

.navigation .menu li a,
.navigation .menu li button {
  color: #eee;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  transition: background 0.3s ease;
}

.navigation .menu li a:hover,
.navigation .menu li button:hover {
  background: #333;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .navigation .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  .navigation .menu li {
    margin: 0;
  }
  .navigation .menu li a,
  .navigation .menu li button {
    padding: 12px 20px;
  }
  .navigation .menu.active {
    display: flex;
  }
}

#banner {
  position: relative;
  background: url('https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExenFudTB3ZHdodjlsdm1jY245amVrNDg5dDRpcXJrYXQ2dmF5emw1YyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xT9DPlAUKTl1GeZjC8/giphy.gif')
    no-repeat center center / cover;
  min-height: 300px;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#banner .inner {
  position: relative;
  z-index: 2;
}

#banner .inner h1 {
  font-size: clamp(1.5em, 5vw, 3em);
  margin: 0 0 20px;
}

#banner .inner p {
  font-size: clamp(1em, 3vw, 1.2em);
  margin: 0 0 30px;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b0060f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

footer p {
  margin: 0;
  font-size: 0.9em;
  color: #aaa;
}
