@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #333;
  background-color: #FAF8F5;
}

/* Navbar Styles */
.navbar {
  background-color: #FAF8F5;
  border-bottom: 1px solid transparent;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  box-shadow: 0 1px 0 rgba(15,23,42,0.08);
}

.home-page .navbar {
  background-color: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.home-page .navbar.solid {
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(15,23,42,0.08), 0 4px 18px rgba(15,23,42,0.08);
}

.home-page .navbar-brand,
.home-page .navbar-menu a {
  color: #ffffff;
}

.home-page .navbar-menu a::after {
  background-color: #ffffff;
}

.home-page .navbar-menu a:hover {
  color: #ffffff;
}

.home-page .navbar.solid .navbar-brand,
.home-page .navbar.solid .navbar-menu a {
  color: #111827;
}

.home-page .navbar.solid .navbar-menu a::after {
  background-color: #111827;
}

.home-page .navbar-menu a.active {
  color: #ffffff;
}

.home-page .navbar.solid .navbar-menu a.active {
  color: #111827;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  position: relative;
}

.navbar-brand {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 26px;
}

.navbar-menu a {
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s ease;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.2px;
  background-color: #111827;
  transition: width 0.25s ease;
}

.navbar-menu a:hover {
  color: #111827;
}

.navbar-menu a.active {
  color: #111827;
}

.navbar-menu a.active::after {
  width: 100%;
}

/* Hero Section */
.home-page .hero {
  background: linear-gradient(rgba(48,61,41,0.6), rgba(48,61,41,0.6)), url('assets/hero.jpg') center/cover no-repeat;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 120px 24px 90px;
}

#about-hero {
  background: #ffffff;
  min-height: auto;
  padding: 100px 20px 50px;
  color: #111827;
}

#about-hero .hero-content {
  max-width: 760px;
  margin: 0 auto;
}

#about-hero .hero-title {
  color: #111827;
  font-size: 46px;
}

#about-hero .hero-subtitle {
  color: #4b5563;
  font-size: 17px;
  font-weight: 300;
  margin-top: 16px;
}
.publications-hero {
  background: #ffffff;
  padding: 120px 20px 60px;
  text-align: center;
}

@media (max-width: 640px) {
  .publications-hero {
    padding: 100px 16px 40px;
  }
}

.publications-hero .hero-content {
  max-width: 760px;
  margin: 0 auto 32px;
}

.publications-tabs::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d7d2c6;
  margin-bottom: 0px;

}

.publications-hero .hero-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.blog-page .publications-hero .hero-title {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.blog-page .publications-hero .hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70%;
  height: 1px;
  background: #d7d2c6;
}

.publications-hero .hero-subtitle {
  color: #6b6b6b;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.publications-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 100px;
  position: relative;
  padding-bottom: 24px;
}

@media (max-width: 640px) {
  .publications-tabs {
    margin-top: 56px;
    gap: 8px;
    padding-bottom: 18px;
  }
}

.publications-tabs::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d7d2c6;
  margin-bottom: 0px;

}

.tab-button {
  background: transparent;
  /* border: 1px solid #d7d2c6; */
  color: #4b5563;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tab-button.active,
.tab-button:hover {
  background: #32402f;
  color: #ffffff;
  border-color: #32402f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.publications-list {
  padding: 60px 20px 100px;
  background-color: #FAF8F5;
}

.contact-hero {
  background: linear-gradient(rgba(234, 235, 220, 0.788), rgba(239, 245, 216, 0.908)), url('assets/hero.jpg') center/cover no-repeat;
  min-height: 400px;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
}

.contact-hero .hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.contact-hero .hero-title {
  color: #000000;
}
.contact-hero .hero-subtitle {
  color: #000000;
}

.contact-section {
  padding: 80px 20px 120px;
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact-form-panel,
.contact-card {
  background: transparent;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.047);
}
.contact-cards {
  background: transparent;
  border-radius: 20px;
  padding: 32px;
  /* box-shadow: 0 18px 40px rgba(15, 23, 42, 0.047); */
}
.contact-form-panel h2,
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
  color: #111827;
}

.contact-form-panel p,
.contact-card p {
  color: #6b6b6b;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d7d2c6;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  color: #111827;
  background: #faf7f1;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background-color: #32402f;
  color: #ffffff;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 13px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: transparent;
  color: #32402f;
  border-color: #32402f;
}

