body {
  background: linear-gradient(#3b2a29, #c9694b);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.navbar {
  background: linear-gradient(#c9694b, #3b2a29);
}

footer {
  background: linear-gradient(#3b2a29, #c9694b);
}

.logo {
  background: #852102;
}

.nav-link {
  font-family: "PT Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

#playMelodyBtn {
  background: #852102;
  border-radius: 40px;
}

#playMelodyBtn::before {
  content: "▶";
  color: #fff;
  margin-right: 0.5rem;
}

.video-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.video-section .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair", serif;
  font-weight: 700;
}

.panel {
  box-shadow: 0 4px 15px rgba(27, 27, 27, 0.1);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 20px;
}

.song-item {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.song-title {
  margin-left: 0;
}

.song-item:hover {
  color: #852102;
}

.playlist-scroll {
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  scroll-behavior: smooth;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #c9694b rgba(255, 255, 255, 0.7);
}

/* Chrome, Edge, Safari */
.playlist-scroll::-webkit-scrollbar {
  width: 8px;
}

.playlist-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.playlist-scroll::-webkit-scrollbar-thumb {
  background: #c9694b;
  border-radius: 10px;
}

.playlist-scroll::-webkit-scrollbar-thumb:hover {
  background: #c9694b;
}

.play-icon {
  font-size: 1.2rem;
  color: #ffffff;
  width: 24px;
  margin-right: 0;
}

.play-icon:hover {
  color: #852102;
}

.panel {
  max-width: 100%;
}

.song-lyrics {
  margin-top: 80px;
}

.album:hover {
  color: #852102;
  text-decoration: none;
}

.song-lyrics .song-title {
  margin-left: 0 !important;
}

/*worship.html*/
.worship .page-bg {
  position: relative;
  min-height: calc(100vh - 120px);
  background-image: url("/assets/images/worship.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

/*drive.html*/
.drive .page-bg {
  position: relative;
  min-height: calc(100vh - 120px);
  background-image: url("/assets/images/drive.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

/*cools.html*/
.cools .page-bg {
  position: relative;
  min-height: calc(100vh - 120px);
  background-image: url("/assets/images/cools.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 150, 109, 0.7);
  z-index: 0;
}

.page-bg > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 540px) {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h2 {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .hero .row.panel {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    margin: 0 auto 1rem;
  }

  .playlist {
    margin-top: 2rem;
  }

  .song-lyrics {
    margin-left: 0 !important;
    margin-top: 2rem;
  }

  .song-item {
    padding: 0.75rem;
  }

  .song-title {
    font-size: 0.95rem;
  }

  #album-cards {
    justify-content: center;
  }

  #album-cards .col-md-3 {
    margin: 0 auto 1.5rem !important;
    text-align: center;
  }

  #album-cards img {
    width: 200px;
  }

  footer {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar .nav-link {
    padding: 0.75rem 1rem;
  }

  .hero h2 {
    text-align: center;
  }

  .song-lyrics {
    margin-left: 0 !important;
    margin-top: 2rem;
  }

  .playlist-scroll {
    max-height: 350px;
  }

  #album-cards .col-md-3 {
    margin-bottom: 2rem;
    text-align: center;
  }

  #album-cards img {
    width: 220px;
  }
}

@media (max-width: 1024px) {
  .ml-5 {
    margin-left: 1.5rem !important;
  }

  .mr-4 {
    margin-right: 1.5rem !important;
  }

  .song-lyrics {
    padding: 1rem;
  }

  #album-cards img {
    width: 230px;
  }
}
