/* General reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0f0f0f;
  color: #eee;
}

/* Navigation bar */
header {
  background: #111;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  padding: 6px 10px;
}

nav a:hover {
  color: #ff4081;
  border-bottom: 2px solid #ff4081;
}

/* Banner (Swiper v12 uses .swiper) */
.swiper {
  width: 100% !important;
  height: 40vh !important; /* force banner to 40% of viewport */
}

.swiper-wrapper,
.swiper-slide {
  height: 100% !important;
}

.swiper-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

h1, h2 {
  margin-bottom: 20px;
  color: gold;
  text-shadow: 2px 2px 6px #ff4081;
}

p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #ccc;
}

/* Gallery thumbnails */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #333;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: #ff4081;
  box-shadow: 0 0 12px #ff4081;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img, .lightbox video {
  max-width: 90%;
  max-height: 80%;
  border: 3px solid gold;
  box-shadow: 0 0 20px #ff4081;
}

.controls {
  margin-top: 15px;
}

.controls button {
  background: #111;
  color: #eee;
  border: 2px solid gold;
  padding: 8px 12px;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.controls button:hover {
  background: #ff4081;
  color: #fff;
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  border-top: 2px solid gold;
  box-shadow: 0 -2px 8px #ff4081;
}

footer a {
  margin: 0 10px;
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: gold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav {
    gap: 15px;
  }
  section {
    padding: 40px 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 0.95rem;
  }
  .swiper {
    height: 35vh !important;
  }
}

@media (max-width: 480px) {
  nav {
    justify-content: center;
    gap: 10px;
  }
  nav a {
    font-size: 0.9rem;
    padding: 4px 6px;
  }
  section {
    padding: 30px 10px;
  }
  h1 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.9rem;
  }
  footer {
    font-size: 0.9rem;
  }
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .gallery img {
    height: 90px;
  }
  .swiper {
    height: 30vh !important;
  }
}
