/* style/promotions.css */

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #eef2f6;
}

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

.page-promotions__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

.page-promotions__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-promotions__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #001a33;
}

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

.page-promotions__btn--secondary:hover {
  background-color: #003366;
  color: #FFCC00;
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #003366;
  border: 1px solid #003366;
  padding: 10px 20px;
}

.page-promotions__btn--outline:hover {
  background-color: #003366;
  color: #FFCC00;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  line-height: 1.2;
}

.page-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: #f8f8f8;
}

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

.page-promotions__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  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.1);
}

.page-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 51, 102, 0.3));
}

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

.page-promotions__feature-text {
  color: #666;
}

/* Promotion List Section */
.page-promotions__list {
  background-color: #eef2f6;
}

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

.page-promotions__promotion-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-promotions__promotion-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-promotions__promotion-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promotion-actions {
  display: flex;
  gap: 10px;
  margin-top: auto; /* Pushes buttons to the bottom */
  flex-wrap: wrap;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #f8f8f8;
}

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

.page-promotions__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-promotions__step-number {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFCC00;
  color: #003366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #003366;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__step-text {
  color: #666;
}

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

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

/* Terms & Conditions Section */
.page-promotions__terms {
  background-color: #eef2f6;
}

.page-promotions__term-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__term-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__term-heading {
  font-size: 1.25em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__terms .page-promotions__section-description a {
  color: #003366;
  text-decoration: underline;
}

.page-promotions__terms .page-promotions__section-description a:hover {
  color: #FFCC00;
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
  background-color: #f8f8f8;
}

.page-promotions__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__responsible-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__responsible-list {
  flex: 2;
  list-style: disc inside;
  color: #555;
  font-size: 1.1em;
  padding-left: 20px;
}

.page-promotions__responsible-list li {
  margin-bottom: 15px;
}

/* Bottom CTA */
.page-promotions__cta-bottom {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
  .page-promotions__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__responsible-image {
    max-width: 100%;
  }
  .page-promotions__responsible-list {
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__hero-actions, .page-promotions__cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__feature-item, .page-promotions__step-item {
    padding: 25px;
  }
  .page-promotions__step-item {
    padding-top: 50px;
  }
  .page-promotions__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
  .page-promotions__promotion-title {
    font-size: 1.2em;
  }
  .page-promotions__promotion-text {
    font-size: 0.95em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__cta-title {
    font-size: 1.6em;
  }
  .page-promotions__btn {
    width: 100%;
  }
}