/* ========== GLOBAL RESET ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img{ display:block; width:100%; height:auto; }

/* ========== NAVBAR FIXES ========== */
.navbar { background: #000; border-bottom: 1px solid rgba(255,255,255,.08); }
.navbar-brand .logo-img { height: 40px !important; width: auto; object-fit: contain; }
.navbar-brand span{ letter-spacing: .3px; }
.navbar-nav { gap: 1rem; }

.navbar .nav-link{
  position: relative;
  color:#fff;
  font-weight:500;
  transition: color .2s ease, transform .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{ color:#ffc107; }

.navbar .nav-link::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px;
  height:2px;
  background:#ffc107;
  transform:scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{ transform:scaleX(1); }

/* Navbar overlay behavior */
.navbar-overlay{
  position:absolute; top:0; left:0; right:0;
  border-bottom-color: transparent !important;
  z-index:1030;
  padding-top: 6px;
  padding-bottom: 6px;
}
.navbar-overlay.navbar-solid{
  position:fixed;
  background: rgba(0,0,0,.92) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(8px);
  transition: background .18s ease, backdrop-filter .18s ease, border-color .18s ease;
}

/* Buttons */
.btn{
  display:inline-block;
  font-weight:600;
  padding:.6rem 1.1rem;
  border-radius:12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-lg{ padding:.85rem 1.5rem; font-size:1.05rem; }
.btn-outline-light{ color:#fff; border:2px solid #fff; }
.btn-outline-light:hover{ background:#fff; color:#000; }
.btn-gold{
  background:#ffc107;
  color:#000;
  border:none;
  box-shadow: 0 14px 30px rgba(255,193,7,.18);
}
.btn-gold:hover{ background:#ffd555; transform: translateY(-1px); }
.btn-gold:active{ transform: translateY(0); }

/* Utility */
.text-warning{ color:#ffc107 !important; }
.opacity-75{ opacity:.75; }

/* ========== HERO ========== */
.full-bleed{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

.hero-section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background: url("../images/yaga_hero.png") center center / cover no-repeat;
  isolation:isolate;
}

.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,.74) 65%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.62));
  z-index:0;
}

.hero-glow{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,193,7,.12), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255,193,7,.06), transparent 50%);
  filter: blur(18px);
  opacity:.9;
  z-index:0;
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width: 960px;
  padding: clamp(72px, 10vh, 120px) 1rem 3rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: clamp(10px, 2.2vh, 18px);
  text-align:center;
}

/* badge */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.45rem .8rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  font-size:.9rem;
  letter-spacing:.2px;
}
.hero-badge .dot{
  width:8px; height:8px;
  border-radius:50%;
  background:#ffc107;
  box-shadow: 0 0 0 6px rgba(255,193,7,.12);
}

.hero-logo{
  width: clamp(120px, 18vw, 220px);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.45));
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
  opacity:.98;
}

.hero-title{
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.08;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  margin: 0;
}
.hero-subtitle{
  max-width: 58ch;
  margin: 0;
  opacity:.82;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

/* ========== SECTIONS ========== */
.section-block{
  padding: 72px 0;
  background:#0f0f0f;
}
.section-block.alt{
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-header{
  text-align:center;
  margin-bottom: 26px;
}
.section-title{
  color:#ffc107;
  font-weight:900;
  letter-spacing:.2px;
  margin:0;
  text-shadow: 0 2px 14px rgba(255,193,7,.12);
}

/* ========== FEATURED ARTISTS ========== */
.artist-card{
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow:hidden;
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}
.artist-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,.42);
  border-color: rgba(255,193,7,.38);
}
.artist-cover{
  aspect-ratio: 16/10;
  overflow:hidden;
  background:#000;
}
.artist-cover img{ width:100%; height:100%; object-fit:cover; }
.artist-info{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.9rem;
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(13,13,13,.92), rgba(8,8,8,.96));
}

/* ========== LATEST RELEASES ========== */
.release-card{
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height:100%;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}
.release-card:hover{
  transform: translateY(-7px);
  border-color: rgba(255,193,7,.38);
  box-shadow: 0 24px 48px rgba(0,0,0,.45);
}
.release-cover{
  position:relative;
  aspect-ratio: 1 / 1;
  background:#000;
  overflow:hidden;
}
.release-cover img{ width:100%; height:100%; object-fit:cover; }
.release-body{
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(13,13,13,.92), rgba(8,8,8,.96));
}

/* ========== ACCESSIBILITY & FOCUS ========== */
a:focus-visible, .btn:focus-visible{
  outline: 2px solid rgba(255,193,7,.55);
  outline-offset: 2px;
  border-radius: 12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}

