/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ebebeb;
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  color: #1a1a1a;
  min-height: 100vh;
}

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

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

/* ===== HEADER / NAV ===== */
header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 60px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ebebeb;
}

.logo-nav img {
  height: 64px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #c8920a;
  padding: 0 18px;
  transition: opacity 0.2s;
  font-family: Arial, sans-serif;
}

nav a:hover,
nav a.active {
  opacity: 0.55;
}

nav .sep {
  color: #bbb;
  font-size: 14px;
  font-weight: 300;
  user-select: none;
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: 110px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== INDEX — HERO ===== */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 60px;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  max-width: 1200px;
}

/* Left: circular artist photo */
.hero-photo {
  flex-shrink: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: grayscale(100%) sepia(80%) hue-rotate(5deg) saturate(600%) brightness(0.85);
}

/* Right: info panel */
.hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 520px;
}

.hero-logo-large img {
  height: 220px;
  width: auto;
}

.new-album-heading {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #1a1a1a;
}

/* Album row: thumbnail + text */
.album-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.album-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.album-text .album-title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.album-text .album-sub {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #1a1a1a;
}

/* Listen Now */
.listen-now {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

/* Streaming icons */
.streaming-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stream-icon {
  display: block;
  width: 90px;
  height: 90px;
  transition: transform 0.2s, opacity 0.2s;
}

.stream-icon:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.stream-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Social section (hero bottom) */
.hero-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-social p {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #555;
  letter-spacing: 0.02em;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
}

.social-icon:hover {
  opacity: 0.85;
  transform: scale(1.08);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.tiktok {
  background: #000;
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===== INNER PAGES (tour, contact, social) ===== */
.inner-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 110px);
  padding: 60px 60px 80px;
}

.inner-page h1 {
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.inner-page .page-sub {
  font-size: 15px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #666;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  text-align: center;
}

/* ===== TOUR ===== */
.tour-message {
  text-align: center;
  max-width: 500px;
  margin: auto;
}

.tour-message .no-dates {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 2px solid #1a1a1a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #555;
}

.contact-form textarea {
  height: 160px;
}

.contact-form button {
  padding: 16px 36px;
  background: #1a1a1a;
  color: #ebebeb;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-form button:hover {
  opacity: 0.7;
}

/* ===== SOCIAL PAGE ===== */
.social-page {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Channel links row */
.channel-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}

.channel-btn:hover {
  opacity: 0.82;
  transform: scale(1.03);
}

.channel-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.channel-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.channel-btn.tiktok {
  background: #000;
}

.channel-btn.youtube {
  background: #ff0000;
}

/* YouTube embed feed */
.yt-feed-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yt-feed-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
}

.yt-embed-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    padding: 16px 24px 12px;
  }

  .logo-nav img {
    height: 44px;
  }

  nav a {
    font-size: 11px;
    padding: 0 10px;
  }


  .hero {
    padding: 20px 24px 40px;
  }

  .hero-main {
    flex-direction: column;
    gap: 40px;
  }

  .hero-photo {
    width: 280px;
    height: 280px;
  }

  .hero-info {
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero-logo-large img {
    height: 120px;
  }

  .new-album-heading {
    font-size: 44px;
  }

  .album-row {
    justify-content: center;
  }

  .album-thumb {
    width: 100px;
    height: 100px;
  }

  .listen-now {
    font-size: 26px;
  }

  .stream-icon {
    width: 60px;
    height: 60px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .inner-page {
    padding: 40px 24px 60px;
  }

  .inner-page h1 {
    font-size: 36px;
  }

  .channel-links {
    gap: 10px;
  }

  .channel-btn {
    padding: 12px 20px;
    font-size: 11px;
  }
}
