/* CLEAN INDEX PAGE LAYOUT */

/* Content container */
.content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Quote section */
.quote-section {
  background-color: #000;
  padding: 15px 0 30px;
  min-height: 162px;
}

.quote-text {
  margin: 0;
  text-align: center;
}

.quote-text p {
  margin: 0;
  text-align: center;
  color: white;
  font-family: your-type, sans-serif;
}

.audio-player {
  text-align: center;
  margin: 20px auto 46px;
  width: fit-content;
  border: 2px solid #333;
  background-color: #000;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Custom Audio Player Styling */
.custom-audio-player {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 400px;
  height: 50px;
}

#audio-element {
  display: none;
}

.play-pause-btn {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.play-pause-btn:hover {
  color: #fff;
}

.time-display {
  color: #ccc;
  font-family: your-type, sans-serif;
  font-size: 0.85rem;
  min-width: 35px;
  text-align: center;
}

.progress-container {
  flex: 1;
  height: 8px;
  background-color: #333;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  margin: 0 5px;
}

.progress-bar {
  height: 100%;
  background-color: #666;
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #ccc;
  border-radius: 50%;
  left: 0%;
  cursor: pointer;
  transition: left 0.1s ease;
}

.progress-handle:hover {
  background-color: #fff;
}

.volume-btn {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.volume-btn:hover {
  color: #fff;
}

.volume-container {
  width: 60px;
  height: 6px;
  background-color: #333;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.volume-fill {
  height: 100%;
  background-color: #666;
  border-radius: 3px;
  width: 80%;
  transition: width 0.1s ease;
}

.volume-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  left: 80%;
  cursor: pointer;
  transition: left 0.1s ease;
}

.volume-handle:hover {
  background-color: #fff;
}

/* Albums section */
.albums-section {
  background-color: #000;
  padding: 0 0 50px;
  min-height: 720px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
  margin-bottom: 50px;
}

.album-item {
  background-color: #1a1a1a;
  border-radius: 50px;
  padding: 30px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.album-image {
  width: 128px;
  height: 128px;
  margin: 0 auto 15px;
  border-radius: 10px;
  object-fit: cover;
}

.album-title {
  font-family: your-type, sans-serif;
  font-size: 0.875rem;
  margin: 0;
  color: #d9d9d9;
  text-align: center;
  line-height: 1.3;
}

.album-link:hover .album-title {
  color: #ffffff;
}

/* Responsive design */
@media (max-width: 1199px) {
  .content-container {
    max-width: 940px;
  }
}

@media (max-width: 991px) {
  .content-container {
    max-width: 720px;
  }
  
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .content-container {
    max-width: 540px;
    padding: 0 20px;
  }
  
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .album-item {
    padding: 50px;
  }
  
  .audio-player {
    width: 90%;
    padding: 15px;
    overflow: hidden;
  }
  
  .custom-audio-player {
    width: 100%;
    flex-wrap: wrap;
    height: auto;
    gap: 10px;
    padding: 5px;
  }
  
  .play-pause-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .time-display {
    font-size: 0.75rem;
    min-width: 30px;
  }
  
  .progress-container {
    flex: 1;
    order: 3;
    margin: 0 10px;
    min-width: 150px;
  }
  
  .play-pause-btn {
    order: 1;
  }
  
  #current-time {
    order: 2;
  }
  
  #duration {
    order: 4;
  }
  
  .volume-btn {
    font-size: 14px;
    padding: 6px;
    order: 5;
  }
  
  .volume-container {
    width: 50px;
    order: 6;
  }
}

@media (max-width: 575px) {
  .content-container {
    max-width: 340px;
  }
  
  .albums-grid {
    gap: 15px;
  }
  
  .audio-player {
    width: 95%;
    padding: 12px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .custom-audio-player {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .progress-container {
    height: 6px;
    flex: 1;
    order: 3;
    margin: 0 10px;
    min-width: 100px;
  }
  
  .play-pause-btn {
    order: 1;
  }
  
  #current-time {
    order: 2;
  }
  
  #duration {
    order: 4;
  }
  
  .volume-btn {
    order: 5;
  }
  
  .volume-container {
    order: 6;
  }
  
  .progress-handle {
    width: 14px;
    height: 14px;
  }
  
  .volume-handle {
    width: 10px;
    height: 10px;
  }
}