/* style/about.css */

.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #0A192F, #1A3A6D); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-about__mission-vision-section,
.page-about__why-choose-us-section,
.page-about__partnership-section,
.page-about__responsible-gaming-section,
.page-about__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__mission-vision-section,
.page-about__partnership-section {
  background-color: #0F284D; /* Slightly lighter dark blue */
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent for section titles */
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
}

.page-about__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F8F8F8;
}

.page-about__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__image--small {
  max-width: 400px;
  margin: 40px auto 0 auto;
}

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

.page-about__feature-item {
  background-color: #1A3A6D; /* Medium dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  background-color: #2A4A7D;
}

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

.page-about__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-about__responsible-gaming-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.1em;
  color: #F8F8F8;
}

.page-about__cta-bottom-section {
  background-color: #1A3A6D;
  padding: 100px 0;
}

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

.page-about__cta-bottom-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-about__cta-button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #1A3A6D;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-about__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__content-grid {
    flex-direction: column;
  }

  .page-about__content-grid--reverse {
    flex-direction: column;
  }

  .page-about__cta-bottom-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__partnership-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-bottom-section {
    padding: 60px 0;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__text-content p {
    font-size: 1em;
  }

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

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

  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__section-title {
    font-size: 1.6em;
  }

  .page-about__cta-bottom-title {
    font-size: 1.8em;
  }
  
  .page-about__container {
    padding: 0 15px;
  }
}