/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #003366, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promotions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-promotions__button--primary {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__button--secondary:hover {
  background-color: #002244;
  color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-1px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #f0f5fa; /* Lighter variant of primary for contrast */
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  color: #666;
  font-size: 0.95em;
}

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

.page-promotions__promotion-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions__promotion-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__promotion-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__promotion-title a {
  color: #003366;
  text-decoration: none;
}

.page-promotions__promotion-title a:hover {
  color: #FFD700;
}

.page-promotions__promotion-description {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim {
  background-color: #e6f0fa; /* Lighter blue background */
}

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

.page-promotions__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  color: #666;
  font-size: 0.95em;
}

.page-promotions__step-text a {
  color: #003366;
  text-decoration: underline;
}

.page-promotions__step-text a:hover {
  color: #FFD700;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed #ccc;
}

.page-promotions__cta-text {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__responsible-gambling {
  background-color: #fcfcfc;
}

.page-promotions__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
  color: #444;
}

.page-promotions__faq {
  background-color: #e6f0fa;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-promotions__faq-question.active::after {
  content: '-';
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__grid, .page-promotions__promotions-list, .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__promotion-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__promotion-title {
    font-size: 1.5em;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }
}