
:root{--bg:#0a0a0c;--bg-2:#0f1117;--fg:#e9ecf1;--muted:#a5a8b3;--accent:#4da3ff;--accent2:#ff00cc;--radius:12px;--shadow:0 8px 26px rgba(0,0,0,.35)}
*{box-sizing:border-box}
html,body{height:100%}
html,body{margin:0;padding:0;background:var(--bg);color:var(--fg);font-family:ui-sans-serif,system-ui,Inter,Segoe UI,Roboto,Helvetica,Arial}

/* Scroll position restoration for back navigation */
html {
  scroll-behavior: auto;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1200px,92%);margin-inline:auto}

/* Faint watermark */
header.site, main, footer{position:relative;z-index:1}
body::before{
  content:"";position:fixed;inset:0;margin:auto;
  background:url('assets/img/logo.png') center/28% no-repeat;
  opacity:0.03;pointer-events:none;z-index:0
}

/* Header */
header.site{position:sticky;top:0;z-index:70;background:rgba(0,0,0,.65);backdrop-filter:blur(8px)}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.left{display:flex;align-items:center;gap:12px}
.logo{display:inline-block}
.logo img{width:112px;height:112px;display:block;filter:drop-shadow(0 0 16px rgba(77,163,255,.45)) drop-shadow(0 0 26px rgba(255,0,204,.25))}
.site-title{font-weight:800;letter-spacing:.08em;text-transform:uppercase;font-size:clamp(18px,2.3vw,26px)}
.bars{margin-left:auto;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:44px;height:44px;border:1px solid #20222a;border-radius:10px;background:#0b0d12;cursor:pointer}
.bars span{width:22px;height:2px;background:linear-gradient(90deg,var(--accent),var(--accent2));border-radius:2px;display:block}

/* Drawer (right) */
.drawer{position:fixed;top:0;right:0;left:auto;height:100vh;width:min(86vw,340px);background:var(--bg-2);transform:translateX(105%);transition:transform .25s cubic-bezier(.2,.85,.25,1);box-shadow:var(--shadow);pointer-events:none;z-index:80}
.drawer.open{transform:translateX(0);pointer-events:auto}
.drawer header{padding:14px;border-bottom:1px solid #1c2030;display:flex;align-items:center}
.drawer nav a{display:block;padding:14px 18px;border-bottom:1px solid #141723;color:#d8def2}
.backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;transition:opacity .2s;z-index:60}
.backdrop.show{opacity:1}

/* Sections */
main{flex:1}
.section{padding:28px 0}
.hero{min-height:48vh;display:grid;place-items:center;text-align:center;background:
 radial-gradient(50% 50% at 30% 40%, rgba(0,229,255,.12), transparent 60%),
 radial-gradient(50% 50% at 70% 60%, rgba(255,0,204,.10), transparent 60%)}
.hero h1{font-size:clamp(26px,4vw,42px);margin:6px 0 0}
.hero p{color:var(--muted);margin:6px 0 0}

/* Cards & grids */
.grid{display:grid;gap:14px}
.cards{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
.card{background:#0d0f16;border:1px solid #1a1f2e;border-radius:14px;padding:12px;box-shadow:var(--shadow)}
.card .cover{aspect-ratio:1/1;border-radius:10px;background:#090b12;display:grid;place-items:center}

/* Forms */
label.field>span{font-size:13px;color:#a5a8b3;margin-bottom:6px;display:block}
.input-modern{background:linear-gradient(180deg,#0f121a,#0c0f17);border:1px solid #2a2d3f;color:#e9ecf1;border-radius:14px;padding:12px 14px;font-size:16px;outline:none;transition:border .15s, box-shadow .15s}
.input-modern::placeholder{color:#8d92a6}
.input-modern:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(77,163,255,.15)}
textarea{background:#161821;border:1px solid #2a2d3f;color:#e9ecf1;border-radius:12px;padding:12px;resize:vertical}
.btn{padding:12px 18px;border-radius:999px;border:0;background:#14172a;color:#e9ecf1}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent2));box-shadow:0 6px 18px rgba(77,163,255,.25)}
.btn.primary:hover{transform:translateY(-1px)}

/* Footer pinned */
body{display:flex;flex-direction:column}
footer{border-top:1px solid #161a28;padding:20px 0;background:#0b0d12}
.footer-inline{display:flex;justify-content:center;align-items:center;gap:180px;flex-wrap:wrap}
.footer-inline .group{display:flex;gap:18px;flex-wrap:wrap;align-items:center}
.footer-inline a{opacity:.92}
@media (max-width:720px){.footer-inline{gap:28px}}


/* Hover & Lift */
.card.artist{cursor:pointer;transition:transform .25s ease, box-shadow .25s ease;
  min-height: 360px;
  min-height: 400px;}
.card.artist:hover{transform:translateY(-6px) scale(1.03);box-shadow:0 12px 28px rgba(0,0,0,.45)}
.lift{transition:transform .22s ease, box-shadow .22s ease}
.lift:hover{transform:translateY(-4px) scale(1.03);box-shadow:0 12px 28px rgba(0,0,0,.45)}
.btn{transition:transform .22s ease, box-shadow .22s ease}
.btn:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 10px 22px rgba(0,0,0,.4)}
a.card, a > .card{text-decoration:none}

/* Avatars */
.avatar{width:140px;height:140px;border-radius:50%;object-fit:cover;display:block;margin:8px auto 10px;border:1px solid #1a1f2e;box-shadow:0 6px 16px rgba(0,0,0,.35)}
.card.artist h3{text-align:center;margin:4px 0 2px}
.card.artist p.muted{text-align:center;margin:0 0 8px}
.card.artist{padding-top:10px}
.profile-header{text-align:center;margin-top:10px}
.profile-header .avatar{width:160px;height:160px;margin-top:6px}
@media (max-width:520px){.avatar{width:120px;height:120px}.profile-header .avatar{width:140px;height:140px}}


/* Artist-specific avatar positioning fixes (v26) */
.avatar.sura {
  object-position: center -20%;
}


/* v27: precise adjustment for Sura */
.avatar.sura {
  object-position: center -20%;
}


/* v31 fix: adjust Sura avatar crop */
.avatar.sura {
  object-position: center -20%;
}


/* v32: precise adjustment for Sura image */
.avatar.sura {
  object-fit: cover;
  object-position: center -20%;
}


/* v33: Improved artist action buttons */
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.profile-actions .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  min-width: 140px;
  transition: all 0.3s ease;
}

.profile-actions .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}


/* v34: stronger adjustment for Sura image */
.avatar.sura {
  object-fit: cover;
  object-position: center -40%;
}


/* v38: shrink artist avatars by 25% */
.profile-card .avatar {
  width: 120px;
  height: 120px;
}

@media (max-width: 768px) {
  .profile-card .avatar {
    width: 105px;
    height: 105px;
  }
}

@media (max-width: 520px) {
  .profile-card .avatar {
    width: 90px;
    height: 90px;
  }
}


/* v39: shrink all avatars (not only profile-card) by 25% */
.avatar {
  width: 120px;
  height: 120px;
}

@media (max-width: 768px) {
  .avatar {
    width: 105px;
    height: 105px;
  }
}

@media (max-width: 520px) {
  .avatar {
    width: 90px;
    height: 90px;
  }
}


/* v44: Adjust Sura avatar only */
.avatar.sura {
  object-fit: cover;
  object-position: center -40%;
}


/* v45: Singles section */
.singles {
  margin-top: 40px;
  text-align: center;
}
.singles h2 {
  margin-bottom: 20px;
}
.singles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.single-card {
  background: rgba(255,255,255,0.05);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 180px;
}



/* === Enhanced Background Styling === */
body {
  background: linear-gradient(135deg, rgba(20,20,35,0.95), rgba(30,30,60,0.95)), url('https://www.transparenttextures.com/patterns/cubes.png');
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: overlay;
}

.hero.section {
  position: relative;
}

.hero.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
  border-radius: 14px;
  z-index: 0;
}

.hero.section > div {
  position: relative;
  z-index: 1;
}



/* === New Background with High-Res Image + Blur + Light Effects === */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/artists/hale.jpg') center/cover no-repeat;
  filter: blur(12px) brightness(0.6);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(138,43,226,0.35), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,191,255,0.25), transparent 60%);
  z-index: -1;
}



/* === New Fixed Background with Blur + Neon Glow === */

/* === Background (tek set) === */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/bg.jpg') center/cover no-repeat;
  filter: blur(18px) brightness(0.6);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,0,255,0.25), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,255,255,0.25), transparent 60%);
  z-index: -1;
}
#artGrid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

#artGrid a {
  scroll-snap-align: start;
}

#artGrid .card.artist {
  width: 220px;
  height: 260px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

/* === SWIPER Artists Carousel === */
.swiper {
  padding:8px 6px 60px;
  position: relative;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline: 8px;
  z-index: 5;
  width:50px !important;
  height:50px !important;
  margin-top:0 !important;
  background:rgba(10,12,20,.8) !important;
  border:1px solid rgba(255,255,255,.2) !important;
  border-radius:50% !important;
  color:#fff !important;
  backdrop-filter:blur(10px) !important;
  transition:all 0.3s ease !important;
}
.swiper-button-prev {
  left:calc(50% - 700px) !important;
}
.swiper-button-next {
  right:calc(50% - 700px) !important;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background:rgba(10,12,20,.95) !important;
  border-color:rgba(255,255,255,.4) !important;
  transform:translateY(-55%) scale(1.2) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  filter: brightness(1.1) !important;
}
.swiper-pagination {
  bottom:25px !important;
}
.swiper-nav {
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:10px;
}
@media (max-width: 639px) {
  .swiper-button-prev,
  .swiper-button-next { display: none !important; }
  .swiper-slide { width: 100% !important; }
}



/* === Infinite carousel for Artists grid === */

#artGrid {
  display: none; /* Completely remove the #artGrid block */
}
