/* DUROV MUSIC LAB — Hero Section */

:root {
  --dml-header-h:        108px;
  --dml-font-header:     'Helvetica Neue', 'Arial', sans-serif;
  --hero-bg:             #0a0a0a;
  --hero-gold:           #c9a84c;
  --hero-text:           #ffffff;
  --hero-text-muted:     rgba(255, 255, 255, 0.84);
  --hero-text-dim:       rgba(255, 255, 255, 0.58);
  --color-stefany:       #e83ca8;
  --color-kant:          #c9a84c;
  --color-romani:        #cc823c;
  --vinyl-size:          440px;
  --vinyl-label-size:    130px;
  --vinyl-spin-duration: 9s;
  --vinyl-halo-size:     720px;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulseHalo {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  background:   var(--hero-bg);
  min-height:   calc(100vh - var(--dml-header-h));
  display:      flex;
  flex-direction: column;
  position:     relative;
  overflow:     hidden;
  font-family:  var(--dml-font-header);
}

.hero__inner {
  flex: 1;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  align-items:           center;
  max-width:             1440px;
  margin:                0 auto;
  width:                 100%;
  padding:               72px 72px 56px;
  gap:                   48px;
  position:              relative;
}

.hero__left {
  display:        flex;
  flex-direction: column;
  animation:      heroFadeUp 0.85s ease both;
}

.hero__tag {
  font-size:      clamp(16px, 1.35vw, 20px);
  font-weight:    700;
  letter-spacing: 0.14em;
  color:          var(--hero-gold);
  margin-bottom:  34px;
  display:        flex;
  align-items:    center;
  gap:            16px;
  white-space:    nowrap;
  max-width:      100%;
}

.hero__tag::before {
  content:    '';
  display:    inline-block;
  width:      36px;
  height:     2px;
  background: var(--hero-gold);
  flex-shrink: 0;
}

.hero__author {
  margin-bottom: 40px;
}

.hero__name {
  font-family:    Georgia, 'Times New Roman', serif;
  font-size:      clamp(64px, 6.8vw, 102px);
  font-weight:    400;
  line-height:    1.05;
  letter-spacing: -0.01em;
  color:          var(--hero-text);
  margin:         0 0 28px;
}

.hero__position {
  font-size:      clamp(13px, 1.05vw, 16px);
  letter-spacing: 0.22em;
  color:          var(--hero-text-dim);
  margin:         0;
  line-height:    1.55;
}

.hero__text {
  font-size:   clamp(18px, 1.4vw, 22px);
  line-height: 1.9;
  color:       var(--hero-text-muted);
  max-width:   540px;
  margin:      0 0 56px;
}

.hero__text br {
  display:     block;
  margin-top:  0.45em;
  content:     '';
}

.hero__text--artists {
  color:       var(--hero-text);
  font-weight: 600;
}

.hero__ctas {
  display:        flex;
  flex-direction: column;
  gap:            44px;
}

.hero__btn {
  display:     inline-flex;
  align-items: center;
  gap:         12px;
  text-decoration: none;
  font-family: var(--dml-font-header);
  font-size:   clamp(12px, 0.95vw, 14px);
  letter-spacing: 0.2em;
  font-weight: 700;
  border-radius: 2px;
  transition:  background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor:      pointer;
  white-space: nowrap;
}

.hero__btn--primary {
  background:  var(--hero-gold);
  color:       #0a0a0a;
  padding:     20px 36px;
  align-self:  flex-start;
}

.hero__btn--primary:hover {
  background:  #d6b85d;
  transform:   translateY(-1px);
}

.hero__btn--primary:active {
  transform: translateY(0);
}

.hero__btn-arrow {
  font-size:  18px;
  line-height: 1;
  font-weight: 400;
}

.hero__artist-btns {
  display:   flex;
  flex-wrap: wrap;
  gap:       10px;
}

.hero__btn--outline {
  border:     1px solid rgba(201, 168, 76, 0.45);
  color:      rgba(255, 255, 255, 0.88);
  padding:    14px 20px;
  background: transparent;
  font-size:  clamp(11px, 0.9vw, 13px);
}

.hero__btn--outline:hover {
  border-color: var(--hero-gold);
  color:        var(--hero-gold);
  background:   rgba(201, 168, 76, 0.07);
}

.hero__right {
  position:        relative;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding-left:    24px;
}

.vinyl-halo {
  position:      absolute;
  width:         var(--vinyl-halo-size);
  height:        var(--vinyl-halo-size);
  border-radius: 50%;
  background:    radial-gradient(
    circle,
    rgba(201, 168, 76, 0.30) 0%,
    rgba(201, 168, 76, 0.14) 25%,
    rgba(201, 168, 76, 0.04) 55%,
    transparent 70%
  );
  animation:     pulseHalo 4s ease-in-out infinite;
  pointer-events: none;
  z-index:       0;
  max-width:     90vw;
  max-height:    90vw;
}

.vinyl {
  width:         var(--vinyl-size);
  height:        var(--vinyl-size);
  max-width:     88%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%,
      #303030 0%,
      #1a1a1a 32%,
      #0e0e0e 65%,
      #080808 100%);
  box-shadow:
    0 0 0 1.5px #1c1c1c,
    0 0 0 3px   #111111,
    0 0 0 4.5px #1c1c1c,
    0 0 90px    rgba(201, 168, 76, 0.14);
  position:      relative;
  z-index:       2;
  display:       flex;
  align-items:   center;
  justify-content: center;
  animation:     spinVinyl var(--vinyl-spin-duration) linear infinite;
}

.vinyl:hover {
  animation-play-state: paused;
}

.vinyl__grooves {
  position:      absolute;
  inset:         10px;
  border-radius: 50%;
  background:    repeating-radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.048) 0px,
    rgba(255, 255, 255, 0.048) 1px,
    rgba(0, 0, 0, 0.12)        1px,
    rgba(0, 0, 0, 0.12)        4px
  );
  opacity:       0.65;
  pointer-events: none;
}

