/* style/promotions.css */

/* General Page Styling */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F5F5DC; /* Light background for text */
  background-color: #0A2239; /* Dark blue-black main background */
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.page-promotions-hero {
  background: linear-gradient(135deg, #0A2239 0%, #304E6C 100%); /* Gradient background for hero */
  color: #FFD700; /* Gold text for contrast */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-promotions-hero__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700; /* Gold for main title */
}

.page-promotions-hero__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #F5F5DC; /* Light text for subtitle */
}

.page-promotions-hero__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-hero__button:hover {
  background-color: #FFC400; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions-hero__image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-promotions-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Overview Section */
.page-promotions-overview {
  background-color: #0A2239; /* Main dark background */
  padding: 60px 0;
  color: #F5F5DC;
  text-align: center;
}

.page-promotions-overview__title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section title */
}

.page-promotions-overview__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #F5F5DC;
}

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

.page-promotions-benefit-item {
  background-color: #1A3A54; /* Slightly lighter dark blue for items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-promotions-benefit-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for benefit titles */
  margin-bottom: 10px;
}

.page-promotions-benefit-text {
  font-size: 1em;
  color: #F5F5DC;
}

.page-promotions-overview__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-overview__button:hover {
  background-color: #FFC400;
  transform: translateY(-2px);
}

/* Promotions List Section */
.page-promotions-list {
  background-color: #0A2239;
  padding: 60px 0;
  color: #F5F5DC;
}

.page-promotions-list__title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #FFD700;
}

.page-promotions-list__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: #F5F5DC;
}

.page-promotions-item {
  display: flex;
  flex-direction: column;
  background-color: #1A3A54;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-item:hover {
  transform: translateY(-5px);
}

.page-promotions-item__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-promotions-item__content {
  padding: 30px;
}

.page-promotions-item__title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions-item__text {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #F5F5DC;
}

.page-promotions-item__button {
  display: inline-block;
  background-color: #FF4500; /* Orange-red for action */
  color: #F5F5DC; /* Light text on orange-red */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-item__button:hover {
  background-color: #E63900;
}

.page-promotions-cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #1A3A54;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #F5F5DC;
}

.page-promotions-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

/* FAQ Section */
.page-promotions-faq {
  background-color: #0A2239;
  padding: 60px 0;
  color: #F5F5DC;
}

.page-promotions-faq__title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #FFD700;
}

.page-promotions-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-accordion-item {
  background-color: #1A3A54;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-accordion-header {
  width: 100%;
  background-color: #304E6C; /* Slightly lighter dark blue for header */
  color: #FFD700; /* Gold text */
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-promotions-accordion-header:hover {
  background-color: #4A6C8C;
}

.page-promotions-accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #1A3A54;
  color: #F5F5DC;
}

.page-promotions-accordion-content.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions-accordion-content p {
  margin: 0;
  padding-bottom: 10px;
}

/* Join Us CTA Section */
.page-promotions-join-us {
  background-color: #1A3A54;
  padding: 80px 0;
  text-align: center;
  color: #F5F5DC;
  position: relative;
  overflow: hidden;
}

.page-promotions-join-us__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions-join-us__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F5F5DC;
}

.page-promotions-join-us__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 20px 50px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-join-us__button:hover {
  background-color: #FFC400;
  transform: translateY(-4px);
}

.page-promotions-join-us__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-promotions-join-us__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-hero__title {
    font-size: 2.5em;
  }

  .page-promotions-hero__subtitle {
    font-size: 1.1em;
  }

  .page-promotions-overview__title,
  .page-promotions-list__title,
  .page-promotions-faq__title,
  .page-promotions-join-us__title {
    font-size: 2em;
  }

  .page-promotions-item {
    flex-direction: column;
  }

  .page-promotions-item__image {
    height: 250px;
  }

  .page-promotions-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-accordion-content.active {
    padding: 15px 20px;
  }

  .page-promotions-hero__button,
  .page-promotions-overview__button,
  .page-promotions-cta-button,
  .page-promotions-join-us__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-hero__title {
    font-size: 2em;
  }

  .page-promotions-hero__subtitle {
    font-size: 1em;
  }

  .page-promotions-overview__title,
  .page-promotions-list__title,
  .page-promotions-faq__title,
  .page-promotions-join-us__title {
    font-size: 1.8em;
  }

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

  .page-promotions-item__image {
    height: 200px;
  }

  .page-promotions-item__title {
    font-size: 1.5em;
  }

  .page-promotions-accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-promotions-accordion-content.active {
    padding: 12px 15px;
  }
}