@charset "UTF-8";
/* Styling specific to the Groups page */

.groups-page {
  padding: 2rem;
  background-color: #111;
  color: #fff;
  font-family: 'Anton', sans-serif;
}

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

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

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

.groups-page p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 800px;
  /* Use a lighter, more readable font for body copy */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

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

/* Adjust hero padding for smaller screens */
@media (max-width: 768px) {
  .groups-hero {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .groups-hero {
    padding: 3rem 1rem;
  }
}

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

/* Section styling */
.groups-section {
  margin-top: 4rem;
}

.groups-section .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.highlight-box {
  background-color: #1a1a1a;
  border-left: 4px solid #3399ff;
  padding: 1.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex: 1 1 300px;
  max-width: 400px;
}

.highlight-box:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.highlight-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
}

.highlight-box p {
  margin: 0;
  font-size: 1rem;
  color: #ccc;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* CTA styling */
.groups-cta {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.groups-cta .xola-checkout {
  margin-top: 1rem;
}

/* Footer logo sizing: ensure the logo in the footer is smaller and consistent */
.footer-logo img {
  /* Further shrink the footer logo for consistency with other pages */
  max-width: 35px;
  width: 100%;
  height: auto;
}
