/* GKI San Francisco - Premium Styles */

:root {
  /* Premium color palette extracted from logo */
  --navy-deep: #1b3b36; /* Deep navy-green from logo outer ring */
  --forest-green: #2d5a4f; /* Forest green from logo */
  --sage-green: #4a7c71; /* Sage green medium tone */
  --mint-fresh: #7ba99c; /* Fresh mint from logo highlights */
  --cream-gold: #e8d5a3; /* Cream gold from logo rays */
  --warm-gold: #d4b576; /* Warm gold from logo center */
  --rich-gold: #b8954a; /* Rich gold accent */
  --soft-cream: #faf8f3; /* Soft cream background */
  --pearl-white: #fefdfb; /* Pearl white */
  --charcoal: #2c3e39; /* Charcoal for text */
  --slate-gray: #5a6b66; /* Slate gray for secondary text */
  --mist-gray: #8b9894; /* Mist gray for subtle text */

  /* Shadows and effects */
  --shadow-soft: 0 4px 20px rgba(27, 59, 54, 0.08);
  --shadow-medium: 0 8px 30px rgba(27, 59, 54, 0.12);
  --shadow-strong: 0 16px 60px rgba(27, 59, 54, 0.15);
  --shadow-glow: 0 0 40px rgba(212, 181, 118, 0.15);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-quick: all 0.2s ease-out;

  /* Typography - Option 2: Modern & Clean */
  --font-display: "Merriweather", Georgia, serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Alternative Font Options (uncomment to try): */
  /* Option 1: Elegant & Warm
  --font-display: "Crimson Text", Georgia, serif;
  --font-body: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  */

  /* Option 3: Classic & Sophisticated
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  */
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--cream-gold);
  color: var(--navy-deep);
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--pearl-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Premium Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy-deep);
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-gold), var(--cream-gold));
  border-radius: 2px;
}

/* Override section title alignment when text-center is applied */
.text-center .section-title {
  text-align: center !important;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile footer spacing fix */
@media (max-width: 991.98px) {
  .footer-about {
    margin-bottom: 2rem;
  }
}

/* Navigation - Glassmorphism Style */
.navbar {
  background: rgba(254, 253, 251, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(27, 59, 54, 0.1);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(254, 253, 251, 0.95) !important;
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-deep) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.navbar-brand img {
  width: auto;
  height: 50px;
  margin-right: 16px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.navbar-brand:hover img {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

/* Brand text responsive display */
.brand-text-mobile {
  display: none;
}

.brand-text-desktop {
  display: inline;
}

.nav-link {
  font-weight: 500;
  color: var(--navy-deep) !important;
  padding: 12px 20px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  position: relative;
}

.nav-link:hover {
  color: var(--navy-deep) !important;
  background: rgba(212, 181, 118, 0.2);
  transform: translateY(-2px);
}

.nav-item.active .nav-link {
  color: var(--navy-deep) !important;
  background: rgba(212, 181, 118, 0.3);
  font-weight: 600;
}

.nav-item.active .nav-link:hover {
  color: var(--navy-deep) !important;
  background: rgba(212, 181, 118, 0.4);
  transform: translateY(-2px);
}

/* Hero Section - With Background Image */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("rw_common/images/homepage_hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(212, 181, 118, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(254, 253, 251, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  color: var(--pearl-white);
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--pearl-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--cream-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

/* Premium Buttons */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--warm-gold) 0%,
    var(--rich-gold) 100%
  );
  border: none;
  color: var(--pearl-white);
  padding: 16px 32px;
  font-weight: 600;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(
    135deg,
    var(--rich-gold) 0%,
    var(--warm-gold) 100%
  );
}

.btn-outline-primary {
  border: 2px solid var(--pearl-white);
  color: var(--navy-deep);
  background: var(--pearl-white);
  padding: 14px 30px;
  font-weight: 600;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--pearl-white);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline-primary:hover::before {
  width: 100%;
}

.btn-outline-primary:hover {
  color: var(--navy-deep);
  border-color: var(--cream-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: var(--cream-gold);
}

/* Content Sections */
.content {
  padding: 3rem 0 6rem 0;
  scroll-margin-top: 100px;
}

.welcome-section {
  padding: 0 0 2rem 0;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-gray);
  margin-bottom: 3rem;
  max-width: 90%;
}

.welcome-section .lead {
  text-align: left;
  max-width: 90%;
}

/* Welcome Highlights */
.welcome-highlights {
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
}

.highlight-item i {
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.text-warm-gold {
  color: var(--warm-gold);
}

.highlight-item span {
  color: var(--slate-gray);
  font-weight: 500;
}

/* Service Highlight - Premium Card */
.service-highlight {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--forest-green) 100%
  );
  color: var(--pearl-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0 0 0;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.service-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(212, 181, 118, 0.1) 0%,
    transparent 60%
  );
  border-radius: 50%;
}

.highlight-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.highlight-header i {
  font-size: 1.5rem;
  color: var(--cream-gold);
  margin-right: 0.75rem;
}

.highlight-title {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--cream-gold);
  position: relative;
  z-index: 2;
}

