/* GLOBAL STYLES */
* {
  box-sizing: border-box;
}

body {
  background: #0a0a0a; /* Unified Dark Background */
  margin: 0;
  padding: 16px 24px 40px;
  color: #e0e0e0;
  font-family: "Cormorant Garamond", serif;
}

/* ============================= */
/*            NAVBAR             */
/* ============================= */

.navbar {
  width: 100%;
  height: 70px;
  background: #000;
  border-bottom: 2px solid #FFD700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}



/* ============================= */
/*             HERO              */
/* ============================= */

.hero {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #FFD700, #DAA520); /* Gradient Gold */
  border-radius: 20px;
  padding: 40px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  border: 1px solid #B8860B;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content p {
  color: #111;
  font-weight: 600;
  font-size: 1.2rem;
}

/* OPTIONS SLIDER */
.slider-wrapper {
  margin-top: 20px;
}

.options-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
  padding-top: 30px;
}

.options-track {
  display: inline-flex;
  gap: 20px;
}

.option {
  height: 100px;
  width: 200px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  font-size: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #FFD700;
}

.option:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.6);
}

/* AUDIO BARS */
.bars-container {
  margin-top: 40px;
}

.audio-group {
  margin-bottom: 26px;
}

.audio-bar {
  background: #222;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.inside-box,
.sub-inside-box {
  width: 45%;
  height: 60px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid #FFD700;
  margin-left: auto;
  position: relative;
  cursor: pointer;
}

.seek-overlay,
.sub-seek-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background:  rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  pointer-events: none;
}

.play-btn,
.sub-play-btn {
  min-width: 70px;
  height: 38px;
  border-radius: 25px;
  border: none;
  background: #FFD700;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.bar-name {
  font-size: 18px;
}

.time-display {
  font-size: 16px;
  color: #FFD700;
  min-width: 120px;
  text-align: right;
  margin-left: 350px;
}

.dropdown-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #FFD700;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.dropdown-btn.active {
  transform: rotate(180deg);
}

/* SUB-BARS */
.sub-bars {
  padding-left: 60px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.hidden {
  max-height: 0;
  opacity: 0;
  display: none;
}

.sub-bar {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid #FFD700;
  transition: 0.25s ease;
}

.sub-bar:hover {
  background: #262626;
  transform: scale(1.015);
}