.contact-sidebar {
  display: grid;
  gap: 24px;
}

.contact-socials {
  display: flex;
  gap: 14px;
  margin: 24px 0 0;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  background: #f4f0e9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d7d2c6;
  color: #32402f;
  text-decoration: none;
}

.contact-list {
  padding-left: 18px;
  margin: 0;
  color: #6b6b6b;
  line-height: 1.8;
}

.contact-list li {
  margin-bottom: 10px;
}

/* Music page styles */
.music-hero {
  background: linear-gradient(rgba(48, 61, 41, 0), rgba(48, 61, 41, 0)), url('assets/images/music-hero.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 640px;
  padding: 160px 20px 80px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.music-post-page{
  background: #FAF8F5;
}
.music-post-page .post-hero.music-hero {
  position: relative;
  min-height: 40vh;
  background-position: center 13% !important;
  background-size: cover !important;
  overflow: hidden;
}

.music-post-page .post-hero.music-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.401);
  pointer-events: none;
}

.music-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 20px;
}

.music-hero .hero-title {
  font-size: 42px;
  margin-bottom: 8px;
  position: relative;
}

.music-post-page .music-hero .hero-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #FAF8F5;
  margin: 14px auto 0;
}

.music-hero .hero-subtitle {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 300;
  margin-top: 8px;
}

body.music-post-page .post-hero.music-hero .hero-subtitle {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}

.music-page .music-content {
  background: #ffffff;
  padding: 60px 20px;
  margin-top: 0;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  border-radius: 12px;
}

.music-content .container {
  max-width: 980px;
  margin: 0 auto;
  color: #111827;
  line-height: 1.8;
}
.music-content .container .muted {
  max-width: 980px;
  margin: 0 auto;
  color: #111827;
  font-weight: bold;
  line-height: 1.8;
}

.music-search {
  display: flex;
  width: 100%;
  max-width: 900px;
  border: 1px solid #d7d2c6;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  margin: 0 auto;
}

.music-search input {
  flex: 1;
  padding: 16px 18px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #111827;
}

.music-search button {
  background: #32402f;
  border: none;
  color: #ffffff;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  display: grid;
  place-items: center;
  background: #ef4444;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  border-radius: 50%;
}

.feature-card {
  width: 100%;
  max-width: 900px;
  height: auto;
  min-height: 500px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  border-radius: 0;
}

.feature-image {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transform: scale(1.05);
  transform-origin: center;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #111827;
}

.feature-copy {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

.feature-details {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
}

.feature-details i {
  font-size: 16px;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin: 24px 0 0;
  padding: 0 20px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .featured-header {
    flex-direction: column;
    gap: 16px;
    margin: 16px 0 0;
    padding: 0 16px;
  }
}

.featured-header-left {
  flex: 1;
  min-width: 0;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
}

.featured-desc {
  margin: 0;
  font-size: 13px;
  color: #8b8b8b;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.featured-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .featured-header-right {
    width: 100%;
    white-space: normal;
    justify-content: space-between;
  }
}

.featured-duration {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.featured-share {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.song-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  width: 100%;
  max-width: 928px;
}

.song-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  color: #111827;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .song-item {
    padding: 16px;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.song-item:last-child {
  border-bottom: none;
}

.song-play-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  border: none;
  background: #ef4444;
  color: #ffffff;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.song-play-btn:active {
  transform: scale(0.95);
}

.song-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
}

.song-desc {
  margin: 3px 0 0;
  font-size: 13px;
  color: #8b8b8b;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.song-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.song-actions a {
  color: #111827;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.song-no-results {
  display: none;
  margin-top: 16px;
  color: #6b7280;
  font-size: 14px;
}

.book-worship-cta {
  background: #32402f;
  padding: 80px 20px;
  text-align: center;
}

.book-worship-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.book-worship-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #ffffff;
  margin: 0;
}

.book-worship-copy {
  color: #dde0d3;
  font-size: 14px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0;
}

.book-worship-button {
  display: inline-block;
  padding: 14px 34px;
  background-color: #ffffff;
  color: #32402f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.book-worship-button:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.music-feature {
  padding: 0;
  background: #f8f6f3;
  display: flex;
  justify-content: center;
}

