/* styles.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #222;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  min-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 10px;
  font-size: 2rem;
  cursor: pointer;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .carousel-button {
    font-size: 1.5rem;
  }

  nav a {
    display: inline-block;
    margin: 5px;
  }
}
