/* ============================================
   MILDRED CHAPEL MBC - ENHANCED PURPLE THEME
   FULLY RESPONSIVE + FIXED NAVIGATION
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .menu-link, .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 58px;
  z-index: 1050;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); background: #128C7E; color: white; }

/* ===== NAVIGATION (STICKY + CENTERED LOGO) ===== */
#top-menus-container {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: white;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.main-menu-elkhorn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.main-menu-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.left-menu {
  justify-content: flex-start;
  flex: 1;
}

.right-menu {
  justify-content: flex-end;
  flex: 1;
}

.main-menu-logo-container {
  text-align: center;
  padding: 0 20px;
}

.menu-link {
  text-decoration: none;
  font-weight: 600;
  color: #3c096c;
  transition: 0.2s;
  font-size: 0.98rem;
  letter-spacing: -0.2px;
}

.menu-link:hover { color: #aa2ee6; }

.donate-btn {
  background: #6a1b9a;
  color: white !important;
  padding: 10px 24px;
  border-radius: 40px;
  transition: 0.3s;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(106,27,154,0.2);
}
.donate-btn:hover { background: #9c27b0; transform: translateY(-2px); color: white !important; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #4a148c;
  padding: 8px;
}

.hidden-lg { display: none; }

/* Desktop menu - visible by default */
.main-menu-collapse-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* responsive */
@media (max-width: 992px) {
  .main-menu-elkhorn {
    flex-direction: column;
    padding: 12px 20px;
  }
  
  .hidden-lg { 
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
    align-items: center; 
  }
  
  /* Hide menu by default on mobile */
  .main-menu-collapse-lg { 
    display: none !important;
    width: 100%; 
    flex-direction: column; 
    background: white; 
    padding: 18px 0 20px; 
  }
  
  /* Show menu when 'show' class is added */
  .main-menu-collapse-lg.show { 
    display: flex !important;
  }
  
  .main-menu-list { 
    flex-direction: column; 
    gap: 18px; 
    margin-top: 12px; 
    width: 100%; 
    align-items: center;
    text-align: center;
  }
  
  .main-menu-list .menu-item { 
    text-align: center; 
    width: 100%;
  }
  
  .donate-btn { 
    display: inline-block; 
    width: auto; 
    margin-top: 6px;
  }
  
  .main-menu-logo-container { 
    margin: 12px 0;
    display: none;
  }
  
  .left-menu, .right-menu {
    flex: none;
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ===== BUTTONS & SECTIONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary { background: #6a1b9a; color: white; }
.btn-primary:hover { background: #8e24aa; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(106,27,154,0.3);}
.btn-outline-light { border: 2px solid white; background: transparent; color: white; }
.btn-outline-light:hover { background: white; color: #6a1b9a; }
.btn-secondary { background: #8e24aa; color: white; }
.btn-outline-purple { border: 2px solid #6a1b9a; background: transparent; color: #6a1b9a; }

.block { padding: 80px 0; }
.bg-light { background: #faf5fc; }
.bg-purple-light { background: #ede7f6; }
.row-flex { display: flex; gap: 50px; flex-wrap: wrap; align-items: center; }
.col-half { flex: 1; min-width: 280px; }

/* Hero */
.header-westport {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.small-hero { min-height: 42vh !important; }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -0.02em; }
.hero-content p { font-size: 1rem; margin-bottom: 2rem; opacity: 0.95; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.value-card { background: white; padding: 28px 18px; border-radius: 28px; text-align: center; box-shadow: 0 12px 22px rgba(0,0,0,0.04); transition: 0.25s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 28px rgba(106,27,154,0.1); }
.value-card i { font-size: 44px; color: #6a1b9a; margin-bottom: 18px; }

/* stats */
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; margin: 30px 0; }
.stat i { font-size: 44px; color: #6a1b9a; }
.stat span { font-size: 38px; font-weight: 800; display: block; color: #4a148c; }

/* contact page */
.contact-grid { display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.contact-grid > div { flex: 1; min-width: 200px; background: #f9f0ff; padding: 28px; border-radius: 28px; text-align: center; transition: 0.2s; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; margin: 12px 0; border: 1px solid #e0d0f0; border-radius: 28px; font-family: inherit; }

/* timeline */
.timeline-item { border-left: 4px solid #6a1b9a; padding-left: 24px; margin: 30px 0; background: #faf5fc; border-radius: 20px; padding: 20px 25px; }

/* footer */
.footer { background: #1e082b; color: #e0d4ff; padding: 50px 0 25px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 45px; }
.footer-col a { color: #d9b4ff; text-decoration: none; }
.footer-col a:hover { color: white; }
.social-icons a { color: white; margin-right: 20px; font-size: 24px; display: inline-block; transition: 0.2s; }
.back-to-top { position: fixed; bottom: 100px; right: 28px; background: #6a1b9a; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.25s; cursor: pointer; z-index: 1040; color: white; }
.back-to-top.show { opacity: 1; visibility: visible; }
.purple-text { color: #6a1b9a; }
.text-center { text-align: center; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }

.header-westport {
  align-items: flex-end;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.4rem; }
  .block { padding: 48px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; align-items: center; }
  .back-to-top { bottom: 90px; }
}

.pastor-card {
  max-width: 350px;
  margin: auto;
  text-align: center;
}

.pastor-card img {
  width: 100%;
  border-radius: 15px;
}

.pastor-name {
  font-size: 14px;
  color: #6a1b9a;
  margin-bottom: 10px;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.header-westport {
  position: relative;
}

/* Button Link Purple */
.btn-link-purple {
  color: #6a1b9a;
  text-decoration: underline;
  cursor: pointer;
}
.btn-link-purple:hover {
  color: #9c27b0;
}

/* Executive Board */
.executive-board-placeholder .board-member {
  transition: transform 0.3s ease;
}
.executive-board-placeholder .board-member:hover {
  transform: translateY(-5px);
}

/* Pastor Card Simple */
.pastor-card-simple {
  transition: transform 0.3s ease;
}
.pastor-card-simple:hover {
  transform: translateY(-5px);
}
.btn-donate {
  background: #ff6d00;
  color: white;
  border: none;
}
.btn-donate:hover {
  background: #e65100;
  transform: translateY(-2px);
}

/* Black overlay for hero banners */
.hero-with-overlay {
  position: relative;
}
.hero-with-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-with-overlay .hero-content {
  position: relative;
  z-index: 2;
}