.music-page .music-feature {
  background: #f8f6f3;
  box-shadow: none;
  border-radius: 0;
  margin: 0 0 36px;
  padding: 80px 20px;
}

.music-feature-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .music-page .music-feature {
    padding: 60px 18px;
  }
}

@media (max-width: 640px) {
  .music-page .music-feature {
    padding: 40px 16px;
  }
}

.feature-copy {
  max-width: 620px;
}

.feature-copy .section-title {
  font-size: 48px;
  margin-bottom: 18px;
  color: #111827;
}

.feature-copy .section-sub {
  max-width: 520px;
  margin-bottom: 28px;
  color: #4b5563;
  font-size: 16px;
}

.feature-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.music-page .music-feature.reversed {
  background: #ffffff;
  padding: 60px 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  margin: 0 auto 36px;
}

.music-page .music-feature.reversed .music-feature-inner {
  grid-template-columns: 480px 1fr;
}

@media (max-width: 900px) {
  .music-feature-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-image img {
    max-width: 360px;
    margin: 0 auto;
  }
  .feature-copy .section-title {
    font-size: 36px;
    text-align: center;
  }
  .feature-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .music-feature-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-copy .section-title {
    font-size: 32px;
  }

  .feature-copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .music-feature-inner {
    gap: 20px;
  }

  .feature-image img {
    max-width: 100%;
  }

  .feature-copy .section-title {
    font-size: 28px;
  }

  .feature-copy .section-sub {
    font-size: 15px;
    max-width: 100%;
  }
}

.music-benefits {
  background: #f8f6f3;
  padding: 90px 20px 110px;
}

.music-benefits .featured-grid {
  gap: 40px;
}

.work-card {
  background: transparent;
  text-align: left;
  width: 100%;
  max-width: 260px;
  padding: 28px 24px;
  border-radius: 18px;
  /* box-shadow: 0 18px 40px rgba(0, 76, 255, 0.08); */
}

.work-card h4 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: #111827;
}

.work-card .muted {
  color: #8b8b8b;
  font-size: 16px;
  font-style: italic;
  margin: 0;
}

.music-inner {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  text-align: center;
}
.music-copy {
  display: grid;
  gap: 20px;
  justify-items: center;
}
.music-copy .section-title {
  margin-top: 0;
}

.music-copy .section-title {
  position: relative;
  /* display: inline-block; */
  justify-self: center;
}

.music-copy .section-title::after {
  content: '';
  width: 60px;
  height: 2px;
  background: #32402f;
  display: block;
  margin: 12px auto 0;
}

.music-covers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cover-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.cover-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 12px;
}

.cover-card h4 {
  margin: 0 0 8px 0;
  font-family: 'Playfair Display', serif;
}

.publications-list-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: 28px;
}

@media (max-width: 900px) {
  .publications-list-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .publications-list-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.blog-page .publication-card {
  display: grid;
  gap: 11px;
}

.blog-page .publication-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  display: block;
  margin: 0;
  border-radius: 6px;
  object-fit: fill;
}

.blog-page .publication-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.blog-page .publication-date {
  color: #6b6b6b;
  font-size: 11px;
  margin: 0;
}

.blog-page .publication-card h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
}

.blog-page .publication-card .muted {
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.publication-card {
  padding: 20px 20px 18px;
  border-radius: 20px;
  text-align: left;
  display: grid;
  gap: 11px;
}

@media (max-width: 640px) {
  .publication-card,
  .magazine-card {
    padding: 16px;
  }
}

.prayers-hero {
  background: linear-gradient(180deg, #F5F0EB 0%, #F7F2EE 16.67%, #F8F5F2 33.33%, #FAF7F5 50%, #FCFAF8 66.67%, #FDFCFC 83.33%, #FFFFFF 100%);
  padding: 120px 10px 60px;
  text-align: center;
}

.prayers-hero .hero-content {
  max-width: 760px;
  margin: 0 auto 32px;
  margin-top: 30px;
  position: relative;
}

.prayers-hero .hero-title {
  font-size: 42px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.prayers-hero .hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 50px;
  height: 1px;
  background: #32402f6e;
}

.prayers-hero .hero-subtitle {
  color: #6b6b6b;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 110px;
}

.tab-button.active,
.tab-button:hover {
  background: #32402f;
  color: #ffffff;
  border-color: #32402f;
}

.prayers-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 60px;
  position: relative;
  padding-bottom: 24px;
}

.prayers-tabs::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d7d2c6;
}

