/* ================================================
   FONTS
================================================ */
@font-face {
  font-family: 'Agency FB';
  src: url('../fonts/AgencyFBLight.ttf') format('truetype');
  font-weight: 100 300;
  font-display: swap;
}
@font-face {
  font-family: 'Agency FB';
  src: url('../fonts/AgencyFBRegular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Agency FB';
  src: url('../fonts/Agency_FB_Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Agency FB';
  src: url('../fonts/AgencyFBBlackCondensed.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Neutrons';
  src: url('../fonts/NeutronsRegular.ttf') format('truetype');
  font-weight: 400 900;
  font-display: swap;
}

/* ================================================
   VARIABLES
================================================ */
:root {
  --color-bg:               #000000;
  --color-brand:            #BF0000;
  --color-text:             #FFFFFF;
  --color-text-secondary:   #999999;
  --color-surface:          #111111;
  --font-heading: 'Neutrons', sans-serif;
  --font-body:    'Agency FB', sans-serif;
}

/* ================================================
   RESET
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ================================================
   SVG ICONS
================================================ */
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.icon.fa-soundcloud { width: 1em; height: 1em; }

/* ================================================
   BACK TO TOP
================================================ */
.btn-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid #333;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
}
.btn-top.visible { opacity: 1; pointer-events: all; }
.btn-top:hover { background: #222; }

/* ================================================
   HERO SECTION
================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 48px 24px 56px;
  text-align: center;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero__logo-img { width: 260px; height: auto; }
.hero__tagline {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 100;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: none;
}
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__album-label {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero__out-now {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__ctas { display: flex; gap: 20px; margin-top: 12px; }
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 64px;
  border: 2px solid var(--color-text);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn--primary { background: var(--color-brand); border-color: var(--color-text); color: var(--color-text); }
.btn--primary:hover { background: transparent; }
.btn--secondary { background: transparent; color: var(--color-text); }
.btn--secondary:hover { background: var(--color-brand); }
.hero__social { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__follow { font-family: var(--font-body); font-size: 21px; font-weight: 300; letter-spacing: 1px; }
.hero__icons { display: flex; align-items: center; gap: 28px; }
.hero__icons a {
  color: var(--color-text);
  font-size: 22px;
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}
.hero__icons a:hover { color: var(--color-brand); transform: scale(1.25); }

@media (max-width: 1024px) {
  .hero__logo-img { width: 200px; }
  .hero__tagline { font-size: 15px; letter-spacing: 2px; }
  .hero__album-label { font-size: 28px; }
  .hero__title { font-size: 50px; }
  .hero__out-now { font-size: 34px; }
  .player__ui { flex-direction: column; align-items: stretch; text-align: center; padding: 1.5rem 1rem; }
  .player__cover { width: 100%; height: auto; flex-shrink: 1; }
  .player__cover img { height: auto; }
  .player__main { width: 100%; }
  .player__controls { justify-content: center; }
  .player__track-info { justify-content: center; flex-direction: column; align-items: center; }
  .player__track-name { text-align: center; width: 100%; }
  .player__progress { width: 100%; }
  .player__container { width: 100%; overflow: hidden; }
  .player__listen-on { width: 100%; }
}
@media (max-width: 768px) {
  .hero__inner { padding: 100px 20px 100px; }
  .hero__logo-img { width: 195px; }
  .hero__tagline { font-size: 14px; letter-spacing: 1.5px; }
  .hero__album-label { font-size: 20px; margin-bottom: 24px; }
  .hero__title { font-size: 64px; }
  .hero__out-now { font-size: 22px; }
  .hero__ctas { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .hero__ctas .btn { padding: 12px 32px; width: 260px; font-size: 16px; text-align: center; }
  .hero__icons { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero__icons a { font-size: 20px; }
}

/* ================================================
   ABOUT SECTION
================================================ */
.about {
  position: relative;
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__video-wrap { position: absolute; inset: 0; overflow: hidden; }
.about__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: none;
  pointer-events: none;
}
.about__mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 3;
}
.about__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); z-index: 2; }
.about__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.about__logo { width: 110px; margin-bottom: 3rem; }
.about__quote {
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  text-transform: none;
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.about__quote p + p { margin-top: 1.5rem; }
.about__author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  text-transform: none;
}
@media (max-width: 768px) {
  .about__content { padding: 60px 1.5rem; }
  .about__logo { width: 80px; margin-bottom: 2rem; }
  .about__quote { font-size: 1.2rem; line-height: 1.7; }
}

