
/*
* Globals
*/


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
}


/*
* Base structure
*/

body {
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

/* Style the scrollbar track (part that the thumb slides within) */
::-webkit-scrollbar {
  width: 16px; /* Width of the scrollbar */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px; /* Rounded corners */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background: #4c631a;
}

.cover-container {
max-width: 42em;
}


/*
* Header
*/

.nav-masthead .nav-link {
color: rgba(255, 255, 255, .5);
border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}

.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}

header {
  display: flex;
  justify-content: space-between; /* Space between left and right items */
  align-items: center; /* Center items vertically */
  padding: 0 20px; /* Horizontal padding for spacing */
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.header-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header-left {
  margin-right: 325px; /* Space between h3 and nav */
}


/* body */
body {
position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('content/music.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Ensures the background stays behind all content */
}

.container {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
}

h1 {
 margin-top: 50px;
 text-align: center;
}

h2 {
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  margin: 0;
  line-height: .8;
}

p {
  font-weight: bold;
  font-size: 1.25rem;
}


.warning {
 color:darkred;
}

.audios {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}

.song {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.description {
  display: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  font-size: 1rem;
  padding: 1rem;
  margin-bottom: 0;
  text-align: left;
  background-color: rgba(0 ,0, 0, 0.1);
  color: white;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.description:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.toggle-description {
  cursor: pointer;
  font-size: 1.5rem;
  margin-top: 10px;
}

.toggle-description.active::before {
  content: '▲';
}

audio {
  width: 90%;
}

audio::-webkit-media-controls-panel {
  background-color: #688f36;
}


footer {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .header-left {
    float: none;
    text-align: center;
    margin-right: 0;
  }
}