/* === Базові стилі === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b1d12;
  color: white;
}

a {
  text-decoration: none;
}

/* === Хедер === */
.header {
  background-color: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  max-width: 150px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #00ff94;
}

/* === Герой === */
.hero {
  position: relative;
  background: url('wp-image/bigbamboo-banner3.jpg') center/cover no-repeat;
  padding: 60px 40px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* === Текст і кнопки === */
.hero-text {
  flex: 1 1 50%;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

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

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border: 2px solid #00ff94;
  color: #00ff94;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  text-shadow: 0 0 8px #000;
}

.btn.primary {
  background-color: #00ff94;
  color: #ffffff;
}

.btn.primary:hover {
  background-color: #00cc75;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === Бонус-блок === */
.bonus-box {
  flex: 1 1 280px;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  max-width: 280px;
}

.bonus-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.bonus-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn.bonus {
  background-color: #00ff94;
  color: #ffffff;
  border: none;
}

.btn.bonus:hover {
  background-color: #00cc75;
}

.dark-glow {
  background: #111;
  box-shadow: 0 0 25px rgba(0, 255, 148, 0.4), 0 0 50px rgba(0, 255, 148, 0.2);
  color: #fff;
}

/* === Основний контент === */
.main-content {
  padding: 60px 20px;
  background-color: #101f14;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00ff94;
}

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

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #0f2b1d;
  color: white;
  box-shadow: 0 0 10px rgba(0,255,148,0.1);
}

.info-table th, .info-table td {
  padding: 15px;
  border: 1px solid #00ff94;
  text-align: left;
}

.info-table th {
  background-color: #0a1a12;
  color: #00ff94;
  width: 40%;
}

/* === Адаптація === */
@media (max-width: 292px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    flex: 1 1 100%;
  }

  .bonus-box {
    margin-top: 30px;
    max-width: 220px;
    padding: 20px;
  }

  .nav {
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .logo img {
    height: 40px;
  }

  .bonus-box {
    max-width: 200px;
    padding: 16px;
  }

  .main-content h2 {
    font-size: 24px;
  }

  .main-content p, .info-table td, .info-table th {
    font-size: 15px;
  }
}
/* Випадаюче меню */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #00ff94;
}

/* Приховане за замовчуванням */
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #111;
  min-width: 180px;
  box-shadow: 0 0 10px rgba(0, 255, 148, 0.2);
  z-index: 10;
  margin-top: 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Стиль пунктів у меню */
.dropdown-content a {
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: #0f2b1d;
  color: #00ff94;
}

/* Показує меню при наведенні на батьківський блок */
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.info-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .info-table-scroll table { width: 100%; border-collapse: collapse; }

.footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #0f2b1d;
  margin-top: 60px;
}

.footer-content {
  color: #00ff94;
  font-size: 15px;
  text-shadow: 0 0 6px rgba(0, 255, 148, 0.2);
}








.bonus-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 50, 0, 0.7);
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.bonus-content {
  background: #e8f5e9;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 12px 28px rgba(0, 80, 0, 0.3);
  border: 3px solid #66bb6a;
}

.bonus-image {
  width: 120px;
  margin-bottom: 20px;
}

.bonus-title {
  color: #2e7d32;
  font-size: 22px;
  margin-bottom: 15px;
}

.bonus-button {
  background-color: #43a047;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.bonus-button:hover {
  background-color: #388e3c;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 22px;
  color: #2e7d32;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
}
