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

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

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

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

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

.members-page p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 800px;
}

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

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

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

/* Benefits list styling */
.benefits-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

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

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

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

.benefit-item p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

/* Membership options */
.membership-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

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

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

.membership-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.membership-card p.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 0.5rem;
}

.membership-card p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

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

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

/* Footer logo sizing: ensure the logo in the footer is smaller and consistent */
.footer-logo img {
  /* Uniformly smaller footer logo */
  max-width: 35px;
  width: 100%;
  height: auto;
}
