:root{
  --bg:#0b0b0b;
  --panel:#121212;
  --panel2:#0f0f0f;
  --text:#f4f4f4;
  --muted:#c9c9c9;
  --gold:#d6b35c;
  --line:rgba(255,255,255,.12);
  --shadow:0 16px 46px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:10px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,11,.76);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-mark{
  border-radius:999px;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
}
.brand-title{
  font-weight:800;
  letter-spacing:.06em;
}
.brand-subtitle{
  font-size:.92rem;
  color:var(--muted);
}
.brand-location{
  font-size:.86rem;
  color:rgba(214,179,92,.95);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{
  background:rgba(255,255,255,.06);
  text-decoration:none;
}

.menu-button{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  height:44px;
  width:48px;
  color:var(--text);
}
.menu-lines{
  display:block;
  width:22px;
  height:2px;
  margin:0 auto;
  background:var(--text);
  position:relative;
}
.menu-lines::before,
.menu-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:var(--text);
}
.menu-lines::before{top:-7px}
.menu-lines::after{top:7px}

.hero{
  padding:22px 0 6px;
}
.hero-banner{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}

.hero-card{
  margin-top:16px;
  padding:18px 18px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(18,18,18,.92), rgba(12,12,12,.92));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 56px rgba(0,0,0,.40);
}
.hero-card h1{
  margin:0 0 10px;
  font-size:1.7rem;
  letter-spacing:.02em;
}
.hero-lead{
  margin:0 0 10px;
  color:var(--muted);
}
.scripture{
  margin:12px 0 0;
  color:rgba(214,179,92,.92);
  font-weight:800;
  letter-spacing:.01em;
}

.gold-divider{
  height:3px;
  width:120px;
  background:linear-gradient(90deg, rgba(214,179,92,0.2), rgba(214,179,92,0.9), rgba(214,179,92,0.2));
  margin:14px 0 6px;
  border-radius:3px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:800;
}
.btn:hover{
  background:rgba(255,255,255,.10);
  text-decoration:none;
}
.btn.primary{
  border-color:rgba(214,179,92,.55);
  background:linear-gradient(180deg, rgba(214,179,92,.30), rgba(184,145,63,.18));
}

.section{
  padding:44px 0;
}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section h1{
  margin:0 0 10px;
  font-size:1.8rem;
}
.section h2{
  margin:0 0 14px;
  font-size:1.5rem;
}
.section h3{
  margin:0 0 10px;
  font-size:1.1rem;
}
.section p{
  margin:0 0 12px;
  color:var(--muted);
}

.subnav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.subnav a{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  font-weight:800;
  color:rgba(255,255,255,.86);
}
.subnav a:hover{
  background:rgba(255,255,255,.09);
  text-decoration:none;
}

.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}

.panel{
  background:var(--panel);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:18px;
  box-shadow:0 14px 46px rgba(0,0,0,.35);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  background:var(--panel2);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 38px rgba(0,0,0,.32);
}
.card-line{
  margin:8px 0 0;
  color:var(--muted);
}

.clean-list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.clean-list li{margin:8px 0}

