
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 70px;
  background: #0b0b0b;
  color: #f2eee8;
  font-family: Arial, sans-serif;
}

section,
.about-block,
.singles-col,
.mini-contact,
.contact-block,
.albums-col {
  scroll-margin-top: 90px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .container {
  max-width: 1120px;
}

.about-singles .container,
.sets .container {
  max-width: 1120px;
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.6;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #ff4d2d;
}

/* HERO FULLSCREEN */

.hero {
  position: relative;
  isolation: isolate;

  min-height: 720px;
  height: calc(100svh - 70px);

  padding: 0;
  overflow: hidden;
  background: #0b0b0b;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 35%;
  filter: brightness(0.95) contrast(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.86) 32%,
      rgba(0,0,0,0.44) 62%,
      rgba(0,0,0,0.14) 100%
    ),
    radial-gradient(
      circle at 74% 45%,
      rgba(255,40,0,0.16),
      transparent 60%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;

  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
  margin-left: 0;
}

.hero h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(86px, 8vw, 140px);
  line-height: 0.75;
  letter-spacing: 4px;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-tagline {
  margin-top: 30px;
  font-size: clamp(14px, 1.05vw, 17px);
  text-transform: uppercase;
  color: #ff4d2d;
}

.hero-tagline span {
  display: block;
}

.hero-tagline span:first-child {
  letter-spacing: 3px;
}

.hero-tagline span:last-child {
  letter-spacing: 2px;
  opacity: 0.75;
}

.hero-bio {
  margin-top: 20px;
  font-size: 15px;
  color: #aaa;
  max-width: 390px;
  line-height: 1.6;
}

/* SECTIONS */

.sets,
.about-singles {
  padding: 90px 60px;
}

.sets h2,
.section-header h2 {
  font-size: 40px;
  margin: 0;
}

/* SECTION HEADER */

.section-header {
  position: relative;
  margin-bottom: 30px;
}

.section-header h2 {
  display: inline-block;
  padding-right: 20px;
  background: #0b0b0b;
  position: relative;
  z-index: 2;
}

.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 80, 40, 0.35),
    transparent
  );
  transform: translateY(-50%);
  z-index: 1;
}

/* DJ SET */

.sets-more {
  margin: 0 0 26px;
  color: #aaa;
  font-size: 14px;
}

.sets-more a {
  color: #f2eee8;
  border-bottom: 1px solid #333;
}

.set {
  background: #111;
  padding: 10px;
  border-radius: 14px;
  transition: 0.25s ease;
}

.set:hover {
  transform: translateY(-6px);
}

.set iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 8px;
}

/* MAIN GRID */

.about-singles-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 360px 150px;
  gap: 64px;
  align-items: start;
}

.about-col {
  order: 2;
}

.singles-col {
  order: 3;
}

.about-singles .about-block {
  order: 1;
}

/* ALBUMS */

.albums-col {
  max-width: 360px;
}

.albums-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.albums-more {
  display: none;
}

.album {
  width: 100%;
  transition: 0.25s ease;
}

.album:hover {
  transform: translateY(-5px);
}

.album iframe {
  width: 100%;
  height: 648px;
  border: none;
  display: block;
}

.album h3 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.album p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

/* ABOUT */

.about-block {
  margin-top: 0;
}

.about-text {
  max-width: 640px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #aaa;
  margin: 0 0 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-actions {
  margin-top: 86px;
}

/* SINGLES */

.singles-grid {
  display: grid;
  grid-template-columns: 150px;
  gap: 48px;
  justify-content: start;
}

.single {
  width: 150px;
  transition: 0.25s ease;
}

.single:hover {
  transform: translateY(-4px);
}

.single img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.single h3 {
  font-size: 14px;
  margin: 8px 0 2px;
}

.single p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

/* CONTACT */

.mini-contact {
  margin-top: 108px;
}

.about-actions .contact-block {
  margin-bottom: 64px;
}

.contact-block {
  margin-bottom: 76px;
}

.mini-contact .section-header {
  margin-bottom: 24px;
}

.follow-block .section-header {
  margin-bottom: 18px;
}

.mini-contact p,
.contact-block p {
  color: #aaa;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-email {
  display: inline-block;
  margin-top: 2px;
  color: #f2eee8;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.contact-email:hover {
  opacity: 1;
  color: #ff4d2d;
  border-bottom-color: #ff4d2d;
}

.contact-socials {
  margin-top: 0;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 260px;
}

.contact-socials a {
  display: inline-flex;
  opacity: 0.6;
  transition: 0.25s ease;
}

.contact-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.contact-socials img {
  width: 21px;
  height: 21px;
  display: block;
  filter: grayscale(1) brightness(1.2);
}

.contact-socials a:hover img {
  filter: none;
}
/* CURSOR GLOW */

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 80, 0, 0.06) 0%,
    rgba(255, 80, 0, 0.02) 40%,
    transparent 70%
  );
}
body > *:not(.cursor-glow):not(.nav) {
  position: relative;
  z-index: 1;
}

/* MOBILE */

@media (max-width: 768px) {

  body {
    padding-top: 110px;
  }

  section,
  .about-block,
  .singles-col,
  .mini-contact,
  .contact-block,
  .albums-col {
    scroll-margin-top: 120px;
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  /* NAV MOBILE */

  .nav {
    height: auto;
    padding: 10px 0;
  }

  .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 20px;
    line-height: 1.1;
  }

  .nav-links {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 6px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    font-size: 14px;
    white-space: nowrap;
  }

  /* HERO MOBILE */

  .hero {
    height: 680px;
    min-height: 680px;
    padding: 0;
  }

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

  .hero-photo img {
    position: absolute;
    width: 120% !important;
    height: 120% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    top: -13%;
    right: -15%;
    transform: none !important;
    filter: brightness(1.1) contrast(1.05);
  }

  .hero::after {
    z-index: 1;
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.20) 36%,
        rgba(0,0,0,0.78) 100%
      );
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 20px;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 64px;
    line-height: 0.82;
    letter-spacing: 3px;
  }

  .hero-tagline {
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-bio {
    font-size: 14px;
    max-width: 92%;
  }

  /* SECTION SPACING */

  .sets,
  .about-singles {
    padding: 0 20px;
    margin-top: 80px;
  }

  .about-block,
  .singles-col,
  .mini-contact {
    margin-top: 80px;
  }

  .mini-contact {
    padding-bottom: 120px;
  }

  .hero + .sets {
    margin-top: 80px;
  }

  .sets h2,
  .section-header h2 {
    font-size: 34px;
  }

  /* GRID */

  .about-singles-inner {
    display: block;
  }

  .about-actions {
    margin-top: 80px;
  }

  /* DJ SET */

  .set iframe {
    height: 500px;
  }

/* ALBUMS */

.albums-more {
  display: block;
  margin: 0 0 26px;
  color: #aaa;
  font-size: 14px;
}

.albums-more a {
  color: #f2eee8;
  border-bottom: 1px solid #333;
}

.albums-more a:hover {
  color: #ff4d2d;
  border-bottom-color: #ff4d2d;
}

.albums-grid {
  grid-template-columns: 1fr;
  gap: 40px;
}

.album iframe {
  height: 580px;
}

  /* SINGLES */

  .singles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .single {
    width: 100%;
  }

  .single img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  /* CONTACT */

  .contact-block {
    margin-bottom: 40px;
  }

  .contact-socials {
    max-width: 100%;
    gap: 18px;
  }
}
