@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');

/* ───────────────────────────────────────────
   Reset
   ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* ───────────────────────────────────────────
   Background + Overlay
   ─────────────────────────────────────────── */
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.page-bg--home {
  background-image: url('images/backgrounds/home-hero.png');
}

.page-bg--inner {
  background-image: url('images/backgrounds/inner-page-bg.jpg');
}

/* ───────────────────────────────────────────
   Navigation
   ─────────────────────────────────────────── */
.site-nav {
  position: relative;
  z-index: 100;
  padding: 2rem 1rem;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 0 2rem;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ───────────────────────────────────────────
   Page Content
   ─────────────────────────────────────────── */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.page-content--wide {
  max-width: 1300px;
}

/* ───────────────────────────────────────────
   Home — Social Icons
   ─────────────────────────────────────────── */
.home-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.social-row {
  margin-top: auto;
  padding-bottom: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.social-row a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-row a:hover {
  color: #fff;
}

/* ───────────────────────────────────────────
   Music Page
   ─────────────────────────────────────────── */
.album-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.album-art img {
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.album-title {
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.album-artist {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.album-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

.track-list {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.track {
  display: flex;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
  cursor: default;
}

.track:hover {
  background: rgba(255, 255, 255, 0.03);
}

.track-play {
  width: 32px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  text-align: center;
}

.track-play.enabled {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.track-play.enabled:hover {
  color: #fff;
}

.track-info {
  flex: 1;
  padding-left: 0.5rem;
}

.track-name {
  font-size: 0.95rem;
  font-weight: 400;
}

.track-artist {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.track-duration {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding-left: 1rem;
}

/* Player bar (appears when a track is playing) */
.player-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  z-index: 200;
  align-items: center;
  gap: 1rem;
}

.player-bar.active {
  display: flex;
}

.player-bar .now-playing {
  font-size: 0.85rem;
  min-width: 120px;
}

.player-bar .progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
}

.player-bar .progress-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
}

.player-bar button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem;
}

@media (max-width: 768px) {
  .album-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .album-art img {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────
   Merch Page
   ─────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.merch-card {
  overflow: hidden;
}

.merch-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.merch-card:hover img {
  transform: scale(1.03);
}

.merch-card-info {
  padding: 1rem 0;
}

.merch-card-name {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.merch-card-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.merch-card-price .original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.5rem;
}

.sale-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.6rem;
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .merch-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────
   Gallery Page
   ─────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 0.6rem;
}

.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  cursor: pointer;
  overflow: hidden;
}

.gallery-grid .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s;
}

.lightbox-nav:hover {
  color: #fff;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────
   Bio Page
   ─────────────────────────────────────────── */
.slideshow {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  overflow: hidden;
}

.slideshow-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slideshow-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.slideshow-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slideshow-prev {
  left: 0;
}

.slideshow-next {
  right: 0;
}

.bio-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2.5rem 0;
}

.bio-text {
  max-width: 800px;
  margin: 0 auto;
}

.bio-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.press-quote {
  max-width: 800px;
  margin: 0 auto;
}

.press-quote blockquote {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  line-height: 1.8;
  font-size: 0.92rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.press-quote .attribution {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  padding-left: 1.5rem;
}

/* ───────────────────────────────────────────
   Contact Page
   ─────────────────────────────────────────── */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-name {
  color: #c8a96e;
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.contact-detail {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-detail a {
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: #fff;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.btn-submit {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }
}
