/* Загальні стилі */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Шрифти */
.logo, .btn-glow, .glow-link, .section-title, .modal-content h2 {
  font-family: 'Orbitron', sans-serif;
}

/* Хедер */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ff6b00;
}

.logo {
  font-size: 2rem;
  color: #ff6b00;
  text-shadow: 0 0 10px #ff6b00, 0 0 20px #ff6b00;
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ff6b00;
  cursor: pointer;
}

.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.glow-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.glow-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b00;
  box-shadow: 0 0 10px #ff6b00;
  transition: width 0.3s ease;
}

.glow-link:hover::after {
  width: 100%;
}

.glow-link:hover {
  color: #ff6b00;
  text-shadow: 0 0 5px #ff6b00;
}

/* Герой-секція */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #000 50%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 15px #ff6b00;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn-glow {
  background: #ff6b00;
  color: #000;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #ff6b00;
}

.btn-glow:hover {
  background: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 0 25px #ff6b00;
}

/* Каталог */
.catalog {
  padding: 5rem 5%;
  text-align: center;
  background: #000;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff6b00;
  text-shadow: 0 0 10px #ff6b00;
}

.products {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem;
  font-size: 1.3rem;
  color: #fff;
}

.product-card p {
  color: #aaa;
  padding: 0 1rem;
}

.price {
  display: block;
  font-weight: 700;
  color: #ff6b00;
  font-size: 1.3rem;
  margin: 1rem 0;
}

.glow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px #ff6b00;
  border-color: #ff6b00;
}

/* Про нас */
.about {
  padding: 5rem 5%;
  background: #000;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px dashed #ff6b00;
  border-radius: 15px;
  background: rgba(20, 20, 20, 0.5);
}

.about h2 {
  font-size: 2.8rem;
  color: #ff6b00;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px #ff6b00;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ddd;
}

/* Підвал */
.footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  border-top: 1px solid #333;
  margin-top: auto;
  color: #aaa;
}

/* Модальне вікно */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid #ff6b00;
  box-shadow: 0 0 30px #ff6b00;
  color: #fff;
}

.modal-content h2 {
  color: #ff6b00;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff6b00;
}

.close {
  color: #ff6b00;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  text-shadow: 0 0 10px #ff6b00;
}

.close:hover {
  color: #fff;
}

/* Адаптивність */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ff6b00;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 350px;
  }
}