/* =============================================
   HEALING ROOM CHURCH – Shared Stylesheet
   Color palette: #FF3557 (red), #ffffff, #1a1a1a
   ============================================= */

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

:root {
  --red:    #FF3557;
  --red-dk: #cc1a36;
  --dark:   #1a1a1a;
  --grey:   #555;
  --light:  #f5f5f5;
  --white:  #ffffff;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,.12);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

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

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

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,53,87,.4); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-outline-red { background: transparent; border-color: var(--red); color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-red   { background: var(--red);  color: var(--white); }

.section-label {
  display: inline-block;
  background: rgba(255,53,87,.12);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-dark  .section-label { background: rgba(255,255,255,.15); color: var(--white); }
.section-red   .section-label { background: rgba(255,255,255,.2);  color: var(--white); }

.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.section-sub   { color: var(--grey); font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; text-align: center; }
.section-dark  .section-sub, .section-red .section-sub { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo img { height: 52px; width: auto; object-fit: contain; }
.navbar-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: rgba(255,53,87,.07); }
.nav-links .nav-cta a { background: var(--red); color: var(--white); padding: 9px 20px; border-radius: 50px; }
.nav-links .nav-cta a:hover { background: var(--red-dk); }

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.85) 40%, rgba(255,53,87,.55) 100%);
}
.hero-content {
  position: relative;
  color: var(--white);
  max-width: 680px;
}
.hero-content .section-label { background: rgba(255,53,87,.3); color: var(--white); }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title span { color: var(--red); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .9;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* mini hero (inner pages) */
.mini-hero {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  padding: 70px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.mini-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,.8), rgba(26,26,26,.6));
}
.mini-hero .container { position: relative; }
.mini-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.mini-hero p { opacity: .8; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; opacity: .7; margin-bottom: 12px; }
.breadcrumb a { color: var(--red); }

/* ── CARDS ─────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 28px;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.16); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card-body p  { color: var(--grey); font-size: .95rem; }

/* icon card */
.icon-card { text-align: center; padding: 36px 24px; }
.icon-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,53,87,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--red);
}
.icon-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.icon-card p  { color: var(--grey); font-size: .93rem; }

/* ── WORSHIP CARDS ─────────────────────────── */
.worship-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.worship-card img { width: 100%; height: 240px; object-fit: cover; }
.worship-card-body { padding: 28px; }
.worship-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--dark); }
.worship-card-body p  { color: var(--grey); margin-bottom: 16px; }
.worship-card-body a.link { color: var(--red); font-weight: 600; }

/* ── QUOTE / VERSE ─────────────────────────── */
.verse-block {
  border-left: 4px solid var(--red);
  padding: 24px 32px;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}
.verse-block blockquote { font-size: 1.2rem; font-style: italic; color: var(--dark); margin-bottom: 8px; }
.verse-block cite { font-size: .9rem; color: var(--red); font-weight: 700; font-style: normal; }

/* ── TEAM GRID ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.team-card { border-radius: var(--radius); overflow: hidden; text-align: center; background: var(--white); box-shadow: var(--shadow); }
.team-card img { width: 100%; height: 200px; object-fit: cover; }
.team-card p   { padding: 12px; font-size: .85rem; color: var(--grey); font-weight: 600; }

/* ── SOCIAL STRIP ──────────────────────────── */
.social-strip { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.social-fb  { background: #1877F2; color: var(--white); }
.social-yt  { background: #FF0000; color: var(--white); }
.social-tk  { background: var(--dark); color: var(--white); }
.social-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }

/* ── SECTION SPLIT ─────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 16px; }
.split-content p  { color: var(--grey); margin-bottom: 20px; }

/* ── CTA BANNER ────────────────────────────── */
.cta-banner { padding: 70px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-banner p  { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }

/* ── CONTACT FORM ──────────────────────────── */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
  outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── INFO BOX ──────────────────────────────── */
.info-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
}
.info-box h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--red); }
.info-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.info-item .icon { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.info-item p { color: var(--grey); font-size: .95rem; }
.info-item p strong { display: block; color: var(--dark); }

/* ── TESTIMONIAL ───────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: .15;
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: Georgia, serif;
}
.testimonial-card p { color: var(--grey); font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-card cite { font-weight: 700; font-size: .9rem; color: var(--dark); font-style: normal; }

/* ── FOOTER ────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: .9rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}
.footer-bottom a { color: var(--red); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  color: var(--white);
}
.footer-socials a:hover { background: var(--red); }

/* ── SERVICE CARDS ─────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--red);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); }
.service-card .icon { font-size: 2rem; color: var(--red); margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p  { color: var(--grey); font-size: .93rem; }

/* ── BIBLE STUDY ───────────────────────────── */
.study-highlight {
  background: linear-gradient(135deg, var(--red) 0%, #c0112f 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.study-highlight h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
.study-highlight p  { opacity: .9; margin-bottom: 28px; }
.study-meta { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.study-meta-item { text-align: center; }
.study-meta-item .label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.study-meta-item .value { font-size: 1.5rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }

/* ── RESURRECTION ──────────────────────────── */
.resurrection-hero {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d0a14 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.resurrection-hero h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 16px; }
.resurrection-hero .subtitle { font-size: 1.2rem; color: var(--red); font-weight: 700; margin-bottom: 24px; font-family: 'Montserrat', sans-serif; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: 70vh; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; font-size: .9rem; }
  .nav-links .nav-cta a { text-align: center; margin-top: 8px; }
  .hamburger { display: flex; }
  .navbar { position: sticky; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-phone { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