.service-times {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.time-item {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 213, 163, 0.2);
}

.time-item:last-child {
  border-bottom: none;
}

.time-item strong {
  color: var(--cream-gold);
  margin-right: 0.5rem;
}

.highlight-note {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
}

.highlight-text {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* Contact Card - Premium Design */
.contact-card {
  background: var(--pearl-white);
  border: 1px solid rgba(123, 169, 156, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  height: fit-content;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm-gold), var(--cream-gold));
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--cream-gold);
}

.contact-card h3 {
  color: var(--navy-deep);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-info a {
  color: var(--sage-green);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-quick);
}

.contact-info a:hover {
  color: var(--warm-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--pearl-white) !important;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.facebook:hover {
  background: #166fe5;
}

.social-link.youtube {
  background: #ff0000;
}

.social-link.youtube:hover {
  background: #cc0000;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-medium);
  color: var(--pearl-white) !important;
  text-decoration: none;
}

/* Services Section - Premium Grid */
.services-section {
  padding: 3rem 0;
  background: transparent;
  border-radius: var(--radius-xl);
  margin: 2rem 0;
  position: relative;
}

.service-card {
  background: var(--pearl-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(123, 169, 156, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 181, 118, 0.05),
    transparent
  );
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
  border-color: var(--cream-gold);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--sage-green), var(--mint-fresh));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--pearl-white);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--warm-gold), var(--rich-gold));
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--slate-gray);
  line-height: 1.7;
}

/* Scripture Section - Elegant Typography */
.scripture-section {
  background: linear-gradient(
    135deg,
    rgba(27, 59, 54, 0.02) 0%,
    rgba(212, 181, 118, 0.05) 50%,
    rgba(123, 169, 156, 0.02) 100%
  );
  border-radius: var(--radius-xl);
  margin: 2rem 0;
  padding: 4rem 2rem;
  position: relative;
  text-align: center;
}

.scripture-quote {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.4;
  color: var(--navy-deep);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 500;
  position: relative;
}

.quote-text::before,
.quote-text::after {
  content: '"';
  font-size: 4rem;
  color: var(--cream-gold);
  opacity: 0.6;
  position: absolute;
  font-family: var(--font-display);
}

.quote-text::before {
  top: -20px;
  left: -30px;
}

.quote-text::after {
  bottom: -40px;
  right: -30px;
}

.quote-source {
  font-size: 1.2rem;
  color: var(--mist-gray);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Footer - Premium Dark Design */
.footer {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--charcoal) 100%
  );
  color: var(--pearl-white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cream-gold),
    transparent
  );
}