.prayers-list {
  background: #FFFFFF;
  padding: 60px 20px 90px;
}

.prayers-list-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.prayer-card {
  padding: 24px 22px;
  border-left: 2px solid #d7d2c6;
  background: #ffffff;
  text-align: left;
}

.prayer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 14px;
}

.prayer-card .muted {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.prayer-request {
  background: #f5f1e7;
  padding: 80px 20px;
  text-align: center;
}

.prayer-request .request-inner {
  max-width: 760px;
  margin: 0 auto;
}

.prayer-request h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 12px;
  color: #111827;
}

.prayer-request p {
  margin: 0 auto 26px;
  max-width: 620px;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.8;
}

.prayer-request .request-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #32402f;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.prayer-request .request-button:hover {
  background-color: transparent;
  color: #32402f;
  border-color: #32402f;
}

.publication-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  display: block;
  margin: 0;
  border-radius: 6px;
  object-fit: fill;
}

.publication-label {
  color: #6b6b6b;
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  margin-bottom: 5px;
}

.publication-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
  text-decoration: none;
}

.publication-card h3 a {
  text-decoration: none;
  color: inherit;
}


.publication-card .muted {
  color: #5f5f5f;
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

.publication-card .text-link {
  display: inline-block;
  margin-top: 2px;
  font-size: 14px;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-page .publication-card {
  display: grid;
  gap: 18px;
}

.blog-page .publication-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  display: block;
  margin: 0;
  border-radius: 6px;
  object-fit: fill;
}

.blog-page .publication-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration: none;
}

.blog-page .publication-date {
  font-size: 11px;
  letter-spacing: 0.4px;
  color: #6b6b6b;
  margin: 0;
}

.blog-page .publication-meta .meta-date i {
  font-size: 12px;
  color: #6b6b6b;
}

.blog-page .publication-card h3 {
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}

.blog-page .publication-card .muted {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5f5f5f;
}

.hero-content {
  max-width: 820px;
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.6px;
  font-family: 'Playfair Display', serif;
}




.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.about-section {
  padding: 20px 70px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  width: min(960px, 60vw);
  margin: 0 auto;
  align-items: start;
}

.about-image img {
  width: 100%;
  max-height: 560px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.about-copy {
  max-width: 560px;
  display: grid;
  gap: 10px;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.about-note {
  color: #7d7979;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 40px;
  text-decoration: none;
}
.about-note:hover {
  color: #25489a;
}

.about-divider {
  width: 50%;
  max-width: 180px;
  height: 1px;
  background: #d7d2c6;
  margin: 26px 0;
}

.eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5d5d5d;
  margin-bottom: 18px;
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.1;
  color: #111827;
}

.about-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
}

.text-link {
  display: inline;
  color: #111827;
  text-decoration: underline;
  text-decoration-color: #111827;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.prayer-card .text-link {
  text-decoration: none;
}

.text-link:hover {
  color: #1f2937;
  text-decoration-color: #1f2937;
  opacity: 0.9;
}

/* Featured Works */
.featured-section {
  padding: 80px 20px;
}

.home-page .featured-section .work-card {
  background: transparent !important;
}

.home-page .featured-section .work-card img {
  background: transparent;
}

.featured-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.publications-cta {
  background: #32402f;
  padding: 70px 20px;
  text-align: center;
  color: #ffffff;
}
.publications-cta1 {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
  color: #000;
}

.publications-card {
  max-width: 540px;
  margin: 0 auto;
  background: #f5f1e7;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  padding: 42px 28px;
}

.publications-inner {
  max-width: 520px;
  margin: 0 auto;
}

.music-hero + .publications-tabs {
  background: #ffffff;
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.03);
}

.publications-cta .section-title {
  margin-bottom: 10px;
  color: #ffffff;
}

.publications-cta .section-sub {
  margin-bottom: 28px;
  color: #dde0d3;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #32402f;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.cta-button:hover {
  background-color: transparent;
  color: #32402f;
  border-color: #32402f;
}

.publications-cta .cta-button {
  background-color: #ffffff;
  color: #32402f;
}

