/* Base styles for the static site */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
}
nav {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  gap: 2rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #00b4d8;
}
main {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2rem;
}
h1, h2, h3 {
  color: #222;
}
img, video, audio {
  max-width: 100%;
  border-radius: 8px;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 1rem auto;
  overflow: hidden;
  border-radius: 12px;
  background: #eee;
}
.carousel img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #f3f3f3;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: #00b4d8;
}
button {
  cursor: pointer;
  border: none;
  background: #00b4d8;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  margin: 0.5rem 0;
  transition: background 0.2s;
}
button:hover {
  background: #0096c7;
}
footer {
  text-align: center;
  color: #888;
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
  .carousel img {
    height: 200px;
  }
} 