/* === ОБЩИЕ СТИЛИ === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

/* === КОНТЕЙНЕР === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === КНОПКИ === */
.btn {
  display: inline-block;
  background: #e6b800;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d4a600;
}

/* === HEADER === */
header {
  background-color: #1a1a1a;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e6b800;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar nav ul li a {
  color: #f0f0f0;
  font-weight: 500;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #f0f0f0;
}

/* === ГЛАВНЫЙ БАННЕР === */
.hero {
  background: url('img/banner.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* === ПРЕИМУЩЕСТВА === */
.features {
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 250px;
  background: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #e6b800;
}

/* === ВИДЕО === */
.promo-video {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.promo-video h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}

.promo-video video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* === БЛОК НАМ ДОВЕРЯЮТ === */
.trusted-by.dark {
  background: #0f0f0f;
  padding: 60px 20px;
  text-align: center;
  color: #f0f0f0;
}

.trusted-by .section-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.trusted-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}


.logo-item {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.logo-item:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* === ОТЗЫВЫ === */
.reviews {
  background: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.reviews h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.review-card {
  background: #2b2b2b;
  margin: 20px auto;
  padding: 25px;
  max-width: 600px;
  border-left: 5px solid #e6b800;
  border-radius: 10px;
  font-style: italic;
  font-size: 18px;
  color: #ccc;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #999;
}

/* === CTA === */
.cta {
  background: linear-gradient(90deg, #e6b800, #ffce00);
  color: #000;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta .btn {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta .btn:hover {
  background: #333;
}

/* === FOOTER === */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
  .navbar nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #1a1a1a;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  .burger {
    display: flex;
  }

  .navbar.active nav ul {
    display: flex;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .trusted-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #333;
  border-top: 6px solid #e6b800;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #333;
  border-top: 6px solid #e6b800;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1.5s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#preloader.fade-out {
  animation: preloaderFadeOut 1s ease forwards;
}

@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}



.preloader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #333;
  border-top: 6px solid #e6b800;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#preloader.fade-out {
  animation: preloaderFadeOut 1s ease forwards;
}

@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-inner {
  text-align: center;
}

.logo-circle {
  width: 135px;
  height: 135px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: radial-gradient(circle, #e6b800, #8d6a00);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 0 20px #e6b80055;
}

.logo-circle img {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.4));
}

.preloader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px #e6b80055;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 35px #e6b800aa;
  }
}

#preloader.fade-out {
  animation: preloaderFadeOut 1s ease forwards;
}

@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


.why-us {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

.why-us .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #e6b800;
}

.why-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.why-item {
  flex: 1 1 30%;
  background: #1b1b1b;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(230, 184, 0, 0.2);
}

.why-item img {
  width: 60px;
  margin-bottom: 20px;
}

.why-item h3 {
  color: #e6b800;
  font-size: 20px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  color: #ccc;
}

.inspiration {
  padding: 80px 0;
  background: #101010;
  color: #fff;
}

.inspiration .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #e6b800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
 
 
.category-filters {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: #444;
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.product-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.product-card p.price {
  font-weight: bold;
  color: #222;
}








.catalog-page {
  padding: 50px 0;
  background-color: #f6f7f9;
}

.catalog-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #333;
  color: #333;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #333;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #222;
}

.product-card p {
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 20px;
  color: #1a1a1a;
}






body.dark-theme {
  background-color: #121212;
  color: #eaeaea;
}

.catalog-page {
  padding: 50px 0;
  background-color: #121212;
}

.catalog-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  font-size: 16px;
  background-color: transparent;
  border: 2px solid #777;
  color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #fff;
  color: #121212;
  border-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #1e1e1e;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #fff;
}

.product-card p {
  padding: 0 15px;
  font-size: 14px;
  color: #aaa;
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 20px;
  color: #ffb300 !important; /* Яркий цвет и принудительное применение */
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}



.about-page {
  padding: 60px 0;
  background-color: #121212;
  color: #eee;
}

.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.about-text {
  flex: 1 1 50%;
  font-size: 18px;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.why-us h2,
.partners-block h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.why-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.why-item {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-item img {
  width: 60px;
  margin-bottom: 15px;
}

.trusted-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.logo-item img {
  height: 60px;
  filter: brightness(0.95);
  transition: 0.3s;
}

.logo-item img:hover {
  filter: brightness(1.2);
}


.contact-page {
  padding: 60px 0;
  background-color: #121212;
  color: #eee;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-info h2, .contact-form h2 {
  margin-bottom: 20px;
  color: #ffb300;
}

.contact-info p, .contact-form p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background: #2c2c2c;
  color: #fff;
}

.contact-form .btn {
  background-color: #ffb300;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background-color: #ffaa00;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}


.made-by-banner {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.made-by-banner a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.made-by-banner a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #fff;
}


.maroz-banner {
  background-color: #007bff;
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  border-radius: 6px 6px 0 0;
}

.maroz-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.maroz-banner a:hover {
  text-decoration: none;
  color: #e2e2e2;
}