 :root {
      --bg: #0a0a0a;
      --text: #eee;
      --accent: #c39b36;
      --light: #1a1a1a;
      --hover: #d4af37;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Open Sans', sans-serif;
      line-height: 1.7;
    }

    header {
	  	
      background: #000;
      padding: 20px 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .logo {
      color: var(--accent);
      font-weight: 700;
      font-size: 26px;
      text-transform: uppercase;
    }

    nav a {
      color: var(--accent);
      margin-left: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--hover);
    }

    section {
      padding: 80px 20px;
      max-width: 1100px;
      margin: auto;
    }

    h2 {
      color: var(--accent);
      font-size: 32px;
      margin-bottom: 25px;
      border-left: 5px solid var(--accent);
      padding-left: 15px;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    li {
      margin-bottom: 12px;
      font-size: 18px;
    }
.main-hero {
  background: linear-gradient(to right, #111, #1a1a1a);
  padding: 100px 20px 80px;
  text-align: center;
  border-bottom: 2px solid var(--accent);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.main-hero h2 {
  border: none;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-hero p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #ccc;
}

.contact-links-hero {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

  .contact-button.viber {
      background-color: #7b519d;
      color: white;
    }
    .contact-button.telegram {
      background-color: #229ED9;
      color: white;
    }
    .contact-button.instagram {
      background-color: #C13584;
      color: white;
    }
    .contact-button.tiktok {
      background-color: #010101;
      color: white;
    }
    .contact-button.phone {
      background-color: #444;
      color: white;
    }
    .contact-links-hero .contact-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 8px;
      margin: 5px;
      text-decoration: none;
      font-weight: bold;
    }
.contact-button img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.contact-button.whatsapp {
  background-color: #25D366;
}

.contact-button.telegram {
  background-color: #0088cc;
}

.contact-button.phone {
  background-color: #444;
}

.contact-button:hover {
  opacity: 0.95;
  transform: scale(1.03);
}

.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  background: #222;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.swiper-button-next,
.swiper-button-prev {
  color: #d4af37;
}

.map-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background-color: #f9f9f9; 
}

.map-container {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  
}


@media (max-width: 600px) {
  .main-hero h2 {
    font-size: 28px;
  }

  .contact-links-hero {
    flex-direction: column;
    align-items: center;
  }

  .contact-button {
    width: 100%;
    max-width: 300px;
  }
}


    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      justify-items: center;
    }

    .gallery img {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 8px;
      background: #222;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.03);
    }
.services-list {
  background: #111;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.services-list li {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  color: #ddd;
}

.services-list li:last-child {
  border-bottom: none;
}
    footer {
      background: #000;
      color: #aaa;
      text-align: center;
      padding: 50px 20px;
      font-size: 15px;
      border-top: 1px solid #222;
    }

    footer p {
      margin-bottom: 10px;
    }

    .banner img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.contact-block {
  background: #111;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-top: 60px;
}

.contact-block h2 {
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--accent);
}
.faq-block {
  background: #111;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #1b1b1b;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent);
}

.faq-answer {
  font-size: 16px;
  color: #ccc;
}

.about-block {
  background: #111;
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-top: 60px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #ddd;
  line-height: 1.8;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main-logo-wrapper {
  margin-bottom: 5px;
}

.main-logo {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}


    @media (max-width: 768px) {
      nav {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
      }

      .logo {
        font-size: 20px;
      }

      .gallery {
        grid-template-columns: 1fr;
      }
    }