.publications-cta .cta-button:hover {
  background-color: #dde0d3;
  color: #32402f;
  border-color: #dde0d3;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 6px;
  color: #111827;
}

.section-sub {
  color: #6b6b6b;
  font-size: 14px;
  margin-bottom: 34px;
}

.recognition-section {
  background: #fff;
  padding: 80px 20px;
}

.recognition-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.recognition-card {
  text-align: left;
}

.recognition-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.recognition-copy {
  margin-top: 16px;
}

.recognition-copy h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin: 0 0 8px 0;
  color: #111827;
}

.recognition-copy .muted {
  color: #8b8b8b;
  font-size: 13px;
  margin: 0 0 6px 0;
}

.recognition-copy .year {
  color: #6b6b6b;
  font-size: 13px;
  margin: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.work-card {
  background: transparent;
  text-align: left;
  width: 100%;
  max-width: 260px;
}

.work-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit:fill; 
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  margin-bottom: 12px;
}

.work-card h4 {
  font-size: 16px;
  margin: 0 0 6px 0;
  color: #111827;
}

.work-card .muted {
  color: #8b8b8b;
  font-size: 13px;
  font-style: italic;
}

.themes-section {
  background: #fff;
  padding: 80px 20px;
}

.themes-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.themes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 20px;
  margin-top: 28px;
  align-items: start;
}

.theme-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: start;
  width: 100%;
  max-width: 160px;
  flex: 0 1 calc(50% - 10px);
}

@media (max-width: 480px) {
  .theme-card {
    max-width: calc(50% - 10px);
    flex: 0 1 calc(50% - 10px);
  }
}

.theme-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f4f0e9;
  display: grid;
  place-items: center;
  padding: 8px;
}

.theme-icon i {
  font-size: 24px;
  color: #1f2937;
  line-height: 1;
}

.theme-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .work-card img {
    height: 180px;
  }
}

.hero-button {
  display: inline-block;
  padding: 12px 34px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  border: 2px solid #fff;
  cursor: pointer;
}

.hero-button:hover {
  background-color: transparent;
  color: #fff;
}

.hero-button-wrapper {
  margin-top: 24px;
}

.blog-highlight-section {
  background: #32402f;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.blog-highlight-card {
  margin: 0 auto;
  padding: 42px 32px;
  color: #ffffff;
}

.blog-highlight-content {
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto;
}

.blog-highlight-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.1;
}

.blog-highlight-section p {
  color: #b0a6a6;
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.blog-highlight-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.blog-highlight-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #32402f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.blog-highlight-button:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.button-wrapper {
  margin-top: 12px;
}

.post-page {
  background-color: #ffffff;
  color: #1f2937;
}

.post-hero {
  min-height: 30vh;
  max-height: 380px;
  padding: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 116px;
}

.post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.35) 90%, rgba(255,255,255,0.55) 95%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}

.post-hero-image {
  display: none;
}

.backbar {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  height: 58px;
  background-color: #FAF8F5;
  border-bottom: 1px solid rgba(15,23,42,0.04);
  z-index: 99;
}

.backbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
}

.back-link {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 14px;
  padding: 0 8px;
}

.back-link:hover {
  color: #111827;
}

