/* AHFF Membership Page - Professional Layout */

.membership-main {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.mem-hero {
  background-color: #f7fafc;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images\roundtable.jpg');
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  padding: 4rem 1.5rem;
}
.mem-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0b6fb8;
  margin-bottom: 0.5rem;
}
.mem-hero p {
  color: #475569;
  font-size: 1.1rem;
}

.mem-section {
  padding: 4rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.mem-section.alt {
  background-color: #f8fafc;
}
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.section-split.reverse {
  direction: rtl;
}
.section-split.reverse .section-text {
  direction: ltr;
}
.section-text h2 {
  font-size: 1.7rem;
  color: #0b6fb8;
  margin-bottom: 1rem;
}
.section-text h3 {
  color: #0b6fb8;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.section-text p {
  color: #475569;
  line-height: 1.6;
}
.section-text ul {
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
}
.section-text li {
  margin-bottom: 0.5rem;
}
.section-text strong {
  color: #0b6fb8;
}
.section-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease forwards;
}
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.9s ease forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .section-split { grid-template-columns: 1fr; }
  .section-split.reverse { direction: ltr; }
  .section-image { order: -1; }
}
@media (max-width: 600px) {
  .container { padding: 2rem 1rem; }
  .mem-hero h1 { font-size: 2rem; }
}
