/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #121212; /* Very dark background */
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #000000 100%); /* Dark blue to black gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

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

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  padding: 15px 30px;
  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 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__hero-button:hover {
  background-color: #E5C100; /* Darker gold on hover */
  transform: translateY(-3px);
}

.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;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-promotions__overview-section, .page-promotions__promotion-categories, .page-promotions__detail-pages-section, .page-promotions__cta-section {
  padding: 60px 0;
  background-color: #1A237E; /* Dark blue background for sections */
  margin-bottom: 20px;
}

.page-promotions__overview-section {
  background-color: #0F1640; /* Slightly darker blue */
}

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

.page-promotions__feature-item {
  background-color: #1A237E; /* Dark blue card background */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2a348e; /* Lighter dark blue on hover */
}

.page-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
}

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

.page-promotions__category-item {
  background-color: #0F1640; /* Darker blue card background */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold border */
}

.page-promotions__category-item h3, .page-promotions__category-item p, .page-promotions__category-item a {
  padding: 0 25px;
}

.page-promotions__category-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for category titles */
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-promotions__category-text {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-promotions__category-button {
  display: block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  padding: 12px 25px;
  border-radius: 0 0 15px 15px; /* Rounded bottom corners */
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__category-button:hover {
  background-color: #E5C100; /* Darker gold on hover */
}

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

.page-promotions__detail-item {
  background-color: #0F1640; /* Darker blue card background */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__detail-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.page-promotions__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__detail-title a {
  color: #FFD700; /* Gold for detail titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
  color: #E5C100; /* Darker gold on hover */
  text-decoration: underline;
}

.page-promotions__detail-description {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__detail-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start; /* Align button to start */
}

.page-promotions__detail-button:hover {
  background-color: #E5C100; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions__cta-section {
  background-color: #0F1640; /* Darker blue background */
  text-align: center;
  padding: 80px 20px;
}

.page-promotions__cta-section .page-promotions__section-title {
  color: #FFD700; /* Gold title */
}

.page-promotions__cta-section .page-promotions__section-description {
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
}

.page-promotions__cta-button--primary:hover {
  background-color: #E5C100; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__cta-button--secondary {
  background-color: #1A237E; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #0F1640; /* Darker blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions__container {
    padding: 30px 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__features-grid, .page-promotions__category-grid, .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions__feature-title {
    font-size: 1.6em;
  }
  .page-promotions__category-image {
    height: 180px;
  }
  .page-promotions__category-title {
    font-size: 1.4em;
  }
  .page-promotions__detail-title {
    font-size: 1.3em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
  }
  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__feature-title {
    font-size: 1.4em;
  }
  .page-promotions__category-title {
    font-size: 1.2em;
  }
  .page-promotions__detail-title {
    font-size: 1.1em;
  }
  .page-promotions__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}