body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#0e0e0e;
  color:white;
  scroll-behavior: smooth;
}
header {
  background: linear-gradient(90deg,#0a0a0a,#111);
  padding:20px 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  border-bottom:2px solid #00ff88;
  position: sticky;
  top: 0;
  z-index: 999;
}
header img {
  max-width:120px;
  margin-right:20px;
}
header div {
  text-align:left;
}
h1 { color:#00ff88; margin:0; }
p { margin:5px 0 0 0; }
.nav-buttons {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  margin:20px 0;
  gap:15px;
}
.nav-buttons a {
  background:#1a1a1a;
  color:#00ff88;
  padding:15px 25px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition: transform 0.2s, background 0.2s;
}
.nav-buttons a:hover {
  background:#00ff88;
  color:#111;
  transform: scale(1.05);
}
section {
  padding:60px 20px;
  text-align:center;
}
.card {
  background:#1a1a1a;
  padding:25px;
  margin:20px auto;
  max-width:350px;
  border-radius:10px;
  border:1px solid #00ff88;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #00ff88;
}
button {
  background:#00ff88;
  border:none;
  padding:12px 20px;
  margin-top:15px;
  cursor:pointer;
  font-weight:bold;
  color:#111;
}
input, select, textarea {
  padding:10px;
  margin:8px 0;
  width:90%;
  max-width:400px;
  border:none;
  border-radius:5px;
}
.gallery {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}
.gallery img {
  width:100%;
  border-radius:8px;
  cursor:pointer;
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.05);
}
#lightbox {
  position: fixed;
  display:none;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items:center;
  z-index:1000;
}
#lightbox img {
  max-width:90%;
  max-height:80%;
  border-radius:8px;
}
#lightbox span {
  position:absolute;
  top:20px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
}
.carousel {
  position:relative;
  max-width:600px;
  margin:20px auto;
  overflow:hidden;
}
.carousel-inner {
  display:flex;
  transition: transform 0.5s ease;
}
.review-card {
  min-width:100%;
  box-sizing:border-box;
  background:#1a1a1a;
  padding:20px;
  border-radius:10px;
  border:1px solid #00ff88;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.carousel-controls button {
  background: rgba(0,255,136,0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #111;
}
input[type=range] {
  width:90%;
  margin:15px 0;
}
footer {
  background:#111;
  padding:20px;
  text-align:center;
  border-top:2px solid #00ff88;
}
footer a {
  color:#00ff88;
  text-decoration:none;
}
@media(max-width:600px){
  header { flex-direction:column; text-align:center; }
  header img { margin-bottom:10px; margin-right:0; }
  .nav-buttons { flex-direction:column; }
  section { padding:40px 10px; }
}
/* Gallery captions - visible below images */
.gallery figure {
  margin: 0;
}

.gallery figcaption {
  text-align: center;
  padding: 10px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #00ff88;
  font-size: 0.9em;
  border-radius: 0 0 8px 8px;
}