* { margin: 0; padding: 0; box-sizing: border-box; }

button, input, a {
  border-radius: 0;
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 40px;
  background: transparent;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

nav.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

nav .nav-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.2s;
}
nav .nav-link:hover { color: #fff; }

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 20px;
  top: auto;
  right: auto;
  z-index: 400;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(0, 0, 0, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: #fff; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 110px;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.80) blur(1px);
  transform: scale(1.04);
  transition: filter 0.6s ease, transform 0.6s ease;
}

#hero:hover .hero-img {
  filter: brightness(0.95) blur(1px);
  transform: scale(1.02);
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(20,60,60,0.45) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

#hero .hero-tagline {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #aaa;
}

/* ── SECTIONS SHARED ── */
section {
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}

hr.section-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  max-width: 860px;
  margin: 0 auto;
}

/* ── MUSIC LIST ── */
#music { padding-top: 80px; }

.music-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FEATURED ROW ── */
.music-row--featured {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #111;
  border-radius: 4px;
  padding: 20px;
}

.music-row--featured img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.music-row__content { flex: 1; }

.music-row__title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

.music-row__artist {
  font-size: 12px;
  color: #888;
}

.music-row__platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ── BUTTONS ── */
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 0;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.platform-btn:hover { background: #fff; color: #000; }
.platform-btn svg { fill: currentColor; }
.platform-btn--spotify,
.platform-btn--apple,
.platform-btn--youtube { background: #000; color: #fff; }

.play-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.play-btn:hover { background: #fff; color: #000; }

/* ── SMALL GRID ── */
.music-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.music-row--small {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #111;
  border-radius: 4px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.music-row--small:hover {
  background: #1a1a1a;
}

.music-row--small .cover-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.music-row--small .cover-wrap img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.music-row--small .cover-wrap::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 2px;
}

.music-row--small:hover .cover-wrap::after {
  opacity: 1;
}

.music-row--small .music-row__info {
  flex: 1;
  min-width: 0;
}

.music-row--small .music-row__title {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-row--small .music-row__artist {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* ── BOOTSTRAP MODAL OVERRIDES ── */
.modal {
  display: none !important;
}
.modal.show {
  display: block !important;
}

.modal-content {
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 0 !important;
  color: #fff !important;
  max-width: 100% !important;
}

.modal-header {
  background: #111 !important;
  border-bottom: none !important;
}

.modal-body {
  background: #111 !important;
}

.modal-title {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.btn-close {
  filter: invert(1) !important;
}

.modal-artist {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
}

.modal-links {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
}

.modal-links .platform-btn {
  width: auto !important;
}

/* ── VIDEO ── */
#video { padding-top: 80px; }

.visit-channel {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  padding: 12px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  border: 1px solid #444;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.visit-channel:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
}

/* ── BIO ── */
#bio-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
}

.bio-header {
  text-align: center;
  margin-bottom: 48px;
}

.bio-header .bio-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.bio-header .bio-title {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: normal;
  color: #fff;
  margin: 0;
}

.bio-columns {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}

#bio-section .bio-image-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

#bio-section .bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7);
  transition: filter 0.5s ease;
  display: block;
}

#bio-section .bio-image-wrap:hover .bio-image { filter: brightness(1); }

.bio-text-col { display: flex; flex-direction: column; }

.bio-text {
  font-size: 13px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 16px;
}

.bio-quote {
  font-style: italic;
  font-size: 13px;
  color: #e8c87a;
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact {
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 40px 0;
}

.contact-col { text-align: center; }

.contact-col + .contact-col { border-left: 1px solid #1a1a1a; }

.contact-type {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}

.contact-name {
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}

.contact-email { font-size: 11px; color: #888; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.social-row a {
  font-size: 20px;
  color: #888;
  transition: color 0.2s;
}
.social-row a:hover { color: #fff; }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 24px 40px;
  border-top: 1px solid #111;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  background: transparent;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s, background 0.3s;
  text-decoration: none;
}

#back-to-top.visible { opacity: 1; pointer-events: all; }

#back-to-top:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  section { padding: 60px 20px; }
  #music { padding-left: 20px; padding-right: 20px; }

  nav > div > div:first-child,
  nav > div > div:last-child { display: none !important; }
  nav > div {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }
  nav > div > div:nth-child(2) { margin: 0 auto; }
  .nav-hamburger { display: flex; }

  .music-row--featured { flex-direction: column; align-items: flex-start; }
  .music-row--featured img { width: 100%; height: auto; aspect-ratio: 1; }
  .music-small-grid { grid-template-columns: 1fr; }

  #bio-section { padding: 40px 20px; }
  .bio-columns { grid-template-columns: 1fr; gap: 32px; }

  #contact { padding: 40px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-col + .contact-col { border-left: none; border-top: 1px solid #1a1a1a; padding-top: 24px; margin-top: 8px; }

  nav { gap: 16px; padding: 14px 20px; }
  nav img { height: 36px; }

  #hero { padding-bottom: 120px; }
  #hero .hero-img { filter: brightness(0.65) blur(1px); }
  #hero:hover .hero-img { filter: brightness(0.85) blur(0.5px); }
}

/* ── PRIVACY MODAL ── */
.privacy-content {
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.privacy-title {
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.privacy-date {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.privacy-content h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 24px 0 10px;
}

.privacy-content p {
  font-size: 12px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 12px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 12px;
}

.privacy-content ul li {
  font-size: 12px;
  line-height: 1.8;
  color: #aaa;
  padding-left: 16px;
  position: relative;
}

.privacy-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #555;
}

.privacy-content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

footer a:hover { color: #fff; }