/* ---------------------------
   BASE
---------------------------- */

:root {
  --bg: #ffffff;
  --soft-bg: #c5c5f3;
  --text: rgb(94, 94, 94);
  --muted: #a7a7b3;
  --accent: #8ec5ff;
}

html, body {
  background: #FFF;
  color: var(--text);
  font-family: "Noto Sans Display", sans-serif;
  letter-spacing: 0.3px;
  scroll-behavior: smooth;
}

.container {
  max-width: 900px;
}

.grey-section {
  background-color: rgb(246, 246, 246);
}

section {
  padding-top: 30px;
  padding-bottom: 30px;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}

/* ---------------------------
   NAVBAR (make it disappear visually)
---------------------------- */

.navbar {
  background: #FFF !important;
  border: none;
  padding-top: 8px;
}

.navbar-brand {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: rgb(74, 145, 163) !important;
  padding-left: 20px;
  font-family: "Caveat";
}

.navbar-nav {
  padding-right: 20px;

}
.navbar-nav .nav-item {
  padding-left: 20px;
  text-transform: uppercase;
}
.navbar-nav .nav-item :hover {
  color: rgb(74, 145, 163) !important;
}


.navbar-nav .nav-item .dropdown-menu {
  text-transform: none;
}

.navbar-nav .nav-link {
  color: var(--text);
}

.navbar-nav {
  --bs-nav-link-color: var(--text);
    color: var(--text);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--text);
}

/* ---------------------------
   HERO
---------------------------- */
#heroCarousel {
  margin-top: 0px;
}
.carousel-item img {
  height: 60vh;
  object-fit: cover;
}

@media (max-width:768px){
  .carousel-item img { height: 42vh; }
}

/* ---------------------------
   INTRO (this is where the magic happens)
---------------------------- */

/*.intro {
  text-align: center;
  padding: 90px 20px 60px;
}*/

.intro img {

  border-radius: 6px;
  margin-bottom: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.intro h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: rgb(74, 145, 163) !important;
  font-family: "Caveat";
}

.intro p {
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 20px;
}

.yt-container {
  display: flex;
  justify-content: center;
}
.yt-container iframe {
  aspect-ratio: 16 / 9;
    width: 100% !important;
}
/* ---------------------------
   PHOTO STRIP
---------------------------- */

#photoCarousel img {
  object-fit: contain;
}
#photoCarousel .carousel-indicators img {
  height: 50px;
  object-fit: cover;
}

.carousel {
  margin: 60px 0;
}

.blur-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.7);
  transform: scale(1.1); /* Prevents white edges from the blur */
  z-index: 1;
}
.main-img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------------------------
   DISCOGRAPHY
---------------------------- */

.disco-year {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: rgb(74, 145, 163) !important;
  font-family: "Caveat";
}

#discography {
  padding-top: 40px;
}

#discography h3 {
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 60px;
  margin-bottom: 20px;
}

#discography a {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  padding: 6px 0;
  transition: all .25s ease;
}

#discography a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.custom-more-btn {
    border-radius: 0;
    letter-spacing: 0.1rem;
    font-size: 0.75rem;
    color: #5a6268;
    border-color: #ced4da;
    transition: all 0.3s ease;
}

.custom-more-btn:hover {
    background-color: #4A8C9E; /* Matches your header color */
    border-color: #4A8C9E;
    color: white;
}



/* ---------------------------
   QUOTE
---------------------------- */

.quote {
  margin: 120px auto;
  text-align: center;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 2;
  font-style: italic;
}

.quote-section {
  /* 1. Step back out of folders as discussed */
  background: url('../../img/quote_bg.jpg') no-repeat;
  
  /* 2. Position: 'center top' or 'center 20%' shows the upper part */
  background-position: center 50%; 
  background-size: cover;
  
  /* Remove display:flex here to let the overlay take over the space */
  display: block; 
  padding: 0; 
  position: relative;
  overflow: hidden;
}

.quote-overlay {
  /* 3. Ensure this fills the entire parent without gaps */
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  min-height: 400px; /* Adjust to your preferred height */
  
  /* 4. Center the text vertically and horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* 5. Move the padding here so the dark color hits the very edges */
  padding: 80px 0; 
}

.quote-section p {
  font-size: 2rem; /* Matches the "airy" feel of your reference */
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-family: "Caveat";
  font-weight: 600 !important;
}

/* ---------------------------
   SONG PAGE
---------------------------- */

.song-wrapper {
  padding: 80px 20px;
}

.song-wrapper img {
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.song-title {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.song-credits {
  color: var(--muted);
  margin-bottom: 30px;
}

.lyrics {
  background: var(--soft-bg);
  padding: 30px;
  border-radius: 6px;
  color: #d8d8df;
  line-height: 1.8;
  white-space: pre-wrap;
  margin-top: 40px;
}

/* ---------------------------
   BUTTON
---------------------------- */

.listen-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #ffffff;
  color: #000;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .25s ease;
}

.listen-btn:hover {
  transform: translateY(-2px);
}

/* ---------------------------
   FOOTER
---------------------------- */

footer {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
}

/* ---------------------------
   SONG PAGE
---------------------------- */
/* Header & Blur Effect */
.song-header {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.header-blur {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.8);
    transform: scale(1.1); /* Prevents white edges */
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Artwork Styling */
.artwork-container img {
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Lyrics Styling */
.lyrics-section {
    background-color: #ffffff;
    letter-spacing: 0.02rem;
}

.ls-2 {
    letter-spacing: 0.2rem;
}

.lyrics-body p {
    line-height: 2;
    color: #444;
    font-weight: 300;
}

/* Streaming Badge Button Styling */
.tracking-widest {
    letter-spacing: 0.15rem;
    font-size: 0.75rem;
    border-radius: 0;
}