/* General Styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo img {
  max-width: 150px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #aaa;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #111;
    padding: 15px;
    border-radius: 8px;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #111, #000);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  color: #aaa;
}

/* Services */
.services {
  padding: 40px 20px;
}
.pricelist {
  max-width: 600px;
  width: 90%;
  margin-top: 20px;
  border: 2px solid #444;
  border-radius: 8px;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.scroll-gallery img {
  width: 320px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 2px solid #333;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}

.scroll-gallery::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-btn.left {
  left: 5px;
}

.scroll-btn.right {
  right: 5px;
}


/* Instagram */
.instagram {
  padding: 40px 20px;
  background: #111;
}
.qr {
  max-width: 200px;
  margin: 20px 0;
}

/* Contact */
.contact {
  padding: 40px 20px;
}

/* Footer */
footer {
  padding: 15px;
  background: #000;
  font-size: 0.9rem;
  color: #666;
}
