/* ========================================
   alive@keep;t 24 — Styles
   Theme: Red & Black
   ======================================== */

:root {
  --red: #c0392b;
  --red-light: #e74c3c;
  --red-dark: #96281b;
  --red-glow: rgba(192, 57, 43, 0.3);
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --black-mid: #2c2c2c;
  --gray-dark: #3a3a3a;
  --gray: #888;
  --gray-light: #bbb;
  --white: #f5f5f5;
  --white-pure: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--red-light);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--white); }

img {
  max-width: 100%;
  display: block;
}

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

.text-red { color: var(--red-light); }

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white-pure);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white-pure);
  box-shadow: 0 0 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 4px;
  background: var(--red);
  color: var(--white-pure);
}
.btn-small:hover {
  background: var(--red-dark);
  color: var(--white-pure);
}

.btn-outline-sm {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red-light);
}
.btn-outline-sm:hover {
  background: var(--red);
  color: var(--white-pure);
}

.btn-block { width: 100%; }

/* ========== NAVIGATION ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  transition: all 0.3s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white-pure) !important;
  border-radius: 6px !important;
  padding: 10px 24px !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-overlay {
  display: none;
}

/* Floating 24s */
.floating-24s {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.float-24 {
  position: absolute;
  font-family: var(--font-display);
  opacity: 0.07;
  letter-spacing: 2px;
  user-select: none;
}
.float-24 .w { color: #ffffff; }
.float-24 .r { color: var(--red-light); }

.f24-1 {
  font-size: 3rem;
  top: 10%;
  left: -2%;
  animation: drift1 18s ease-in-out infinite;
}
.f24-2 {
  font-size: 2.5rem;
  top: 60%;
  right: 2%;
  animation: drift2 22s ease-in-out infinite;
}
.f24-3 {
  font-size: 4rem;
  bottom: 8%;
  left: 15%;
  animation: drift3 25s ease-in-out infinite;
}
.f24-4 {
  font-size: 2rem;
  top: 20%;
  right: 10%;
  animation: drift4 20s ease-in-out infinite;
}
.f24-5 {
  font-size: 1.8rem;
  bottom: 25%;
  left: 60%;
  animation: drift5 23s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, 30px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, -40px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -30px); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-70px, 50px); }
}
@keyframes drift5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -35px); }
}

.boxing-gloves-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 580px;
  pointer-events: none;
  z-index: 1;
}

.gloves-photo {
  width: 100%;
  height: auto;
  opacity: 0.35;
  mix-blend-mode: lighten;
  filter: contrast(1.4) brightness(1.1) saturate(1.2);
  transition: opacity 0.6s ease, filter 0.6s ease;
}

.hero:hover .gloves-photo {
  opacity: 0.45;
  filter: contrast(1.5) brightness(1.15) saturate(1.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 20px 24px 0;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  border-radius: 6px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(192, 57, 43, 0.3);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.scroll-indicator span {
  display: block;
  height: 2px;
  width: 80px;
  background: var(--red);
  border-radius: 2px;
  animation: lineSlide 4s ease-in-out infinite;
}
@keyframes lineSlide {
  0% { margin-left: 0; width: 40px; opacity: 0.4; }
  50% { margin-left: calc(100% - 120px); width: 120px; opacity: 1; }
  100% { margin-left: 0; width: 40px; opacity: 0.4; }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--red);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white-pure);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white-pure);
  opacity: 0.8;
}
.stat p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ========== FOUNDER/ABOUT ========== */
.about-section {
  background: var(--black-light);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-image-area {
  position: relative;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--black);
  padding: 12px;
  border-radius: 50%;
  border: 3px solid var(--red);
}

.founder-story h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.founder-story p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.founder-quote {
  font-style: italic;
  color: var(--red-light) !important;
  font-size: 1.2rem !important;
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin-top: 24px !important;
}

/* ========== TEAM ========== */
.team-section {
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--black-light);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}
.team-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(192, 57, 43, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-testimonial {
  color: var(--gray-light);
  font-style: italic;
  margin: 16px 0 20px;
  font-size: 0.95rem;
}

.team-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--black-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 40px rgba(192, 57, 43, 0.1);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.5;
}