/* ================================================
   PLAYER SECTION
================================================ */
.player { background: var(--color-bg); padding: 80px 2rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; --color-surface: #222222; }
.player__container { width: 70vw; margin: 0 auto; background: var(--color-surface); }
.player__ui { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem; margin-bottom: 0; }
.player__cover { flex-shrink: 0; width: 180px; display: flex; flex-direction: column; gap: 10px; }
.player__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.player__main { flex: 1; display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.player__track-info { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.player__track-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__track-num { font-family: var(--font-body); font-size: 13px; color: var(--color-text-secondary); flex-shrink: 0; }
.player__progress { display: flex; flex-direction: column; gap: 6px; }
.player__waveform { width: 100%; height: 60px; cursor: pointer; display: block; }
.player__timeline { width: 100%; height: 4px; background: #333; cursor: pointer; position: relative; }
.player__timeline-fill { height: 100%; width: 0%; background: var(--color-brand); pointer-events: none; transition: width 0.1s linear; }
.player__timeline:hover { height: 6px; }
.player__time { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 12px; color: var(--color-text-secondary); }
.player__album-label { font-family: var(--font-body); font-size: 11px; font-weight: 400; color: var(--color-text-secondary); text-transform: none; letter-spacing: 0.5px; text-align: center; line-height: 1.4; }
.player__controls { display: flex; align-items: center; gap: 1.5rem; }
.player__btn { background: none; border: none; color: var(--color-text); cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; transition: color 0.2s; }
.player__btn:hover { color: var(--color-brand); }
.player__btn--play { width: 48px; height: 48px; border: 2px solid var(--color-text); border-radius: 50%; font-size: 18px; transition: border-color 0.2s, color 0.2s; }
.player__btn--play:hover { border-color: var(--color-brand); }
.player__btn--play.is-playing .fa-play { display: none; }
.player__btn--play:not(.is-playing) .fa-pause { display: none; }
.player__btn--prev, .player__btn--next { font-size: 20px; }
.player__tracklist { list-style: none; border-top: 1px solid #1a1a1a; background: var(--color-surface); }
.player__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 14px 2rem;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-secondary);
  text-transform: none;
}
.player__track:hover { background: #0d0d0d; color: var(--color-text); }
.player__track.is-active { color: var(--color-brand); }
.player__track-index { width: 20px; text-align: right; font-size: 13px; flex-shrink: 0; }
.player__track-title { flex: 1; }
.player__track-play-icon { font-size: 12px; flex-shrink: 0; opacity: 0; }
.player__track:hover .player__track-play-icon,
.player__track.is-active .player__track-play-icon { opacity: 1; }
.player__listen-on { width: 70vw; margin: 60px auto 0; text-align: center; }
.player__listen-label { font-family: var(--font-body); font-size: 28px; font-weight: 700; letter-spacing: 1px; color: var(--color-text); text-transform: none; margin-bottom: 2rem; }
.player__platforms { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text);
  text-transform: uppercase;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 14px 64px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.platform-btn .icon { font-size: 18px; }
.platform-btn--spotify:hover { background: #1DD05D; border-color: #1DD05D; }
.platform-btn--apple:hover { background: #ffffff; border-color: #ffffff; color: #000000; }
.platform-btn--bandcamp:hover { background: #1DA0C3; border-color: #1DA0C3; }

@media (max-width: 768px) {
  .player { padding: 48px 5vw 17px; min-height: unset; }
  .player__album-label { font-size: 14px; }
  .player__ui { flex-direction: column; align-items: stretch; text-align: center; padding: 1.5rem 1rem; }
  .player__cover { width: 100%; height: auto; }
  .player__cover img { height: auto; }
  .player__controls { justify-content: center; }
  .player__track-info { justify-content: center; flex-direction: column; align-items: center; }
  .player__track { padding: 12px 1rem; font-size: 15px; }
  .player__container { width: 100%; }
  .player__listen-on { width: 100%; margin-top: 40px; }
  .player__listen-label { font-size: 22px; }
  .player__platforms { flex-direction: column; align-items: center; gap: 12px; }
  .platform-btn { width: 100%; max-width: 260px; justify-content: center; padding: 14px 24px; font-size: 16px; }
}

/* ================================================
   VIDEOS SECTION
================================================ */
.videos { background: var(--color-bg); padding: 20px 2rem 80px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.videos__header { width: 70vw; margin: 0 auto; text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.videos__title { font-family: var(--font-heading); font-size: 47px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--color-text); line-height: 1; }
.videos__subtitle { font-family: var(--font-body); font-size: 23px; font-weight: 400; color: var(--color-text); text-transform: none; }
.videos__subscribe { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; }
.videos__subscribe .icon { font-size: 20px; }
.videos__list { width: 70vw; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.videos__card { background: var(--color-surface); border: 1px solid #1a1a1a; }
.videos__player { display: block; width: 100%; aspect-ratio: 21 / 9; background: #000; border: none; }



@media (max-width: 1024px) {
  .videos__player { aspect-ratio: 16 / 9; }
}
@media (max-width: 768px) {
  .videos { padding: 60px 5vw 60px; min-height: unset; }
  .videos__header { width: 100%; margin-bottom: 40px; gap: 14px; }
  .videos__title { font-size: 32px; }
  .videos__subtitle { font-size: 16px; }
  .videos__subscribe { justify-content: center; white-space: nowrap; }
  .videos__list { width: 100%; gap: 32px; }
  .videos__player { aspect-ratio: 16 / 9; }
}

/* ================================================
   CONTACT SECTION
================================================ */
.contact { position: relative; background: var(--color-bg); overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; }
.contact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; pointer-events: none; }
.contact__overlay { display: none; }
.contact__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 80px 2rem; }
.contact__header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact__title { font-family: var(--font-heading); font-size: 47px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--color-text); line-height: 1; }
.contact__subtitle { font-family: var(--font-body); font-size: 23px; font-weight: 400; color: var(--color-text); text-transform: none; }
.contact__form { width: 100%; max-width: 640px; display: flex; flex-direction: column; gap: 28px; }
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__label { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--color-text); text-transform: none; }
.contact__label span { color: var(--color-brand); margin-left: 2px; }
.contact__input, .contact__textarea { background: transparent; border: 2px solid #ffffff; color: var(--color-text); font-family: var(--font-body); font-size: 19px; font-weight: 400; padding: 12px 16px; outline: none; transition: border-color 0.2s; width: 100%; }
.contact__input:focus, .contact__textarea:focus { border-color: var(--color-brand); }
.contact__textarea { resize: vertical; min-height: 140px; }
.contact__submit { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; }
.contact__privacy { display: flex; align-items: center; gap: 12px; }
.contact__privacy input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; border: 2px solid #ffffff; background: transparent; position: relative; transition: background 0.2s, border-color 0.2s; }
.contact__privacy input[type="checkbox"]:checked { background: var(--color-brand); border-color: var(--color-brand); }
.contact__privacy input[type="checkbox"]:checked::after { content: ''; position: absolute; left: 50%; top: 50%; width: 5px; height: 9px; border: 2px solid #ffffff; border-top: none; border-left: none; transform: translate(-50%, -60%) rotate(45deg); }
.contact__privacy label { font-family: var(--font-body); font-size: 16px; font-weight: 400; color: var(--color-text-secondary); text-transform: none; cursor: pointer; }
.contact__privacy label a { color: var(--color-text); text-decoration: underline; transition: color 0.2s; }
.contact__privacy label a:hover { color: var(--color-brand); }
.contact__feedback { font-family: var(--font-body); font-size: 16px; font-weight: 400; text-transform: none; margin-top: -8px; display: none; }
.contact__feedback.is-success { display: block; color: #4caf50; }
.contact__feedback.is-error { display: block; color: var(--color-brand); }

@media (max-width: 768px) {
  .contact { min-height: unset; }
  .contact__inner { padding: 18px 5vw 80px; }
  .contact__header { margin-bottom: 40px; }
  .contact__title { font-size: 32px; }
  .contact__subtitle { font-size: 17px; }
  .contact__label { font-size: 18px; }
  .contact__submit { width: 100%; justify-content: center; }
}
@media (max-width: 615px) {
  .player { padding-bottom: 10px; }
  .videos { padding-top: 40px; padding-bottom: 40px; }
  .contact__inner { padding-top: 10px; }
}

/* ================================================
   FOOTER
================================================ */
.footer { background: var(--color-bg); padding: 0 2rem 48px; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer__rule { width: 100%; max-width: 800px; height: 2px; background: #ffffff; border: none; margin: 0; }
.footer__logo { width: 160px; }
.footer__nav { display: flex; align-items: center; gap: 56px; list-style: none; }
.footer__nav a { font-family: var(--font-body); font-size: 21px; font-weight: 400; color: var(--color-text); text-decoration: none; text-transform: none; letter-spacing: 1px; transition: color 0.2s; }
.footer__nav a:hover { color: var(--color-brand); }
.footer__social { display: flex; align-items: center; gap: 24px; list-style: none; }
.footer__social a { color: var(--color-text); font-size: 22px; display: flex; align-items: center; transition: color 0.3s, transform 0.3s; }
.footer__social a:hover { color: var(--color-brand); transform: scale(1.25); }
.footer__nav--legal { gap: 32px; margin-top: -16px; }
.footer__nav--legal a { font-size: 14px; color: var(--color-text-secondary); letter-spacing: 0.5px; }
.footer__copy { font-family: var(--font-body); font-size: 15px; font-weight: 400; color: var(--color-text-secondary); text-transform: none; text-align: center; }

@media (max-width: 768px) {
  .footer { padding: 0 5vw 40px; gap: 24px; }
  .footer__nav { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .footer__nav a { font-size: 16px; }
  .footer__nav--legal { gap: 20px; margin-top: -8px; }
  .footer__social { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .footer__logo { width: 130px; }
}
