/* =============================================
   India Bible College & Seminary — style.css
   ============================================= */

:root {
  --maroon: #6b1a1a;
  --maroon-dark: #4a0e0e;
  --maroon-light: #8b2a2a;
  --gold: #c8973a;
  --gold-light: #e8b55a;
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --white: #ffffff;
  --text: #2c1a0e;
  --gray: #7a6a5a;
  --border: #e8d8c0;
  --light: #faf4ea;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--maroon-dark);
  padding: 0.4rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.topbar span { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--gold); text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; width: 100%; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(107,26,26,0.12);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 75px;
}

/* ── Hero Banner ── */
.hero-banner-main {
  width: 100%;
  overflow: hidden;
  background: var(--maroon-dark);
}

.hero-banner-main img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-banner-main a:hover img {
  transform: scale(1.02);
}
.logo-wrap { display: flex; align-items: center; gap: 1rem; }
.logo-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--maroon); letter-spacing: 0.5px;
}
.logo-text span { font-size: 0.72rem; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  padding: 0.5rem 0.9rem; border-radius: 4px;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--maroon); background: var(--cream); }
.nav-links a.active { color: var(--maroon); border-bottom: 2px solid var(--maroon); }
.nav-cta {
  background: var(--maroon) !important; color: var(--white) !important;
  padding: 0.5rem 1.3rem !important; border-radius: 4px !important;
}
.nav-cta:hover { background: var(--maroon-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--maroon); display: block; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 75px; left: 0; width: 100%;
  background: white; flex-direction: column; padding: 1rem 5%;
  border-bottom: 3px solid var(--gold); z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; font-weight: 700; cursor: pointer; font-size: 0.9rem;
}
.mobile-menu a:hover { color: var(--maroon); }

/* ══════════════════════════════════════════
   PAGES
══════════════════════════════════════════ */
#main-content {
  min-height: 80vh;
  animation: fadeIn 0.4s ease-out;
}

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

/* ══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */

/* ── Gallery Header ── */
.gallery-header {
  margin-bottom: 2.5rem;
}

/* ── Filter Tabs ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.filter-btn {
  background: var(--white);
  color: var(--maroon);
  border: 2px solid var(--border);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--maroon);
  background: var(--cream);
}

.filter-btn.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* ── Upload Banner ── */
.upload-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.upload-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.upload-text {
  flex: 1;
  min-width: 200px;
}

.upload-text h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.upload-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

.upload-btn {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.upload-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.upload-btn input[type="file"] {
  display: none;
}

/* ── Modern Masonry Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 200px; /* Base row height for masonry */
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
}

/* Masonry Spans */
.gallery-item:nth-child(2),
.gallery-item:nth-child(6),
.gallery-item:nth-child(11) {
  grid-row: span 3;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.gallery-item:nth-child(odd) {
  grid-row: span 2;
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 10;
}

.gallery-img {
  width: 100%;
  height: 100%;
}

.gallery-img-real, 
.gallery-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay::after {
  content: '↔\A View Project';
  white-space: pre;
  color: white;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay::after {
  transform: translateY(0);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: white;
  z-index: 5;
  pointer-events: none;
}

.gallery-caption p {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-cat-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}


/* ── Gallery Note ── */
.gallery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--cream-dark);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

.gallery-note span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.gallery-note p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.gallery-note code {
  background: rgba(107, 26, 26, 0.08);
  color: var(--maroon);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 5, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: #000;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  animation: fadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lightbox-img-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.lightbox-img-wrap img,
.lb-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  font-size: 1.1rem;
  line-height: 1.5;
  border-top: none;
  flex-shrink: 0;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Responsive Gallery ── */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 0.8rem;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1.2rem;
  }
  .gallery-item {
    min-height: 320px;
  }
  .gallery-img {
    height: 240px;
    flex: none;
  }
  .gallery-wide { grid-column: span 1; }
  .upload-banner { flex-direction: column; text-align: center; padding: 1.2rem; }
  .upload-btn { width: 100%; text-align: center; }
}