/* =========================================================
   PREMIUM MOBILE NAVBAR
   ========================================================= */
.navbar .navbar-toggler{
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: .45rem .6rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.navbar .navbar-toggler:focus{
  box-shadow: 0 0 0 .25rem rgba(255,193,7,.18);
}

@media (max-width: 991.98px){
  .navbar .navbar-collapse{
    margin-top: 12px;
    padding: 12px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.80);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
  }

  .navbar .nav-link::after{ display:none; }

  .navbar .nav-link{
    padding: .9rem .9rem;
    border-radius: 14px;
    border-bottom: 0 !important;
    background: transparent;
    transform: none;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus-visible{
    background: rgba(255,193,7,.08);
    color: #ffc107;
  }

  .navbar .nav-link.active{
    background: rgba(255,193,7,.12);
    border: 1px solid rgba(255,193,7,.18);
    color: #ffc107;
  }

  .navbar-nav{
    gap: 8px;
    align-items: stretch !important;
  }
}

/* Scroll-to-top button: mobile size */
@media (max-width: 576px){
  #scrollTopBtn{
    margin: 16px !important;
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   PREMIUM FOOTER (NEW UPGRADE)
   ========================================================= */
.site-footer{
  margin-top: 70px;
  position: relative;
  background:
    radial-gradient(circle at 20% -10%, rgba(255,193,7,.09), transparent 42%),
    radial-gradient(circle at 90% 30%, rgba(255,193,7,.06), transparent 48%),
    linear-gradient(180deg, #050505, #000);
  border-top: 1px solid rgba(255,193,7,.22);
  overflow: hidden;
}
.footer-glow{
  position:absolute;
  top:-120px; left:-120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,193,7,.18), transparent 60%);
  filter: blur(18px);
  opacity: .8;
  pointer-events:none;
}

/* top strip */
.footer-top-strip{
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(90deg, rgba(255,193,7,.14), rgba(255,193,7,.03));
}
.footer-top-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.footer-top-strip-text h4{
  font-weight: 900;
  letter-spacing: .2px;
}
.footer-top-strip-text p{
  opacity: .78;
}
.footer-top-strip-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* badge */
.footer-badge{
  display:inline-flex;
  align-items:center;
  gap: .55rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  opacity: .95;
  margin-bottom: 10px;
}
.footer-badge .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 0 0 6px rgba(255,193,7,.12);
}

/* main */
.footer-main{
  padding: 34px 0 18px;
}

/* cards */
.footer-card{
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  padding: 18px 18px;
}
.footer-brand-card{ padding: 18px 18px 16px; }

.footer-title{
  color:#ffc107;
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

/* brand block */
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-logo{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  object-fit: cover;
}
.footer-brand-text h5{
  font-weight: 900;
  color: #ffc107;
}
.footer-tagline{
  display:block;
  margin-top: 2px;
  opacity: .72;
  font-size: .92rem;
}
.footer-desc{
  margin: 14px 0 14px;
  opacity: .78;
  max-width: 52ch;
}

/* links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.footer-links a i{ opacity: .9; }
.footer-links a:hover,
.footer-links a:focus-visible{
  transform: translateX(6px);
  background: rgba(255,193,7,.08);
  border-color: rgba(255,193,7,.26);
  color: #ffc107;
}

/* contact */
.footer-contact{
  display:grid;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-contact-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: #ffc107;
  background: rgba(255,193,7,.12);
  flex: 0 0 auto;
}
.footer-contact-text{
  opacity: .86;
  line-height: 1.3;
}

/* newsletter */
.footer-newsletter{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.footer-newsletter-head h6{
  font-weight: 900;
  color: #fff;
}
.footer-newsletter-head p{
  opacity: .74;
  margin-top: 4px;
}
.footer-newsletter-form{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-input{
  flex: 1 1 auto;
  min-width: 0;
  padding: .8rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;
  outline: none;
}
.footer-input::placeholder{ color: rgba(255,255,255,.55); }
.footer-input:focus{
  border-color: rgba(255,193,7,.45);
  box-shadow: 0 0 0 6px rgba(255,193,7,.10);
}
.footer-submit{
  border: none;
  border-radius: 14px;
  padding: .8rem 1rem;
  font-weight: 900;
  background: #ffc107;
  color: #000;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.footer-submit:hover{
  background: #ffd555;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255,193,7,.22);
}
.footer-note{
  display:block;
  margin-top: 8px;
  opacity: .65;
}

/* socials with premium hover */
.footer-socials{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.footer-social::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle, rgba(255,193,7,.32), transparent 60%);
  transform: scale(0);
  transition: transform .22s ease;
}
.footer-social:hover{
  background: #ffc107;
  color: #000;
  border-color: rgba(255,193,7,.9);
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 34px rgba(255,193,7,.28),
    0 0 0 6px rgba(255,193,7,.10);
}
.footer-social:hover::after{ transform: scale(1); }

/* divider + bottom */
.footer-divider{
  margin: 22px 0 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,.45), transparent);
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  opacity: .9;
  font-size: .92rem;
}
.footer-powered{
  color:#ffc107;
  font-weight: 900;
}
.footer-powered:hover{ text-decoration: underline; }

