/* ============================================
   Mission Evangélique Baptiste Eben-Ezer de Jacmel
   Django Implementation
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #961964;
  --primary-dark: #7A1450;
  --primary-light: #B83A78;
  --accent: #0096E1;
  --accent-light: #33ABE8;
  --accent-dark: #0078B8;
  --dark: #1a1a2e;
  --dark-light: #2a2a3e;
  --light: #f8f5f0;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e9e9e9;
  --gray-300: #d4d4d4;
  --gray-500: #777777;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* --- Utility Classes --- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.section-title-sm { font-size: 1.75rem; margin-bottom: 1rem; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.7); }
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); margin-right: 6px; }
.top-bar .top-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .top-social a { margin-left: 12px; font-size: 14px; }

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary) !important;
  padding: 15px 0;
}
.navbar-brand i { color: var(--accent); margin-right: 6px; }

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 25px 16px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--primary); }

/* Dropdown */
.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.nav-menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-700);
  font-size: 14px;
}
.nav-menu .dropdown li a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

/* Donate button in nav */
.nav-donate {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  margin-left: 10px;
  font-weight: 600 !important;
}
.nav-donate:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 15px 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a3e 50%, #0d0d2b 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(200,168,78,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 650px; }
.hero-subtitle {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-description {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-event-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  color: var(--white);
}
.hero-event-badge .event-date {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.hero-event-badge .event-month {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================
   PASTOR MESSAGE
   ============================================ */
.pastor-message .message-content { padding-right: 40px; }
.pastor-message .message-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pastor-message .message-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ============================================
   CHURCH HISTORY / COUNTERS
   ============================================ */
.church-history {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.church-history .section-title { color: var(--white); }
.church-history .section-subtitle { color: var(--accent-light); }

.counter-item {
  text-align: center;
  padding: 20px;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}
.counter-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.8;
}

/* ============================================
   SERVICES / DIVINE ADORATION
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.service-card .service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* ============================================
   MINISTRIES
   ============================================ */
.ministry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ministry-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}
.ministry-card:hover img { transform: scale(1.05); }
.ministry-card .ministry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 20px;
  color: var(--white);
}
.ministry-card .ministry-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.ministry-card .ministry-overlay .ministry-icon {
  color: var(--accent);
  margin-bottom: 8px;
}

/* ============================================
   EVENTS
   ============================================ */
.event-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-card .event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  min-width: 90px;
  text-align: center;
}
.event-card .event-date-box .day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.event-card .event-date-box .month {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.event-card .event-info {
  padding: 20px;
  flex: 1;
}
.event-card .event-info h4 { font-size: 1.1rem; margin-bottom: 8px; }
.event-card .event-meta {
  font-size: 13px;
  color: var(--gray-500);
}
.event-card .event-meta i { color: var(--accent); margin-right: 5px; }
.event-price {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ============================================
   SERMONS
   ============================================ */
.sermon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 15px;
  transition: var(--transition);
}
.sermon-item:hover { box-shadow: var(--shadow-md); }
.sermon-item .sermon-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sermon-item .sermon-info { flex: 1; }
.sermon-item .sermon-info h5 { margin-bottom: 4px; }
.sermon-item .sermon-meta { font-size: 13px; color: var(--gray-500); }
.sermon-item .sermon-actions { display: flex; gap: 10px; }

/* ============================================
   TEAM
   ============================================ */
.team-card {
  text-align: center;
  margin-bottom: 30px;
}
.team-card .team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}
.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h5 { margin-bottom: 4px; }
.team-card .team-title { color: var(--accent); font-size: 13px; margin-bottom: 12px; }
.team-card .team-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--gray-700);
  margin: 0 4px;
  font-size: 14px;
  transition: var(--transition);
}
.team-card .team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   DONATION SECTION
   ============================================ */
.donate-section {
  background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}
.donation-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.amount-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.amount-option {
  flex: 1;
  min-width: 80px;
}
.amount-option input { display: none; }
.amount-option label {
  display: block;
  text-align: center;
  padding: 14px 10px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.amount-option input:checked + label {
  border-color: var(--accent);
  background: rgba(200,168,78,0.1);
  color: var(--accent);
}
.donation-form .form-group { margin-bottom: 15px; }
.donation-form label { font-weight: 600; margin-bottom: 6px; display: block; }
.donation-form input,
.donation-form select,
.donation-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}
.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card .blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-meta {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.blog-card .blog-meta i { color: var(--accent); margin-right: 4px; }
.blog-card .blog-meta span { margin-right: 15px; }
.blog-card .blog-body h5 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card .blog-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 15px; }
.blog-card .read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}
.blog-card .read-more i { font-size: 10px; margin-left: 4px; }

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a3e 100%);
  padding: 80px 0;
}
.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(200,168,78,0.03)" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,149.3C672,149,768,203,864,229.3C960,256,1056,256,1152,224C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}
.countdown-section .section-subtitle { color: var(--accent); }
.countdown-section .section-title { color: var(--white); }

.countdown-timer { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.countdown-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 25px 30px;
  text-align: center;
  min-width: 100px;
}
.countdown-box .count-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.countdown-box .count-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li i { color: var(--accent); margin-right: 8px; font-size: 10px; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 15px;
}
.footer-about p { font-size: 14px; margin-bottom: 20px; }
.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--accent); }
.footer-working-hours li { margin-bottom: 8px; font-size: 14px; }
.footer-working-hours span { color: var(--accent); }
.footer-contact li { margin-bottom: 12px; font-size: 14px; }
.footer-contact li i {
  color: var(--accent);
  margin-right: 10px;
  width: 16px;
  text-align: center;
}
.footer-social { margin-top: 20px; }
.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
}
.footer-bottom a { color: var(--accent); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-header .section-subtitle { color: var(--accent); }
.page-header .section-title {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 0;
}
.breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb-nav a { color: var(--accent); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: 20px;
}
.contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-detail .post-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-detail .post-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.blog-detail .post-body {
  font-size: 1.05rem;
  line-height: 1.9;
}
.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-event-badge { display: none; }
  .section-title { font-size: 2rem; }
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { padding: 12px 20px; }
  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  .nav-menu .dropdown.active { display: block; }
  .pastor-message .message-content { padding-right: 0; margin-bottom: 30px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .section-padding { padding: 60px 0; }
  .countdown-box { min-width: 70px; padding: 15px 20px; }
  .countdown-box .count-number { font-size: 2rem; }
  .event-card { flex-direction: column; }
  .event-card .event-date-box { flex-direction: row; gap: 8px; min-width: auto; padding: 10px 15px; }
  .sermon-item { flex-direction: column; text-align: center; }
}

/* ============================================
   ALERTS / MESSAGES
   ============================================ */
.alert {
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
