/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main for dark background */
  background-color: #0A0A0A; /* Body Background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Container for content sections */
.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  margin: 0 auto 20px auto;
  display: block;
}

.page-promotions__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

/* CTA Buttons Group */
.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Primary Button Style */
.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom Button Gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4); /* Glow effect */
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

/* Secondary Button Style */
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: transparent;
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Main color for border */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111; /* Dark text for bright background */
}

/* General Section Styling */
.page-promotions__content-section {
  padding: 60px 0;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF6D6;
  text-align: justify;
}

.page-promotions__text-block a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promotions__text-block a:hover {
  color: #F2C14E;
}

.page-promotions__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #FFF6D6;
  padding-left: 25px;
  position: relative;
}

.page-promotions__list-item::before {
  content: '★';
  color: #FFD36B;
  position: absolute;
  left: 0;
}

.page-promotions__list-item a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promotions__list-item a:hover {
  color: #F2C14E;
}

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

.page-promotions__promotion-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promotion-card .page-promotions__btn-primary {
  align-self: center;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* VIP Club Section */
.page-promotions__vip-club {
  text-align: center;
}

.page-promotions__vip-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-promotions__vip-benefits-list .page-promotions__list-item {
  background-color: rgba(242, 193, 78, 0.1); /* Subtle background for list items */
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6; /* Text Main */
}

.page-promotions__vip-benefits-list .page-promotions__list-item::before {
  content: '⭐';
  color: #FFD36B;
}

.page-promotions__vip-benefits-list .page-promotions__list-item strong {
  color: #FFD36B;
}


/* Why Choose Us Section */
.page-promotions__why-choose-us {
  text-align: center;
}

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

.page-promotions__feature-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

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

.page-promotions__feature-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6; /* Text Main */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a; /* Slightly lighter than Card BG for question */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #2a2a2a;
}

.page-promotions__faq-title {
  font-size: 1.2em;
  color: #F2C14E;
  margin: 0;
  font-weight: 600;
}

.page-promotions__faq-toggle {
  font-size: 1.8em;
  color: #FFD36B;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  text-align: justify;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 25px 25px;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section at bottom */
.page-promotions__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: rgba(242, 193, 78, 0.1); /* Light tint of main color for background */
  border-top: 1px solid #3A2A12;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions__hero-content {
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-promotions__subtitle {
    font-size: 1em;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions__content-section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 1em;
  }

  .page-promotions__list-item {
    font-size: 1em;
    padding-left: 20px;
  }

  .page-promotions__promotion-card {
    padding: 20px;
  }

  .page-promotions__promotion-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__vip-benefits-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__feature-item {
    padding: 20px;
  }

  .page-promotions__feature-title {
    font-size: 1.2em;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-title {
    font-size: 1.1em;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific override for promotions grid to ensure full width cards */
  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}

/* Ensure no CSS filter changes image colors */
.page-promotions img {
  filter: none !important;
}