/* membership.css — matches the white header/theme used on contact.css */

/* Reset / base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------- Header (same pattern as contact.css) ----------------------- */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { color: #9d0405; font-weight: 700; font-size: 24px; }
.logo img { height: 100px; }  /* same visual scale as contact page */

.desktop-nav ul { list-style: none; display: flex; }
.desktop-nav ul li { margin-left: 30px; }
.desktop-nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
}
.desktop-nav ul li a.active::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: #9d0405;
}

/* Mobile menu toggle + sidebar (same structure as other pages) */
.mobile-menu-toggle { display: none; width: 30px; height: 21px; cursor: pointer; }
.mobile-menu-toggle span {
  display: block; height: 3px; width: 100%; background: #111; border-radius: 3px; margin-bottom: 3px;
}

.mobile-sidebar {
  position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
  background: #fff; box-shadow: -5px 0 15px rgba(0,0,0,.1);
  transition: right .3s ease; padding: 60px 30px; z-index: 1000; overflow-y: auto;
}
.mobile-sidebar.active { right: 0; }
.sidebar-close { position: absolute; top: 20px; right: 20px; font-size: 30px; cursor: pointer; color: #111; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 16px; }
.mobile-nav a {
  display: block; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.1);
  text-decoration: none; color: #111; font-weight: 500; font-size: 16px;
}
.mobile-nav a.active { color: #9d0405; }

/* ----------------------- Membership content ----------------------- */
.membership-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  background: #fff;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  padding: 22px 26px;
  margin-bottom: 24px;
}
.card h2 { font-size: 20px; margin-bottom: 8px; color: #111; }
.card p { color: #4b5563; font-size: 15px; margin-bottom: 10px; }
.card .sub { margin: 12px 0 6px; font-weight: 700; color: #111; }

/* list with red icon bullets */
.card ul { list-style: none; padding-left: 0; }
.card li {
  position: relative; padding-left: 26px; margin: 8px 0; color: #111; font-size: 14px;
}
.card li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid #9d0405;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #c82333;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease;
  margin-top: 12px;
}
.btn:hover { background: #a71d2a; }

/* Responsive */
@media (max-width: 992px){
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo img { height: 80px; }
}

@media (max-width: 768px){
  .logo img { height: 60px; }
  .page-title { font-size: 24px; }
}