/* style/promotions.css */

/* Base Styles & Typography */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1D36; /* Darker shade of main color for overall background */
  line-height: 1.6;
}

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

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__text {
  font-size: 1.1em;
  color: #D0D0D0; /* Slightly lighter grey for paragraph text */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text a {
  color: #FFD700; /* Gold for links in text */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__text a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-promotions__hero {
  position: relative;
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1D36 100%);
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for hero title */
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

/* Buttons */
.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text */
  font-size: 1.1em;
  border: none;
}

.page-promotions__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--secondary {
  background-color: #1A2B4C; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  font-size: 1em;
}

.page-promotions__btn--secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-promotions__btn--tertiary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

/* Offers List */
.page-promotions__offers-list {
  background-color: #1A2B4C; /* Main brand blue */
}

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

.page-promotions__offer-card {
  background-color: #0F1D36; /* Darker blue for card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

.page-promotions__offer-description {
  font-size: 1em;
  color: #C0C0C0; /* Light grey for description */
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Terms & Conditions / FAQ */
.page-promotions__terms {
  position: relative;
  background-color: #0F1D36;
  overflow: hidden;
}

.page-promotions__terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.page-promotions__terms-item {
  background-color: #1A2B4C;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__terms-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__terms-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}

/* Call to Action */
.page-promotions__cta {
  background-color: #1A2B4C;
  text-align: center;
  padding: 80px 0;
}

.page-promotions__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__terms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
    min-height: 400px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__offer-card {
    padding: 25px;
  }
  .page-promotions__offer-title {
    font-size: 1.5em;
  }
  .page-promotions__terms-item {
    padding: 25px;
  }
  .page-promotions__terms-title {
    font-size: 1.6em;
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__offer-card {
    padding: 20px;
  }
  .page-promotions__offer-image {
    height: 150px;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
}