/* ══════════════════════════════════════════════════════
   VibesNearby.live — Design Shell v1.0
   Brand: Hot pink → violet gradient on deep ink
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --hot:    #ff2d78;
    --violet: #7c3fff;
    --cyan:   #00c2ff;
    --gold:   #ffb347;
    --green:  #00e187;
    --ink:    #050810;
    --muted:  #8892b0;
    --muted2: #b8c2dc;
    --bd:     rgba(255,255,255,.1);
    --surface:rgba(255,255,255,.04);
    --grad:   linear-gradient(135deg, #ff2d78, #7c3fff);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: var(--ink);
    color: #eef0ff;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Typography ───────────────────────────────────────── */
.font-syne { font-family: 'Syne', sans-serif; }
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Glass card ───────────────────────────────────────── */
.glass {
    background: var(--surface);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid var(--bd);
    border-radius: 16px;
}
.glass:hover { border-color: rgba(255,255,255,.18); }

/* ── Mesh background ──────────────────────────────────── */
.mesh-bg {
    position: fixed;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255,45,120,.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(124,63,255,.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(0,194,255,.05) 0%, transparent 50%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: mesh 25s infinite alternate ease-in-out;
}
@keyframes mesh {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(3%,4%) scale(1.05); }
    100% { transform: translate(-3%,3%) scale(.97); }
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    min-height: 44px;
    font-family: 'DM Sans', sans-serif;
}
.btn-gradient { background: var(--grad); color: white; }
.btn-gradient:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(255,45,120,.3); }
.btn-ghost { background: rgba(255,255,255,.08); color: white; border: 1px solid var(--bd); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-green { background: rgba(0,225,135,.2); color: var(--green); border: 1px solid rgba(0,225,135,.3); }
.btn-cyan  { background: rgba(0,194,255,.2);  color: var(--cyan);  border: 1px solid rgba(0,194,255,.3); }
.btn-sm { padding: 8px 16px; font-size: 12px; min-height: 36px; }
.btn-full { width: 100%; }

/* ── Tip amount buttons ───────────────────────────────── */
.tip-btn {
    background: rgba(255,45,120,.12);
    border: 2px solid rgba(255,45,120,.25);
    color: white;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: all .2s;
    min-height: 56px;
    width: 100%;
}
.tip-btn:hover, .tip-btn.active {
    background: rgba(255,45,120,.3);
    border-color: var(--hot);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255,45,120,.3);
}

/* ── Form inputs ──────────────────────────────────────── */
input, select, textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: white;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; /* prevent iOS zoom */
    width: 100%;
    outline: none;
    transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--hot); }
input::placeholder, textarea::placeholder { color: var(--muted); }
select option { background: #090d1a; }
label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 6px;
}

/* ── Artist profile card ──────────────────────────────── */
.artist-card {
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.artist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,45,120,.35);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.artist-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: rgba(255,255,255,.03);
}
.artist-card-body { padding: 18px; }
.artist-card-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px; color: white; margin-bottom: 4px; }
.artist-card-meta { font-size: 12px; color: var(--muted); }
.live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,45,120,.2); color: var(--hot);
    border: 1px solid rgba(255,45,120,.4); border-radius: 999px;
    padding: 3px 10px; font-size: 11px; font-weight: 700;
    animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
    0%, 100% { opacity: 1; } 50% { opacity: .7; }
}

/* ── Badges ───────────────────────────────────────────── */
.badge {
    display: inline-block; padding: 3px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.badge-genre { background: rgba(124,63,255,.15); color: #c0a0ff; border: 1px solid rgba(124,63,255,.3); }
.badge-city  { background: rgba(0,194,255,.12);  color: var(--cyan); border: 1px solid rgba(0,194,255,.25); }
.badge-live  { background: rgba(255,45,120,.2);  color: var(--hot); border: 1px solid rgba(255,45,120,.35); }

/* ── Layout helpers ───────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 48px 0; }
}
@media (max-width: 480px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
}

/* ── Nav clearance ────────────────────────────────────── */
.page-body { padding-top: 80px; }

/* ── Dividers ─────────────────────────────────────────── */
.text-muted  { color: var(--muted); }
.text-muted2 { color: var(--muted2); }
.text-hot    { color: var(--hot); }
.text-violet { color: var(--violet); }
.text-cyan   { color: var(--cyan); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-white  { color: white; }