/* ── VERSE TICKER ── */
.verse-ticker {
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  color: rgba(255,255,255,0.9); padding: 0.6rem 5%;
  text-align: center; font-style: italic; font-size: 0.85rem; letter-spacing: 0.3px;
}
.verse-ticker strong { color: var(--gold-light); font-style: normal; }

/* ── HERO ── */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  padding: 2rem 5%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
  z-index: 5;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 .bold-line {
  display: block;
  color: var(--maroon-dark);
}

.hero h1 .light-line {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: var(--maroon);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 2.8rem;
  font-weight: 400;
}

.hero p strong {
  color: var(--maroon);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
  z-index: 10;
}

.chevron {
  width: 20px;
  height: 12px;
  border-left: 2px solid var(--maroon);
  border-bottom: 2px solid var(--maroon);
  transform: rotate(-45deg);
  animation: bounce 1.8s ease-in-out infinite;
}

.chevron + .chevron {
  opacity: 0.4;
  animation-delay: 0.2s;
}

@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(6px); }
}

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3.5rem;
  padding-top: 3rem; border-top: 1px solid rgba(0,0,0,0.08); flex-wrap: wrap;
  justify-content: center;
}
.stat-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--maroon);
}
.stat-item p { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }


/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--maroon-dark);
  padding: 0.9rem 2rem; border-radius: 5px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.3s; letter-spacing: 0.3px;
  font-family: 'Lato', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,151,58,0.35); }
.btn-outline {
  background: transparent; color: var(--maroon);
  padding: 0.9rem 2rem; border-radius: 5px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: 2px solid rgba(107, 26, 26, 0.3); transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}
.btn-outline:hover { border-color: var(--maroon); background: rgba(107, 26, 26, 0.05); }

/* ── SECTIONS ── */
.section { padding: 5.5rem 5%; }
.section-alt { background: var(--white); }
.section-warm { background: var(--cream-dark); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--maroon); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-label::before, .section-label::after { content: '✦'; font-size: 0.6rem; color: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  line-height: 1.2; color: var(--maroon-dark);
}
.section-subtitle {
  color: var(--gray); font-size: 0.98rem; line-height: 1.8;
  margin-top: 0.8rem; max-width: 560px; font-weight: 300;
}
.section-header { margin-bottom: 3rem; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; }
.feature-card {
  background: var(--white); border-radius: 10px; padding: 1.8rem;
  border: 1px solid var(--border); transition: all 0.3s;
  border-top: 4px solid var(--gold);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(107,26,26,0.1); }
