
body {
  background-color: #000;
  color: #fff;
  font-family: 'Lora', serif;
  margin: 0;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
}
a { color: #0b74de; }
.btn.primary {
  background: #0b74de;
  color: #fff;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 6px;
}
.container { max-width: 1000px; margin: 0 auto; padding: 1rem; }
.site-header { background: #111; padding: 1rem; border-bottom: 1px solid #333; }
.logo img { height: 60px; }
.footer { text-align: center; padding: 1rem; border-top: 1px solid #333; }
.nav-list { list-style: none; display: flex; gap: 1rem; padding: 0; }
.nav-list a { text-decoration: none; color: #ddd; }
.nav-list a:hover { color: #0b74de; }

/* Slideshow */
.slideshow-container { position: relative; max-width: 900px; margin: 2rem auto; }
.slide { display: none; }
.slide img { width: 100%; border-radius: 8px; }
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  user-select: none;
}
.next { right: 0; }
.prev:hover, .next:hover { color: #0b74de; }
