@charset "UTF-8";
/* Import Open Sans to use a lighter, more readable body font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
/* Styling specific to the About page */

/* Base container styling */
.about-page {
  padding: 2rem;
  background-color: #111;
  color: #fff;
  font-family: 'Anton', sans-serif;
}

.about-page h1,
.about-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #e53935;
  margin-bottom: 1rem;
}

.about-page h1 {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
}

.about-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.about-page p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 800px;
  /* Use the same readable font as testimonials */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* Hero section styling */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-02.png') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin-top: 80px; /* offset for sticky header */
}

/* Adjust hero padding on smaller screens to prevent text and buttons from spilling off-screen */
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 3rem 1rem;
  }
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #f2f2f2;
}

/* Story and owner sections */
.story-section,
.owner-section {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.story-section p,
.owner-section p {
  max-width: 600px;
}

.owner-image {
  flex: 1 1 300px;
  text-align: center;
}

.owner-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
}

.owner-content {
  flex: 1 1 400px;
}

/* For the Our Story section, add an image to the right that matches the size of the owner photo */
.story-image {
  flex: 1 1 300px;
  text-align: center;
}

.story-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
}

.story-content {
  flex: 1 1 400px;
}

/* Reduce footer logo size for consistency across pages */
.footer-logo img {
  /* Make the footer logo smaller to maintain a subtle presence */
  max-width: 35px;
  width: 100%;
  height: auto;
}

/* Center the "Ready to Play" and contact rows and constrain their width */
.about-cta, .contact-info {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background-color: #1e1e1e;
  border-radius: 8px;
}
.about-cta .xola-checkout {
  margin-top: 1rem;
}
