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

.page-promo-daily-weekly-offers__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text on dark background */
  position: relative;
  overflow: hidden;
}

.page-promo-daily-weekly-offers__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.page-promo-daily-weekly-offers__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  font-weight: bold;
  text-shadow: 0 0 10px rgba(252, 188, 69, 0.7);
}

.page-promo-daily-weekly-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-promo-daily-weekly-offers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-daily-weekly-offers__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promo-daily-weekly-offers__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo-daily-weekly-offers__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-offers__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-daily-weekly-offers__button--login:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promo-daily-weekly-offers__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  display: block;
}

.page-promo-daily-weekly-offers__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.page-promo-daily-weekly-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-promo-daily-weekly-offers__offers-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-promo-daily-weekly-offers__offer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-daily-weekly-offers__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-weekly-offers__card-image-wrapper {
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-promo-daily-weekly-offers__card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promo-daily-weekly-offers__card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 0 20px 15px 20px;
  font-weight: bold;
}

.page-promo-daily-weekly-offers__card-text {
  font-size: 1em;
  color: #666666;
  margin: 0 20px 25px 20px;
  flex-grow: 1;
}

.page-promo-daily-weekly-offers__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo-daily-weekly-offers__button--claim:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-offers__how-to-claim {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #F8F8F8;
  border-radius: 12px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-promo-daily-weekly-offers__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promo-daily-weekly-offers__step-item {
  text-align: center;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-daily-weekly-offers__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promo-daily-weekly-offers__step-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-daily-weekly-offers__step-text {
  font-size: 0.95em;
  color: #666666;
}

.page-promo-daily-weekly-offers__how-to-claim-image {
  text-align: center;
  margin-top: 40px;
}

.page-promo-daily-weekly-offers__how-to-claim-image img {
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-weekly-offers__why-happybingo {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo-daily-weekly-offers__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promo-daily-weekly-offers__advantage-item {
  background-color: #FDFDFD;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo-daily-weekly-offers__advantage-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo-daily-weekly-offers__advantage-text {
  font-size: 0.95em;
  color: #666666;
}

.page-promo-daily-weekly-offers__faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo-daily-weekly-offers__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promo-daily-weekly-offers__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-promo-daily-weekly-offers__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, JS will toggle */
}

.page-promo-daily-weekly-offers__faq-question.active + .page-promo-daily-weekly-offers__faq-answer {
  display: block;
}

.page-promo-daily-weekly-offers__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

.page-promo-daily-weekly-offers__cta-section .page-promo-daily-weekly-offers__section-title {
  color: #FCBC45;
}

.page-promo-daily-weekly-offers__cta-section .page-promo-daily-weekly-offers__section-description {
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-promo-daily-weekly-offers__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-daily-weekly-offers__button--view-all {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo-daily-weekly-offers__button--view-all:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-daily-weekly-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-weekly-offers__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-weekly-offers {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-promo-daily-weekly-offers__hero-section {
    padding: 40px 15px;
  }
  .page-promo-daily-weekly-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-weekly-offers__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-weekly-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-weekly-offers__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo-daily-weekly-offers__grid-container,
  .page-promo-daily-weekly-offers__steps-container,
  .page-promo-daily-weekly-offers__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-weekly-offers__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-weekly-offers__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo-daily-weekly-offers__offer-card,
  .page-promo-daily-weekly-offers__step-item,
  .page-promo-daily-weekly-offers__advantage-item,
  .page-promo-daily-weekly-offers__faq-item {
    padding: 20px 15px;
  }
  .page-promo-daily-weekly-offers__card-title {
    font-size: 1.3em;
  }
  .page-promo-daily-weekly-offers__how-to-claim-image img {
    max-width: 100%;
  }
  /* Ensure images do not overflow on mobile */
  .page-promo-daily-weekly-offers img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-daily-weekly-offers__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-weekly-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-weekly-offers__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-weekly-offers__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo-daily-weekly-offers__hero-section {
    padding: 30px 10px;
  }
  .page-promo-daily-weekly-offers__how-to-claim,
  .page-promo-daily-weekly-offers__offers-grid,
  .page-promo-daily-weekly-offers__why-happybingo,
  .page-promo-daily-weekly-offers__faq-section {
    padding: 0 10px;
  }
}