/*
Theme Name: SecretJobsOnline
Theme URI: https://secretjobsonline.com
Author: Rob Clev
Description: Custom theme for SecretJobsOnline - Free Marketing Memberships
Version: 1.0
License: Private
Text Domain: secretjobsonline
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #1cb287;
  --green-dk: #148f6c;
  --blue:     #0069ff;
  --blue-dk:  #0054cc;
  --grey-lt:  #f2f1f1;
  --grey-md:  #f2f4f7;
  --text:     #222;
  --text-lt:  #555;
  --white:    #fff;
  --max:      800px;
  --radius:   5px;
  --font-head: 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html, body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* =============================================
   HERO BANNER
============================================= */
.sjo-hero {
  background: var(--grey-lt);
  padding: 32px 16px 28px;
  text-align: center;
  border-bottom: 3px solid #e0e0e0;
}

.sjo-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.sjo-hero h1 span {
  color: var(--green);
}

.sjo-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text-lt);
  margin-top: 10px;
}

/* =============================================
   CLUB SECTIONS
============================================= */
.sjo-club {
  padding: 36px 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.sjo-section-wrap {
  width: 100%;
}

.sjo-section-wrap.bg-grey {
  background: var(--grey-md);
}

.sjo-section-wrap.bg-white {
  background: var(--white);
}

.sjo-club h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
}

.sjo-club-logo {
  display: block;
  max-width: 300px;
  margin: 0 auto 20px;
}

.sjo-club ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 24px;
  color: rgba(10,10,10,0.85);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.sjo-club ul li {
  margin-bottom: 6px;
}

.sjo-btn-wrap {
  text-align: center;
}

.sjo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff !important;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--blue);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  min-height: 60px;
}

.sjo-btn:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: #fff !important;
}

.sjo-btn.green {
  background: var(--green);
  border-color: var(--green);
}

.sjo-btn.green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

/* =============================================
   SPECIAL INVITE FOOTER SECTION
============================================= */
.sjo-invite {
  padding: 36px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.sjo-invite h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #161616;
  margin-bottom: 20px;
}

.sjo-invite-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 28px !important;
}

.sjo-invite-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
}

.sjo-invite-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 480px) {
  .sjo-btn { font-size: 1rem; padding: 14px 20px; }
  .sjo-hero { padding: 24px 12px; }
}
