/* style/about-us.css */

/* General Page Styling */
.page-about-us {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text on dark background */
  background-color: #1A202C; /* Primary dark background */
  line-height: 1.6;
  font-size: 16px;
}

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

.page-about-us-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about-us-section:last-of-type {
  border-bottom: none;
}

/* Headings */
.page-about-us h1 {
  font-size: 3.2em;
  color: #FFD700; /* Secondary color for main headings */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-about-us h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about-us h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53E3E; /* Accent color */
  border-radius: 2px;
}

.page-about-us h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-about-us p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-about-us-intro-text {
  text-align: center;
  max-width: 800px;
  margin: -20px auto 60px auto;
  font-size: 1.1em;
  color: #B0B0B0;
}

/* Buttons */
.page-about-us-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-about-us-btn-primary {
  background-color: #FFD700; /* Secondary color */
  color: #1A202C; /* Dark text on light button */
  border: 2px solid #FFD700;
}

.page-about-us-btn-primary:hover {
  background-color: #E53E3E; /* Accent color on hover */
  border-color: #E53E3E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about-us-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about-us-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Image Styling */
.page-about-us-responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.page-about-us-hero {
  background: linear-gradient(135deg, #1A202C 0%, #303F50 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about-us-hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.page-about-us-hero h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about-us-hero p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-about-us-hero-image {
  max-width: 80%;
  margin: 0 auto;
}

/* Content Layouts */
.page-about-us-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-about-us-content-wrapper.page-about-us-reverse-layout {
  flex-direction: row-reverse;
}

.page-about-us-text-content {
  flex: 1;
}

.page-about-us-image-content {
  flex: 1;
  min-width: 40%; /* Ensure image takes significant space */
}

/* Core Values Grid */
.page-about-us-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about-us-value-item {
  background-color: #2A313F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about-us-value-item:hover {
  transform: translateY(-8px);
  background-color: #353E4D;
  border-color: #FFD700;
}

.page-about-us-value-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about-us-value-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about-us-value-item h3 a:hover {
  color: #E53E3E;
}

/* Entertainment Ecosystem Grid */
.page-about-us-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about-us-game-item {
  background-color: #2A313F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about-us-game-item:hover {
  transform: translateY(-8px);
  background-color: #353E4D;
  border-color: #FFD700;
}

.page-about-us-game-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about-us-game-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about-us-game-item h3 a:hover {
  color: #E53E3E;
}

/* Future Vision */
.page-about-us-future-points {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-about-us-future-points p {
  margin-bottom: 20px;
}

/* Call to Action */
.page-about-us-call-to-action {
  background-color: #2A313F;
  text-align: center;
  padding: 60px 0;
  border-radius: 15px;
  margin-bottom: 80px;
}

.page-about-us-cta-content h2 {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-about-us-cta-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-about-us-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Contact Info */
.page-about-us-contact-info {
  max-width: 700px;
  margin: 40px auto 0 auto;
  text-align: center;
  background-color: #2A313F;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about-us-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-about-us-contact-info li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #F0F0F0;
}

.page-about-us-contact-info strong {
  color: #FFD700;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-about-us-hero h1 {
    font-size: 3em;
  }
  .page-about-us h2 {
    font-size: 2em;
  }
  .page-about-us h3 {
    font-size: 1.5em;
  }
  .page-about-us-intro-text {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-about-us-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-about-us-hero {
    padding: 80px 0;
  }
  .page-about-us-hero h1 {
    font-size: 2.5em;
  }
  .page-about-us-hero p {
    font-size: 1.1em;
  }
  .page-about-us h2 {
    font-size: 1.8em;
  }
  .page-about-us h3 {
    font-size: 1.3em;
  }
  .page-about-us-content-wrapper,
  .page-about-us-content-wrapper.page-about-us-reverse-layout {
    flex-direction: column;
    gap: 30px;
  }
  .page-about-us-text-content,
  .page-about-us-image-content {
    flex: none;
    width: 100%;
  }
  .page-about-us-values-grid,
  .page-about-us-games-grid {
    grid-template-columns: 1fr;
  }
  .page-about-us-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about-us-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about-us-cta-content p {
    font-size: 1em;
  }
  .page-about-us-contact-info {
    padding: 30px 20px;
  }
  .page-about-us-contact-info li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about-us-hero h1 {
    font-size: 2em;
  }
  .page-about-us-hero p {
    font-size: 1em;
  }
  .page-about-us h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-about-us h2::after {
    width: 60px;
  }
  .page-about-us-section {
    padding: 40px 0;
  }
  .page-about-us-btn {
    width: 100%;
  }
}