.post-main {
  padding: 60px 20px 100px; 
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.post-main > * {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.post-content,
.post-share,
.continue-reading {
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.post-label {
  background: #f4f0e9;
  color: #6b6b6b;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 36px;
  color: #111827;
}

.post-content {
  display: grid;
  gap: 32px;
  color: #4b5563;
  line-height: 1.85;
  font-size: 16px;
}

.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-top: 0;
  color: #111827;
}

.post-content p {
  margin: 0;
}

.post-content blockquote {
  margin: 0;
  padding: 26px 28px;
  border-left: 3px solid #d7d2c6;
  background: #faf7f1;
  border-radius: 16px;
  color: #6b6b6b;
  font-style: italic;
  line-height: 1.9;
}

.post-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #e8e2d8;
  padding-top: 32px;
  margin-top: 36px;
}

.post-share p {
  margin: 0;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f0e9;
  color: #32402f;
  text-decoration: none;
  border: 1px solid #e8e2d8;
}

.continue-reading {
  margin-top: 52px;
  padding: 48px 40px;
  background: #f4efe8;
  border-radius: 24px;
}

.continue-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.continue-inner .section-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.continue-inner .section-sub {
  color: #6b6b6b;
  font-size: 15px;
  margin-bottom: 28px;
  font-weight: 300;
}

.continue-inner .cta-button {
  padding: 14px 30px;
}

@media (max-width: 860px) {
  .post-main {
    padding: 60px 0 80px;
  }
  .post-title {
    font-size: 34px;
  }
  .post-hero {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-share {
    flex-direction: column;
    align-items: flex-start;
  }
  .continue-reading {
    padding: 32px 24px;
  }
}

html {
  scroll-padding-top: 78px;
}

.site-footer {
  background-color: #32402f;
  color: #dde0d3;
  padding: 60px 20px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 34px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #f9faf5;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.8;
  color: #cfd3c2;
  max-width: 320px;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b7bcab;
  margin-bottom: 16px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-menu a {
  color: #dde0d3;
  text-decoration: none;
  font-size: 13px;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  text-decoration: none;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: #dde0d3;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.22);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
  color: #aeb29c;
  font-size: 13px;
}

/* Magazine / Articles grid */
.magazine-section {
  background: #ffffff;
  padding: 80px 20px 60px;
}

.magazine-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .magazine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.magazine-card {
  text-align: left;
}

.magazine-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  margin-bottom: 12px;
}

.magazine-card h4 {
  font-family: 'Playfair Display', sans-serif;
  font-size: 16.5px;
  margin: 0 0 8px 0;
  color: #111827;
  font-weight: 500;
}
.magazine-card .text-link {
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}
.magazine-card .muted {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #6b6b6b;
  font-size: 12px;
  margin: 0 0 10px 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    min-height: 75vh;
    padding: 40px 18px;
  }

  .hero-title,
  .hero-title1 {
    font-size: 36px;
  }

  .cross {
    font-size: 22px;
    margin: 0 8px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .about-grid {
    width: min(720px, 90vw);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section {
    padding: 70px 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 70vh;
    padding: 32px 16px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 4px;
  }

  .hero-title,
  .hero-title1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-button-wrapper {
    margin-top: 20px;
  }

  .about-section {
    padding: 44px 16px;
  }

  .about-grid {
    width: 100%;
    gap: 28px;
  }

  .about-image img {
    max-height: 360px;
  }

  .about-copy h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .about-copy p {
    font-size: 14px;
  }

  .featured-section {
    padding: 48px 16px;
  }

  .featured-grid {
    gap: 16px;
  }

  .work-card img {
    max-height: 180px;
  }

  .themes-section {
    padding: 48px 16px;
  }

  .themes-grid {
    gap: 16px;
  }

  .blog-highlight-section {
    padding: 64px 16px;
  }

  .blog-highlight-card {
    padding: 28px 18px;
  }

  .blog-highlight-section h2 {
    font-size: 26px;
  }

  .blog-highlight-section h2 br {
    display: none;
  }

  .blog-highlight-section p {
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-copy {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-page .hero {
    min-height: 100svh;
    padding: 28px 12px;
  }

  .hero-title,
  .hero-title1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .keep-line {
    white-space: normal;
  }

  .cross {
    font-size: 18px;
    margin: 0 6px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-button {
    padding: 12px 34px;
    font-size: 13px;
    width: auto;
    min-width: 0;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
  }

  .about-section {
    padding: 50px 16px;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .navbar-container {
    height: 48px;
  }

  .navbar-brand {
    font-size: 15px;
  }

  .navbar-menu {
    gap: 12px;
  }

  .navbar-menu a {
    font-size: 11px;
  }
}

/* ===== HAMBURGER MENU STYLING ===== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  gap: 6px;
  z-index: 101;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.hamburger-menu span {
  width: 26px;
  height: 2.5px;
  background-color: #111827;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.home-page .hamburger-menu span {
  background-color: #ffffff;
}

.home-page .navbar.solid .hamburger-menu span {
  background-color: #111827;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important;
  }

  .navbar-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #FAF8F5;
    flex-direction: column;
    gap: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    z-index: 99;
  }

  .navbar-menu.active {
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }

  .navbar-menu li {
    border-bottom: none;
  }

  .navbar-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
  }

  .home-page .navbar-menu {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  }

  .home-page .navbar.solid .navbar-menu {
    background-color: #ffffff;
  }
}

/* ===== RESPONSIVE TYPOGRAPHY & SPACING ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .publications-list-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .work-card {
    max-width: 100%;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .music-feature-inner {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .music-feature.reversed .music-feature-inner {
    grid-template-columns: 1fr !important;
  }

  .feature-image {
    order: -1;
  }

  .music-benefits {
    padding: 60px 20px;
  }

  .featured-section {
    padding: 60px 20px;
  }

  .about-section {
    padding: 50px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .publication-card {
    padding: 16px;
  }

  .prayers-list {
    padding: 40px 20px 60px;
  }

  .prayer-request {
    padding: 60px 20px;
  }
}

@media (max-width: 640px) {
  .navbar-brand {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero-button {
    padding: 10px 24px;
    font-size: 12px;
  }

  .cta-button,
  .blog-highlight-button,
  .request-button {
    min-height: 44px;
    min-width: 100%;
    justify-content: center;
  }

  .contact-socials a,
  .footer-socials a,
  .social-icons a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .submit-button {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .publications-list-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .blog-page .publication-card h3 {
    font-size: 18px;
  }

  .publication-card h3 {
    font-size: 14px;
  }

  .publication-card .muted {
    font-size: 12px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .work-card h4 {
    font-size: 16px;
  }

  .work-card .muted {
    font-size: 13px;
  }

  .prayer-card h3 {
    font-size: 20px;
  }

  .prayers-hero .hero-title {
    font-size: 32px;
  }

  .theme-icon {
    width: 56px;
    height: 56px;
  }

  .theme-icon i {
    font-size: 20px;
  }

  .music-benefits {
    padding: 40px 15px;
  }

  .music-content {
    padding: 40px 15px !important;
  }

  .music-feature {
    padding: 50px 15px !important;
  }

  .music-feature.reversed {
    padding: 40px 15px !important;
  }

  .featured-section {
    padding: 40px 15px;
  }

  .recognition-section {
    padding: 40px 15px;
  }

  .themes-section {
    padding: 40px 15px;
  }

  .about-section {
    padding: 30px 15px;
  }

  .prayers-list {
    padding: 30px 15px 50px;
  }

  .prayer-request {
    padding: 40px 15px;
  }

  .publications-cta {
    padding: 50px 15px;
  }

  .publication-card {
    padding: 12px;
  }

  .publication-card img {
    max-height: 150px;
  }

  .cover-card {
    padding: 10px;
  }

  .cover-card img {
    max-height: 180px;
  }

  .prayers-hero .hero-subtitle {
    font-size: 14px;
    margin-bottom: 60px;
  }

  .contact-hero {
    min-height: 300px !important;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .navbar-container {
    padding: 0 15px;
  }

  .music-covers {
    grid-template-columns: 1fr;
  }

  .prayer-request h2 {
    font-size: 28px;
  }

  .prayer-request p {
    font-size: 14px;
  }
}

/* Additional mobile-first refinements */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .music-hero {
    min-height: 520px;
    padding: 140px 18px 70px;
  }

  .music-hero .hero-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .music-hero .hero-title {
    font-size: 36px;
  }

  .music-hero .hero-subtitle {
    font-size: 14px;
  }

  .music-search {
    flex-wrap: wrap;
  }

  .music-search button {
    width: 100%;
    padding: 14px 18px;
  }
}

@media (max-width: 640px) {
  .music-hero {
    min-height: 420px;
    padding: 120px 16px 60px;
  }

  .music-hero .hero-title {
    font-size: 28px;
  }

  .music-hero .hero-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .music-search {
    flex-wrap: wrap;
  }

  .music-search input,
  .music-search button {
    width: 100%;
  }

  .music-search button {
    padding: 12px 16px;
  }

  .feature-copy .section-title {
    font-size: 28px;
  }

  .music-content {
    padding: 30px 15px !important;
  }
}

@media (max-width: 480px) {
  .music-hero {
    min-height: 360px;
    padding: 110px 14px 50px;
  }

  .music-hero .hero-title {
    font-size: 24px;
  }

  .music-hero .hero-subtitle {
    font-size: 13px;
  }

  .hero-button,
  .submit-button,
  .cta-button,
  .blog-highlight-button,
  .request-button {
    width: 100%;
    text-align: center;
  }
}