.testimonial-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.author-detail {
  color: var(--red-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-story {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.share-story h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.share-story > p {
  color: var(--gray-light);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-light);
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
}
input::placeholder, textarea::placeholder {
  color: var(--gray);
}

select option {
  background: var(--black-light);
  color: var(--white);
}

/* ========== ALIVE WATER ========== */
.water-section {
  background: var(--black);
  overflow: hidden;
}

.water-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.water-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.water-image {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s;
}
.water-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.water-image:hover {
  transform: scale(1.05);
}

.water-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.water-features {
  list-style: none;
  margin-bottom: 30px;
}
.water-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray-light);
  font-size: 1rem;
}
.water-icon {
  color: var(--red-light);
  font-size: 0.6rem;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ========== BIBLE VERSE ========== */
.verse-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--black-light) 60%, var(--black) 100%);
  padding: 80px 0;
}

.verse-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
}

.verse-cross {
  margin-bottom: 16px;
  opacity: 0.9;
}

.verse-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

blockquote {
  border: none;
}

#verseText {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
}

#verseRef {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-style: normal;
}

/* ========== BLOG ========== */
.blog-section {
  background: var(--black-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: var(--red);
}

.blog-featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), var(--black));
}

.blog-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 10px;
}
.blog-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red-light);
  line-height: 1;
}
.blog-month {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 3px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red-light);
  margin-bottom: 8px;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-content p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ========== CHURCH FINDER ========== */
.church-section {
  background: var(--black);
}

.church-search {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.church-search input {
  flex: 1;
  margin-bottom: 0;
}

.church-search .btn {
  white-space: nowrap;
}

.church-results {
  min-height: 200px;
}

.church-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--gray);
  text-align: center;
}
.church-placeholder svg { color: var(--gray-dark); }

.church-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.church-item {
  background: var(--black-light);
  border: 1px solid var(--gray-dark);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s;
}
.church-item:hover {
  border-color: var(--red);
}