.footer-about h5,
.footer-links h5,
.footer-contact h5 {
  color: var(--cream-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-about p {
  color: rgba(254, 253, 251, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(254, 253, 251, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--cream-gold);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(254, 253, 251, 0.8);
}

.contact-item i {
  color: var(--cream-gold);
  width: 20px;
  margin-right: 12px;
  margin-top: 2px;
  font-size: 0.9rem;
}

.contact-item a {
  color: rgba(254, 253, 251, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item a:hover {
  color: var(--cream-gold);
}

.footer-bottom {
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(254, 253, 251, 0.7);
  font-size: 0.9rem;
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 253, 251, 0.2),
    transparent
  );
  margin: 2rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 2rem 0;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin: 0.75rem 0;
  }

  .section-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Show mobile brand text, hide desktop */
  .brand-text-mobile {
    display: inline;
  }

  .brand-text-desktop {
    display: none;
  }

  .services-section {
    margin: 2rem 0;
    padding: 4rem 0;
  }

  .welcome-section .lead {
    text-align: center;
    max-width: 100%;
  }

  .navbar-brand img {
    width: auto;
    height: 40px;
  }

  .quote-text::before,
  .quote-text::after {
    display: none;
  }

  /* Creed Section Mobile */
  .creed-section {
    padding: 0;
    margin: 2rem 0;
  }

  .sermons-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .org-structure-section,
  .history-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .creed-version {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .creed-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .creed-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .faith-hero .hero-content {
    padding: 6rem 1rem 3rem;
  }
}

@media (max-width: 480px) {
  .creed-section {
    padding: 0;
    margin: 2rem 0;
  }

  .sermons-section {
    padding: 2rem 0;
    margin: 1.5rem 0;
  }

  .org-structure-section,
  .history-section {
    padding: 2rem 0;
    margin: 1.5rem 0;
  }

  .creed-version {
    padding: 1.5rem;
  }

  .creed-title {
    font-size: 1.2rem;
  }

  .creed-text {
    font-size: 0.95rem;
  }
}

/* Accessibility & Animations */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

*:focus {
  outline: 2px solid var(--warm-gold);
  outline-offset: 2px;
}

/* Smooth entrance animations for scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading state */
.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Faith/Subpage Hero Variants */
.faith-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("rw_common/images/hero_iman.jpg") center / cover no-repeat;
}

.faith-hero .hero-content {
  padding: 8rem 2rem 4rem;
}

/* Creed Section - Clean Design */
.creed-section {
  background: transparent;
  border-radius: var(--radius-xl);
  padding: 0;
  margin: 2rem 0;
}

/* Sermons Section */
.sermons-section {
  padding: 3rem 0;
  margin: 2rem 0;
  position: relative;
}

/* About Us Page Sections */
.org-structure-section {
  padding: 3rem 0;
  margin: 2rem 0;
  position: relative;
}

.history-section {
  padding: 3rem 0;
  margin: 2rem 0;
  position: relative;
}

.creed-main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
  position: relative;
}

.creed-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-gold), var(--cream-gold));
  border-radius: 2px;
}

.creed-container {
  max-width: 800px;
  margin: 0 auto;
}

.creed-version {
  background: var(--pearl-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--warm-gold);
  transition: var(--transition-smooth);
}

.creed-version:last-child {
  margin-bottom: 0;
}

.creed-version.english {
  border-left-color: var(--sage-green);
}

.creed-version:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.creed-title {
  font-size: 1.6rem;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.language-indicator {
  font-size: 0.75rem;
  color: var(--mist-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.creed-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  text-align: left;
}

.creed-text p {
  margin-bottom: 1.5rem;
}

.creed-text p:last-child {
  margin-bottom: 0;
}

/* Equal height cards when side by side */
.creed-section .row .col-lg-6 {
  display: flex;
}

.creed-section .row .col-lg-6 .creed-version {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
}

.creed-section .row .col-lg-6 .creed-version .creed-text {
  flex: 1;
}

/* Sermon Cards */
.sermon-card {
  background: var(--pearl-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border-left: 4px solid var(--warm-gold);
}

.sermon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.sermon-date {
  color: var(--warm-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sermon-title {
  color: var(--navy-deep);
  font-size: 1.4rem;
  margin: 1rem 0;
  font-weight: 600;
}

.sermon-excerpt {
  color: var(--slate-gray);
  line-height: 1.6;
}
