/* Base reset */
body, html {
  margin: 0;
  padding: 0;
  background: #111;
  color: #f2f2f2;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background (images specific to artist) */
.background {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(0.9) saturate(0.9) blur(8px);
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.img-wrapper img.loaded {
  filter: brightness(1) contrast(1.1) saturate(1.1) blur(0);
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.90), rgba(0,0,0,0.95));
  mix-blend-mode: multiply;
  z-index: 2;
}

.overlay-bw {
  position: absolute;
  inset: 4%;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: grayscale(100%);
  -webkit-backdrop-filter: grayscale(100%);
}

/* Artist hero section */
.artist-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 140px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.artist-avatar {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
/*  border: 4px solid #ffd166;
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.3);*/
}

.artist-info {
  flex: 1;
  min-width: 280px;
}

.artist-name {
/*  font-family: 'Orbitron', sans-serif;*/
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
  color: #fff;
}

.artist-socials {
  gap: 16px;
  margin: 12px 0 20px;
}

.artist-socials a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.artist-socials a:hover {
  color: #ffd166;
  text-shadow: 0 0 6px rgba(255, 209, 102, 0.5);
}

.artist-description {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  color: #ddd;
}

/* Collections grid */
.artist-collections {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 0px;
  position: relative;
  z-index: 10;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.collection-card {
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.collection-title {
  display: block;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
}

.collection-card:hover {
/*  box-shadow: 0 6px 18px rgba(0,0,0,0.4);*/
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 10px rgba(255, 255, 255, 0.06), 
    0 0 12px rgba(255, 255, 255, 0.10), 
    0 8px 30px rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.collection-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 3768px) {
  .artist-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-avatar {
    height: 180px;
  }

  .artist-info {
    text-align: center;
  }

  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .socials{
    justify-content:center;
  }

}

.logo-container,
.logo-link,
.logo {
  pointer-events: auto !important;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo {
  display: block;
  height: 35px;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  .logo {
  }
}

@media (min-width: 1200px) {
  .logo {
  }
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8999;
  pointer-events: none;
  text-align: center;
}

.logo-container {
  opacity: 1;
  transition: opacity 2s ease;
}

.logo-container.visible {
  opacity: 1;
}

.logo-link:hover .logo,
.logo:hover {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4))
          drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #333;
  z-index: 9000;
  backdrop-filter: blur(6px);
}


.header-nav {
  margin-right: 2%;
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.header-nav a {
  font-family: "Montserrat", sans-serif;
  color: #E0E0E0;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.3s, text-shadow 0.3s;
}

.header-nav a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 240, 0.6);
}


/* ===============================
 *    COLLECTIONS SECTION
 *       =============================== */

.artist-collections {
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.collections-list {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* ===============================
 *    COLLECTION CARD
 *       =============================== */

.collection-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 1200 / 630;

    overflow: hidden;
    border-radius: 10px;

    background: #0a0a0a;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.collection-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
      0 4px 10px rgba(255, 255, 255, 0.06), 
      0 0 12px rgba(255, 255, 255, 0.10), 
      0 8px 30px rgba(255, 255, 255, 0.08),

      0 70px 140px rgba(0, 0, 0, 0.8),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ===============================
 *    BACKGROUND (TEMPORARY)
 *       =============================== */

.collection-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            140% 140% at 10% 10%,
            rgba(255, 255, 255, 0.14),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            #1a1a1a,
            #050505
        );
/*     opacity: 0.1;
    filter: grayscale(100%);*/
}

/* ===============================
 *    CONTENT
 *       =============================== */

.collection-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 60px;
}

/* ===============================
 *    TITLE
 *       =============================== */

.collection-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 22px;
    max-width: 80%;
}

/* ===============================
 *    META
 *       =============================== */

.collection-meta {
    display: flex;
    gap: 4px;

    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-network {
    opacity: 0.85;
}

.collection-count {
    opacity: 0.6;
}

/* ===============================
 *    MOBILE
 *       =============================== */

@media (max-width: 768px) {
    .collection-content {
        padding: 30px;
    }

    .collection-name {
        font-size: 26px;
        max-width: 100%;
    }

    .collections-list {
        gap: 40px;
    }
}

/* Burger menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 13000;
  position: relative;
  transition: all 0.3s ease;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: #E0E0E0;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* Active burger → cross */
.burger-menu.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: #bb86fc;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: #bb86fc;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 1);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 12000;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: #E0E0E0;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  margin: 20px 0;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-nav a:hover {
  color: #bb86fc;
  text-shadow: 0 0 10px rgba(187,134,252,0.7);
}

/* Responsive burger display */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
    margin-left: auto;
  }
}

.socials{
display:flex;
gap:11px;
margin-top:12px;
color:#fff;
}


.icon{
width:24px;
height:24px;
padding:3px;
color: #fff;
border-radius:50%;
background:rgba(128,128,128,0.45);
fill:currentColor;
transition:background .25s;
}

.socials a:hover .icon{
background:rgba(255,255,255,0.25);
}

.collection-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px; 
}

.badge-icon {
    width: 14px;
    height: 14px;

    fill: currentColor;

    opacity: 0.85;

  
    transform: translateY(1px);
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-v31-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/orbitron-v35-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/orbitron-v35-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