.contact-box{
  margin-top:12px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.contact-line{margin:8px 0;color:var(--muted)}

.link{color:rgba(214,179,92,.95)}
.link:hover{text-decoration:underline}

.embed-wrap{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
}
.quiz-frame{
  width:100%;
  height:520px;
  border:0;
  display:block;
}

.site-footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.30);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-mark{border-radius:999px}
.footer-title{font-weight:900;letter-spacing:.06em}
.footer-subtitle{color:rgba(255,255,255,.66);font-size:.9rem}
.footer-webmaster{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-end;
}
.footer-label{
  color:rgba(255,255,255,.66);
  font-size:.85rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.footer-name{
  font-weight:900;
}

@media (max-width: 920px){
  .cards{grid-template-columns:repeat(2, 1fr)}
  .grid-2{grid-template-columns:1fr}
  .footer-webmaster{align-items:flex-start}
}

@media (max-width: 720px){
  .menu-button{display:inline-flex;align-items:center;justify-content:center}
  .nav{
    display:none;
    position:absolute;
    right:16px;
    top:70px;
    flex-direction:column;
    gap:8px;
    padding:12px;
    background:rgba(18,18,18,.96);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    box-shadow:0 22px 70px rgba(0,0,0,.55);
    min-width:230px;
  }
  .nav.open{display:flex}
  .nav a{width:100%}
  .cards{grid-template-columns:1fr}
}



.leader-grid{
  display:grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap:18px;
  align-items:start;
}

.leader-media{
  max-width: 320px;
}

.leader-copy{
  min-width: 0;
}

.leader-photo{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 56px rgba(0,0,0,.40);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.leader-photo{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 56px rgba(0,0,0,.40);
}
.leader-role{
  margin:8px 0 14px;
  font-weight:900;
  color:rgba(214,179,92,.92);
}
.leader-copy .muted{
  color:var(--muted);
}
.leader-contact{
  margin:10px 0 0;
  color:var(--muted);
}
@media (max-width: 920px){
  .leader-grid{grid-template-columns:1fr}
  .leader-media{max-width: 260px; margin: 0 auto}
  .leader-copy{text-align:left}
}


/* Recap Recordings */
.notice{
  background: rgba(214,179,92,.10);
  border: 1px solid rgba(214,179,92,.25);
  padding: 14px 16px;
  border-radius: 12px;
  margin: 18px 0 22px;
}
.recap-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.recap-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
}
.recap-card h2{
  margin: 0 0 8px;
}
.recap-card .btn{
  display: inline-block;
  margin-top: 10px;
}

.recap-card.is-disabled{
  opacity: .85;
}
.btn.btn-disabled{
  pointer-events: none;
  opacity: .7;
}

/* Resources: church logo link */
.logo-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.logo-link:hover{
  background: rgba(255,255,255,.07);
}
.logo-image{
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
}

.btn.disabled {
  background-color: #888;
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: inherit;
  margin: 6px 0 14px;
}

label {
  display: block;
  margin-top: 10px;
}

/* CONTACT FORM SPACING AND SIZE OVERRIDE */
#contact-form .cards,
#contact-form .card {
  width: 100% !important;
}

#contact-form .card {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 36px !important;
}

#contact-form form {
  display: block !important;
}

#contact-form label {
  display: block !important;
  font-weight: 700 !important;
  margin: 16px 0 8px !important;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  border-radius: 12px !important;
  margin: 0 0 14px !important;
}

#contact-form textarea {
  min-height: 160px !important;
}

#contact-form .actions,
#contact-form button.btn,
#contact-form .btn {
  margin-top: 16px !important;
  padding: 14px 18px !important;
  font-size: 16px !important;
}

/* CONTACT FORM: MAKE BIGGER AND NOT BUNCHED */
#contact-form .container {
  max-width: 1100px !important;
}

#contact-form .cards {
  display: block !important;
}

#contact-form .card {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 36px !important;
}

#contact-form form {
  display: block !important;
}

#contact-form label {
  display: block !important;
  font-weight: 700 !important;
  margin: 16px 0 8px !important;
}

#contact-form input,
#contact-form textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  border-radius: 12px !important;
  margin: 0 0 14px !important;
}

#contact-form textarea {
  min-height: 180px !important;
}

/* CENTER CONTACT INTRO TEXT */
#contact-form > .container > h2,
#contact-form > .container > p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* CENTER CONTACT FORM SECTION */
#contact-form .cards {
  display: flex !important;
  justify-content: center !important;
}

#contact-form .card {
  width: 100% !important;
  max-width: 750px !important;
  margin: 0 auto !important;
}

#contact-form {
  text-align: center;
}

#contact-form form {
  text-align: left;
}

/* CONTACT PAGE ONLY */
#contact-form .cards{
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

#contact-form .card{
  max-width: 780px;
  margin: 0 auto;
}

#contact-form .contact-intro{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

#contact-form form{
  text-align: left;
}

/* CENTER INTRO TEXT, KEEP FORM FIELDS LEFT ALIGNED */
body #contact-form > .container > h2,
body #contact-form > .container > p {
  text-align: center !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body #contact-form form {
  text-align: left !important;
}


#contact-form .center-wrap{
  max-width: 780px;
  margin: 0 auto;
  width: 100%;

}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.portal-email-card{
background:#ffffff;
border-radius:8px;
padding:25px;
margin:20px 0;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
text-align:center;
}

.portal-email-card h3{
margin-bottom:10px;
font-size:20px;
color:#1a2f5a;
}

.portal-email-card p{
margin-bottom:18px;
color:#555;
}

.portal-email-button{
display:inline-block;
padding:12px 22px;
background:#1a2f5a;
color:#ffffff;
text-decoration:none;
border-radius:5px;
font-weight:600;
}

.portal-email-button:hover{
background:#0f1e3c;
}