/* mobile footer */
@media (max-width: 576px){
  .footer-top-strip-inner{
    flex-direction: column;
    text-align:center;
    align-items: stretch;
  }
  .footer-top-strip-actions{
    width: 100%;
    flex-direction: column;
  }
  .footer-top-strip-actions .btn{
    width: 100%;
    justify-content: center;
  }
  .footer-newsletter-form{
    flex-direction: column;
  }
  .footer-submit{
    width: 100%;
    justify-content: center;
  }
  .footer-bottom{
    flex-direction: column;
    text-align:center;
  }
}

/* touch devices: remove jumpy hover */
@media (hover: none) and (pointer: coarse){
  .footer-social:hover,
  .footer-links a:hover{
    transform: none;
    box-shadow: none;
  }
}

/* =========================================================
   FIXES FOR YOUR 3 ISSUES (ADDED)
   ========================================================= */

/* FIX #1: Style the homepage “Artists / Releases / Bookings...” list nicely
   (works whether it's a <ul>, <ol>, or plain links inside hero) */
.hero-section ul,
.hero-section ol{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-section ul li,
.hero-section ol li{
  margin: 0;
}
.hero-section ul li a,
.hero-section ol li a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  font-weight: 600;
}
.hero-section ul li a:hover,
.hero-section ol li a:hover{
  transform: translateY(-2px);
  border-color: rgba(255,193,7,.35);
  background: rgba(255,193,7,.08);
  color: #ffc107;
}

/* If the items are plain text (not links), still make them look like pills */
.hero-section .hero-inner > p + div,
.hero-section .hero-inner > p + .hero-links{
  margin-top: 14px;
}
.hero-section .hero-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
}
.hero-section .hero-links span,
.hero-section .hero-links a{
  display:inline-flex;
  padding: .5rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
}

/* FIX #2: Stop the “big empty gold space”
   Ensure CTA strip is compact and never stretches weirdly */
.cta-strip{
  margin-top: 48px;
  padding: 22px 0;
}
.cta-strip .container{
  gap: 14px;
}
.cta-strip h3{
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 576px){
  .cta-strip{
    margin-top: 34px;
    padding: 18px 0;
  }
  .cta-strip .container{
    flex-direction: column;
    text-align: center;
    align-items: stretch !important;
  }
  .cta-strip .container .btn{
    width: 100%;
  }
}

/* FIX #3: remove “Latest release cover” ugly alt text when image is missing */
.img-hide{ display:none !important; }

/* Bonus: if an image has no src at all */
img:not([src]),
img[src=""]{
  display:none !important;
}


/* =========================================================
   HERO STATS – FIXED & STYLED
   ========================================================= */

.hero-stats{
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat{
  min-width: 160px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.stat:hover{
  transform: translateY(-4px);
  border-color: rgba(255,193,7,.35);
}

.stat-value{
  font-weight: 900;
  font-size: 1.05rem;
  color: #ffc107;
}

.stat-label{
  font-size: .9rem;
  opacity: .78;
  margin-top: 2px;
}

/* =========================================================
   HERO SPACING FIX (REMOVES EMPTY GOLD AREA)
   ========================================================= */

.hero-section{
  padding-bottom: 90px; /* controlled ending */
}

/* Prevent next section from feeling like empty space */
.section-block:first-of-type{
  padding-top: 56px;
}

/* =========================================================
   SCROLL HINT – CLEAN & NON-INTRUSIVE
   ========================================================= */

.scroll-hint{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  opacity: .75;
  text-decoration: none;
}

.scroll-hint:hover{ opacity: 1; }

.scroll-text{
  letter-spacing: .2em;
  font-size: .7rem;
}

.mouse{
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  position: relative;
}

.mouse::before{
  content:"";
  width: 4px;
  height: 6px;
  background: #ffc107;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot{
  0%{ opacity: 0; transform: translate(-50%, 0); }
  40%{ opacity: 1; }
  80%{ opacity: 0; transform: translate(-50%, 10px); }
}

/* Mobile adjustments */
@media (max-width: 576px){
  .hero-stats{
    gap: 12px;
  }
  .stat{
    min-width: 140px;
  }
}
