/* style.css - Mystic Productions UI
   Theme: dark greys, purple-blue accent, small gold highlights
   Includes hover, transitions, active nav and basic responsive layout
*/
:root{
  --bg-1:#05060a;
  --bg-2:#0d0f14;
  --card: rgba(255,255,255,0.03);
  --muted:#9aa3b2;
  --accent-purple:#7C3AED;
  --accent-blue:#06B6D4;
  --accent-grad: linear-gradient(90deg,var(--accent-purple),var(--accent-blue));
  --gold:#d4b24a;
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --maxw:1100px;
  --transition: 220ms cubic-bezier(.2,.9,.28,1);
}

/* Reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(900px 400px at 10% 10%, rgba(124,58,237,0.06), transparent),
    radial-gradient(700px 300px at 90% 90%, rgba(6,182,212,0.05), transparent),
    linear-gradient(180deg,var(--bg-1),var(--bg-2));
  color:#eef2f6;
  line-height:1.45;
}

/* Layout */
.container{max-width:var(--maxw);margin:0 auto;padding:20px}

/* Topbar / Header */
.header{
  position:fixed;left:0;right:0;top:0;z-index:80;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-bottom:1px solid rgba(255,255,255,0.03);
  transition: transform 300ms ease, box-shadow 200ms ease;
}
.header.hidden{ transform: translateY(-96%); }
.header.scrolled{ box-shadow: 0 6px 20px rgba(2,6,23,0.6); }

.header-inner{ display:flex;align-items:center;justify-content:space-between;gap:12px; padding:12px 20px; max-width:var(--maxw); margin:0 auto; }
.brand{ display:flex;gap:12px;align-items:center }
.logo{ height:44px;width:44px;border-radius:10px;background:var(--accent-grad);display:flex;align-items:center;justify-content:center;color:#061017;font-weight:800 }
.brand h1{ font-size:1rem;margin:0 }
.brand p{ margin:0;font-size:12px;color:var(--muted) }

.nav{ display:flex;gap:10px;align-items:center }
.nav a{ color:var(--muted); text-decoration:none; padding:8px 10px; border-radius:8px; font-size:0.95rem; transition: all var(--transition); }
.nav a:hover{ color:#fff; background: rgba(255,255,255,0.02); transform: translateY(-2px); }
.nav a.active{ color:#fff; background: rgba(255,255,255,0.035); box-shadow: 0 6px 18px rgba(0,0,0,0.5); border:1px solid rgba(255,255,255,0.02) }

/* Buttons */
.btn{ display:inline-block; padding:10px 14px; border-radius:10px; font-weight:600; text-decoration:none; cursor:pointer; transition: all var(--transition); }
.btn-cta{ background:var(--accent-grad); color:#021018; box-shadow: 0 8px 28px rgba(124,58,237,0.12); border: none; }
.btn-ghost{ background:transparent; border:1px solid rgba(255,255,255,0.04); color:var(--muted) }
.btn:hover{ transform: translateY(-3px) }

/* Hero & Cards */
.hero{ margin-top:88px; padding:44px 0; display:grid; grid-template-columns:1fr; gap:20px }
.hero-card{ background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:16px; padding:26px; border:1px solid rgba(255,255,255,0.03); box-shadow:0 18px 40px rgba(0,0,0,0.6); transition: transform var(--transition), box-shadow var(--transition); }
.hero-card:hover{ transform: translateY(-6px); box-shadow:0 30px 70px rgba(0,0,0,0.6) }

.kicker{ display:inline-block; padding:6px 10px; border-radius:10px; background: rgba(255,255,255,0.02); color:var(--muted); font-size:0.85rem }
h1.lead{ font-size:2rem; margin:12px 0 8px; background:var(--accent-grad); -webkit-background-clip:text; color:transparent }
.lead-sub{ color:var(--muted); margin:0 }

/* Grid */
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; margin-top:18px }
.card{ background:var(--card); padding:14px; border-radius:12px; border:1px solid rgba(255,255,255,0.03); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.5) }
.card h3{ margin:0 0 6px }

/* Small text */
.small{ color:var(--muted); font-size:0.95rem }
.note{ color:var(--muted); font-size:0.9rem }

/* Form */
.form{ background:var(--glass); padding:14px; border-radius:12px; border:1px solid rgba(255,255,255,0.03) }
.input, textarea, select{ width:100%; padding:10px; border-radius:10px; border:none; background: rgba(255,255,255,0.02); color:#fff; margin-bottom:8px; outline:none }
.textarea{ min-height:110px }

/* Pricing list small */
.pricelist{ display:grid; gap:10px }
.pri{ display:flex; justify-content:space-between; align-items:center; padding:10px; border-radius:10px; background:rgba(255,255,255,0.01); border:1px solid rgba(255,255,255,0.02) }

/* Events */
.event{ display:flex; gap:12px; align-items:flex-start; padding:10px; border-radius:10px; background:rgba(255,255,255,0.01) }
.event .time{ min-width:100px; color:var(--muted); font-size:0.9rem }

/* DJ card */
.dj-card{ display:flex; gap:12px; align-items:center; padding:10px; border-radius:10px; background:rgba(255,255,255,0.01) }
.dj-avatar{ width:56px;height:56px;border-radius:10px;background:linear-gradient(135deg,var(--accent-blue),var(--accent-purple)); display:flex;align-items:center;justify-content:center;color:#021018;font-weight:800 }

/* Crew dashboard */
.crew-shell{ display:grid; grid-template-columns: 260px 1fr; gap:18px; margin-top:10px }
.crew-side{ background:var(--card); padding:12px; border-radius:12px; height:fit-content }
.side-link{ display:block; padding:10px; border-radius:8px; color:var(--muted); text-decoration:none }
.side-link.active{ color:#fff; background: rgba(255,255,255,0.03) }

/* Lists */
.list{ display:grid; gap:10px }
.event-row{ display:flex; justify-content:space-between; gap:8px; align-items:center; padding:10px; border-radius:8px; background:rgba(255,255,255,0.02); }
.todo-row{ display:flex; justify-content:space-between; gap:8px; align-items:center; padding:10px; border-radius:8px; background:rgba(255,255,255,0.02) }

/* Footer */
.footer{ margin-top:28px; text-align:center; padding:20px; color:var(--muted); border-top:1px solid rgba(255,255,255,0.02) }

/* Page transition helper */
.page-fade-enter{ opacity:0; transform: translateY(6px) }
.page-fade-enter-active{ opacity:1; transform:none; transition: opacity 320ms ease, transform 320ms ease }
.page-fade-exit{ opacity:1 }
.page-fade-exit-active{ opacity:0; transition: opacity 220ms ease }

/* Responsive */
@media (min-width:900px){ .hero{ grid-template-columns:1fr 380px } .container{ padding:28px } }
@media (max-width:880px){ .crew-shell{ grid-template-columns: 1fr } .header-inner{ padding:10px } .nav{ display:none } }