.vinyl__shine {
  position:      absolute;
  inset:         0;
  border-radius: 50%;
  background:    linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 32%,
    transparent 68%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
}

.vinyl__label {
  width:         var(--vinyl-label-size);
  height:        var(--vinyl-label-size);
  border-radius: 50%;
  background:    radial-gradient(circle at 34% 30%,
    #e0c46e 0%,
    #c9a84c 38%,
    #a07828 72%,
    #7e5a18 100%);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  gap:            3px;
  position:       relative;
  z-index:        3;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.14),
    0 2px 10px rgba(0, 0, 0, 0.7);
}

.vinyl__label span {
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 0.18em;
  color:          #1a1a08;
  line-height:    1;
  text-align:     center;
}

@media (max-width: 1200px) {
  :root {
    --vinyl-size:      360px;
    --vinyl-halo-size: 580px;
    --vinyl-label-size: 108px;
  }

  .hero__inner {
    padding: 56px 48px 40px;
    gap: 32px;
  }
}

@media (max-width: 960px) {
  :root {
    --vinyl-size:       300px;
    --vinyl-halo-size:  480px;
    --vinyl-label-size: 90px;
  }

  .hero__inner {
    padding: 48px 32px 36px;
    gap: 24px;
  }

  .hero__tag {
    font-size:      clamp(14px, 1.5vw, 17px);
    letter-spacing: 0.1em;
  }
}

@media (max-width: 768px) {
  :root {
    --vinyl-size:          260px;
    --vinyl-halo-size:     380px;
    --vinyl-label-size:    78px;
    --vinyl-spin-duration: 12s;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 36px;
    text-align: center;
  }

  .hero__right {
    order: -1;
    padding-left: 0;
  }

  .hero__tag        { justify-content: center; }
  .hero__tag::before { display: none; }
  .hero__text       { max-width: 100%; }
  .hero__ctas       { align-items: center; }
  .hero__btn--primary { align-self: center; }
  .hero__artist-btns { justify-content: center; }
}

@media (max-width: 480px) {
  :root {
    --vinyl-size:       220px;
    --vinyl-halo-size:  320px;
    --vinyl-label-size: 66px;
  }

  .hero__name {
    font-size: clamp(44px, 12vw, 58px);
  }

  .hero__position {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .hero__text {
    font-size: clamp(16px, 4.2vw, 19px);
  }

  .hero__tag {
    font-size:      clamp(13px, 3.4vw, 16px);
    letter-spacing: 0.08em;
    white-space:    normal;
    text-align:     center;
  }

  .hero__btn--outline {
    font-size: 11px;
    padding: 12px 16px;
  }
}
