/* style/promo.css */
.page-promo {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Dark blue background for hero text */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle overlay to make text readable */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E5A000; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #E5A000; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-cta-button:hover {
  background-color: #f0c24d;
  transform: translateY(-3px);
}

.page-promo__overview-section,
.page-promo__how-to-claim-section,
.page-promo__why-choose-section,
.page-promo__terms-conditions-section,
.page-promo__responsible-gaming-section,
.page-promo__final-cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-promo__overview-section,
.page-promo__why-choose-section,
.page-promo__final-cta-section {
  background-color: #ffffff;
}

.page-promo__how-to-claim-section {
  background-color: #f0f5fa; /* Light blueish background */
}

.page-promo__overview-title,
.page-promo__how-to-claim-title,
.page-promo__why-choose-title,
.page-promo__terms-conditions-title,
.page-promo__responsible-gaming-title,
.page-promo__final-cta-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue heading */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__overview-text,
.page-promo__how-to-claim-text,
.page-promo__why-choose-text,
.page-promo__terms-conditions-text,
.page-promo__responsible-gaming-text,
.page-promo__final-cta-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #E5A000;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #f0c24d;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-promo__claim-step-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 35px;
  text-align: center;
  border-top: 5px solid #E5A000; /* Gold top border */
}

.page-promo__claim-step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__claim-step-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__how-to-claim-cta-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__how-to-claim-cta-button:hover {
  background-color: #1a3b7d;
  transform: translateY(-3px);
}

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

.page-promo__advantage-item {
  text-align: center;
  padding: 25px;
  background-color: #f0f5fa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promo__advantage-heading {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__advantage-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promo__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-promo__accordion-header {
  background-color: #0A2463;
  color: #ffffff;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #1a3b7d;
}

.page-promo__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fcfcfc;
  color: #555555;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.page-promo__full-terms-link,
.page-promo__responsible-gaming-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo__full-terms-link:hover,
.page-promo__responsible-gaming-link:hover {
  color: #E5A000;
}

.page-promo__final-cta-section {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-promo__final-cta-title {
  color: #E5A000; /* Gold for final call to action */
  font-size: 3em;
  margin-bottom: 25px;
}

.page-promo__final-cta-text {
  color: #f0f0f0;
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promo__final-cta-button {
  display: inline-block;
  background-color: #E5A000;
  color: #0A2463;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promo__final-cta-button:hover {
  background-color: #f0c24d;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__overview-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-choose-title,
  .page-promo__terms-conditions-title,
  .page-promo__responsible-gaming-title,
  .page-promo__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-section {
    padding: 60px 0;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__overview-section,
  .page-promo__how-to-claim-section,
  .page-promo__why-choose-section,
  .page-promo__terms-conditions-section,
  .page-promo__responsible-gaming-section,
  .page-promo__final-cta-section {
    padding: 40px 0;
  }
  .page-promo__overview-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-choose-title,
  .page-promo__terms-conditions-title,
  .page-promo__responsible-gaming-title,
  .page-promo__final-cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promo__overview-text,
  .page-promo__how-to-claim-text,
  .page-promo__why-choose-text,
  .page-promo__terms-conditions-text,
  .page-promo__responsible-gaming-text,
  .page-promo__final-cta-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__promo-cards-grid,
  .page-promo__claim-steps,
  .page-promo__advantage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__promo-card,
  .page-promo__claim-step-item,
  .page-promo__advantage-item {
    padding: 25px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-image {
    height: 180px;
  }
  .page-promo__claim-step-title {
    font-size: 1.4em;
  }
  .page-promo__how-to-claim-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    margin-top: 30px;
  }
  .page-promo__advantage-icon {
    width: 80px;
    height: 80px;
  }
  .page-promo__advantage-heading {
    font-size: 1.3em;
  }
  .page-promo__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__accordion-content {
    padding: 0 20px;
  }
  .page-promo__accordion-content p {
    padding: 10px 0;
  }
  .page-promo__final-cta-title {
    font-size: 2.2em;
  }
  .page-promo__final-cta-text {
    font-size: 1em;
  }
  .page-promo__final-cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  /* Ensure all content images in mobile are responsive and not smaller than 200px where applicable */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image {
    max-width: 100%;
    height: auto; /* Allow height to adjust based on aspect ratio */
    min-height: 200px; /* Ensure minimum height for content images */
  }
  .page-promo__advantage-icon {
    min-width: 200px; /* Enforce min 200px for content images */
    min-height: 200px;
    width: 100%; /* Make it fill its container */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__overview-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-choose-title,
  .page-promo__terms-conditions-title,
  .page-promo__responsible-gaming-title,
  .page-promo__final-cta-title {
    font-size: 1.5em;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__card-image {
    height: 150px; /* Adjust for smaller screens */
    min-height: 200px; /* Still maintain minimum size */
  }
  .page-promo__claim-step-title {
    font-size: 1.2em;
  }
  .page-promo__final-cta-title {
    font-size: 1.8em;
  }
  .page-promo__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}