.church-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.church-item p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.church-item a {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--red-light);
  font-weight: 600;
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 10px;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white-pure);
  stroke: var(--white-pure);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.contact-item p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.emergency-box {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.15), var(--black));
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 24px;
  margin-top: 12px;
}
.emergency-box h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red-light);
  margin-bottom: 8px;
}
.emergency-box p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.contact-form {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 4px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ========== PLACEHOLDER IMAGES ========== */
.image-placeholder {
  background: var(--black-mid);
  border: 2px dashed var(--gray-dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 200px;
  color: var(--gray);
  font-size: 0.85rem;
}
.image-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SUCCESS MESSAGE ========== */
.success-message {
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid #27ae60;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #2ecc71;
  margin-top: 16px;
  animation: fadeInUp 0.4s ease;
  font-weight: 600;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== INSTAGRAM REELS ========== */
.reels-section {
  background: var(--black-light);
}

.reels-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reels-text {
  padding-right: 20px;
}

.reels-text .section-label {
  margin-bottom: 12px;
}

.reels-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 3px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.reels-desc {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.reels-accent {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 24px;
}

.reels-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--gray-light);
  font-style: italic;
}

.reel-wrapper {
  display: flex;
  justify-content: center;
}

.reel-embed {
  display: flex;
  justify-content: center;
}

.reel-embed iframe {
  border: none;
  border-radius: 12px;
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ========== JOIN BROTHERHOOD ========== */
.join-section {
  background: #000000;
  border-top: 1px solid var(--gray-dark);
}

.join-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.join-logo {
  display: block;
  width: 110px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 28px;
}

.join-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 3px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.join-subtitle {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.join-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.join-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
}

.btn-join-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-color: #25d366;
  font-size: 1.15rem;
  padding: 18px 44px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn-join-open:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.join-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 20px;
}

.join-modal-box {
  background: var(--black-light);
  border: 1px solid var(--gray-dark);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.join-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--red-light);
  margin-bottom: 8px;
}

.join-desc {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.join-rules {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.join-rule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  position: relative;
  padding: 16px 20px;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.join-rule:hover {
  border-color: var(--gray);
}

.join-rule input[type="checkbox"] {
  display: none;
}

.join-checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-top: 2px;
}
.join-checkmark::after {
  content: '';
  display: none;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.join-rule input:checked ~ .join-checkmark {
  background: #27ae60;
  border-color: #27ae60;
}
.join-rule input:checked ~ .join-checkmark::after {
  display: block;
}
.join-rule input:checked ~ .join-rule-text {
  color: var(--white);
}

.join-rule-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.join-rule-text strong {
  color: var(--white);
}

.join-link-area {
  text-align: center;
  padding: 24px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid #27ae60;
  border-radius: 12px;
  animation: fadeInUp 0.4s ease;
}

.join-success {
  color: #2ecc71;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-color: #25d366;
  font-size: 1.05rem;
  padding: 14px 32px;
}
.btn-join:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.join-locked {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 16px;
  border: 1px dashed var(--gray-dark);
  border-radius: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .water-showcase { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .reels-layout { grid-template-columns: 1fr; gap: 40px; }
  .reels-text { padding-right: 0; text-align: center; }
  .reels-accent { margin: 0 auto 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--gray-dark);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .water-gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .church-search { flex-direction: column; }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-date {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
  }

  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .water-gallery { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
}

/* ========== ADMIN PANEL ========== */
.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.admin-modal-box {
  background: var(--black-mid);
  border: 1px solid var(--red);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.admin-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--red-light);
}

.admin-modal-box input {
  margin-bottom: 14px;
}

.admin-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.admin-close:hover { color: var(--red-light); }

.admin-panel {
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
  border-top: 3px solid var(--red);
  padding: 60px 0 100px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-dark);
}

.admin-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--red-light);
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin-bottom: 36px;
}

.admin-tab {
  background: var(--black-mid);
  border: 1px solid var(--gray-dark);
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  text-align: center;
}
.admin-tab:hover {
  color: var(--white);
  background: var(--gray-dark);
  border-color: var(--gray);
}
.admin-tab.active {
  color: var(--white-pure);
  background: var(--red);
  border-color: var(--red);
}

.admin-tab-content {
  display: none;
}
.admin-tab-content.active {
  display: block;
}

.admin-tab-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.admin-tab-content > p {
  margin-bottom: 20px;
}

.admin-tab-content label {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  margin-top: 8px;
}

.admin-tab-content input,
.admin-tab-content textarea {
  margin-bottom: 14px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-story-card,
.admin-message-card {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.admin-story-card:hover,
.admin-message-card:hover {
  border-color: rgba(192, 57, 43, 0.4);
}

.admin-story-card h4,
.admin-message-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.admin-story-card p,
.admin-message-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.admin-story-card .admin-meta,
.admin-message-card .admin-meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 14px;
}

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

.admin-btn-approve {
  padding: 10px 22px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.admin-btn-approve:hover { background: #219a52; }

.admin-btn-reject {
  padding: 10px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.admin-btn-reject:hover { background: var(--red-dark); }

.admin-btn-delete {
  padding: 10px 22px;
  background: var(--gray-dark);
  color: var(--gray-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.admin-btn-delete:hover { background: #555; }

.admin-empty {
  color: var(--gray);
  text-align: center;
  padding: 50px 20px;
  font-size: 0.95rem;
  background: var(--black);
  border: 1px dashed var(--gray-dark);
  border-radius: 12px;
}

.admin-photo-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.admin-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-photo-preview-lg {
  width: 120px;
  height: 120px;
  border-radius: 12px;
}

.admin-founder-photo-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

input[type="file"] {
  padding: 12px;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--black);
  border: 1px dashed var(--gray-dark);
  border-radius: 8px;
}

.admin-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-messages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.blog-history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.blog-history-item {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  padding: 20px;
}
.blog-history-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.blog-history-item p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
}
.blog-history-item .blog-hist-date {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 8px;
}

/* ========================================
   FOUNDER SOCIALS SECTION
   ======================================== */

.socials-section {
  background: var(--black);
  padding: 100px 0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 30px 40px;
  border-radius: 16px;
  background: var(--black-light);
  border: 1px solid var(--gray-dark);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  text-decoration: none;
  color: var(--white);
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.social-card .social-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-youtube .social-icon {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
}
.social-youtube:hover { border-color: #ff0000; }

.social-instagram .social-icon {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15), rgba(252, 176, 69, 0.15));
  color: #e1306c;
}
.social-instagram:hover { border-color: #e1306c; }

.social-tiktok .social-icon {
  background: rgba(0, 242, 234, 0.1);
  color: #00f2ea;
}
.social-tiktok:hover { border-color: #00f2ea; }

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.social-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-cta {
  display: inline-block;
  padding: 10px 32px;
  border: 2px solid var(--red);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  transition: background 0.3s, color 0.3s;
}

.social-card:hover .social-cta {
  background: var(--red);
  color: var(--white-pure);
}

@media (max-width: 768px) {
  .socials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social-card {
    padding: 40px 24px 32px;
  }
}

@media (max-width: 1024px) {
  .admin-team-grid { grid-template-columns: 1fr; }
  .admin-messages-grid { grid-template-columns: 1fr; }
  .blog-history-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .admin-tabs { grid-template-columns: repeat(2, 1fr); }
  .admin-form-grid { grid-template-columns: 1fr; }
}
