/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light gray for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E2E8F0;
}

.page-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent gold */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__hero-button:hover {
  background-color: #E0B500; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-promotions__section-description,
.page-promotions__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #CBD5E0;
}

.page-promotions__intro {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-promotions__featured {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark */
}

.page-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #CBD5E0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #E0B500;
}

.page-promotions__all-offers {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-promotions__offer-list {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-promotions__offer-item {
  background-color: #2D3748;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions__offer-item:hover {
  background-color: #3A455A;
}

.page-promotions__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__item-title a:hover {
  color: #E0B500;
  text-decoration: underline;
}

.page-promotions__item-description {
  font-size: 1em;
  color: #CBD5E0;
  margin-bottom: 20px;
}

.page-promotions__item-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__item-button:hover {
  background-color: #E0B500;
}

.page-promotions__why-j88 {
  padding: 60px 0;
  background-color: #2D3748;
}

.page-promotions__cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #1A202C, #3A455A);
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
}

.page-promotions__cta-button--secondary {
  background-color: #4A5568;
  color: #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #5A6A7E;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__hero {
    height: 400px;
  }
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-button {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__hero-content {
    padding: 15px;
  }
  .page-promotions__hero {
    height: 350px;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__item-title {
    font-size: 1.5em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__text-block, .page-promotions__section-description {
    font-size: 0.95em;
  }
}