.feature-icon {
  width: 50px; height: 50px; background: var(--cream-dark);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-image {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border: 3px solid var(--gold);
  background: var(--cream-dark);
}
.feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--maroon-dark); }
.feature-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── COURSE CARDS ── */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.course-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; border: 1px solid var(--border); transition: all 0.3s;
}
.course-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(107,26,26,0.12); }
.course-banner {
  height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.course-banner.c1 { background: linear-gradient(135deg, #4a0e0e, #6b1a1a); }
.course-banner.c2 { background: linear-gradient(135deg, #2a1a0e, #5a3a1a); }
.course-banner.c3 { background: linear-gradient(135deg, #1a2a0e, #3a5a1a); }
.course-banner.c4 { background: linear-gradient(135deg, #0e1a2a, #1a3a5a); }
.course-banner.c5 { background: linear-gradient(135deg, #2a0e2a, #5a1a5a); }
.course-banner.c6 { background: linear-gradient(135deg, #2a2a0e, #5a5a1a); }
.course-body { padding: 1.5rem; }
.course-tag {
  display: inline-block; background: rgba(107,26,26,0.08); color: var(--maroon);
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem;
  border-radius: 30px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.7rem;
}
.course-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.4rem; }
.course-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.course-meta {
  display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gray);
  border-top: 1px solid var(--border); padding-top: 0.9rem; flex-wrap: wrap;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: 16px; padding: 3rem; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
}
.about-visual .cross-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 14rem; color: rgba(255,255,255,0.06); line-height: 1; font-family: serif; user-select: none;
}
.about-visual .founded {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 900; color: var(--gold-light); line-height: 1; position: relative;
}
.about-visual .tagline {
  font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; font-style: italic; position: relative;
}
.about-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; position: relative; }
.about-badge {
  background: rgba(200,151,58,0.2); border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light); padding: 0.35rem 0.9rem; border-radius: 30px; font-size: 0.8rem; font-weight: 700;
}
.about-text > p { color: var(--gray); line-height: 1.85; margin-top: 1rem; font-weight: 300; font-size: 0.97rem; }
.values-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.values-list li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.93rem; font-weight: 700; color: var(--maroon-dark);
}
.values-list li::before { content: '✝'; color: var(--gold); font-size: 0.85rem; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--maroon-dark); border-radius: 12px; padding: 2rem;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: -0.5rem; right: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; color: rgba(200,151,58,0.15); line-height: 1; pointer-events: none;
}
.testi-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--maroon-dark); flex-shrink: 0;
}
.testi-author h5 { color: white; font-size: 0.9rem; font-weight: 700; }
.testi-author span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.cross-small { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.step-card {
  background: var(--white); border-radius: 10px; padding: 1.8rem;
  border: 1px solid var(--border); text-align: center; border-top: 4px solid var(--gold);
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maroon); color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step-card h4 { font-weight: 700; margin-bottom: 0.4rem; color: var(--maroon-dark); }
.step-card p { font-size: 0.85rem; color: var(--gray); }

/* ── FORMS ── */
.form-card {
  background: var(--white); border-radius: 14px; padding: 2.5rem; border: 1px solid var(--border);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.4rem;
}
.form-card > p { color: var(--gray); font-size: 0.88rem; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--maroon-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem;
  background: var(--cream); color: var(--text); transition: border 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%; padding: 1rem;
  background: var(--maroon); color: white;
  border: none; border-radius: 6px; font-size: 1rem;
  font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif;
  transition: all 0.3s; margin-top: 0.5rem; letter-spacing: 0.5px;
}
.submit-btn:hover { background: var(--gold); color: var(--maroon-dark); transform: translateY(-2px); }
.success-msg {
  display: none; background: #d1fae5; color: #065f46;
  padding: 1rem; border-radius: 6px; margin-top: 1rem;
  font-weight: 700; text-align: center; font-size: 0.9rem;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info > h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.8rem;
}
.contact-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem; background: var(--light); border-radius: 8px; border: 1px solid var(--border);
}
.ci-icon {
  width: 40px; height: 40px; background: var(--cream-dark);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--border);
}
.contact-item h5 { font-weight: 700; font-size: 0.88rem; color: var(--maroon-dark); margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.83rem; color: var(--gray); }
.map-placeholder {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: 10px; height: 180px; margin-top: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem;
  border: 1px solid rgba(200,151,58,0.25);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 5rem 5% 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '✝';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-size: 20rem; color: rgba(255,255,255,0.03); pointer-events: none; font-family: serif;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: white; position: relative;
}
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 0.6rem; font-style: italic; position: relative; font-size: 0.95rem; }

/* ── DIVIDER ── */
.divider { text-align: center; padding: 1.5rem 0; color: var(--gold); font-size: 1.2rem; letter-spacing: 0.8rem; }

/* ── FOOTER ── */
footer { background: var(--maroon-dark); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.footer-logo span { color: var(--gold); }
.footer-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-verse { font-style: italic; font-size: 0.8rem; color: var(--gold); margin-top: 1rem; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.85rem; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom span { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image img {
    max-width: 400px;
  }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .event-item { flex-wrap: wrap; }
  .event-tag { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  nav { padding: 0 4%; }
}
