/* Bandzly — Mobile-first, zero animation */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-footer: #111111;
    --text: #111111;
    --text-mid: #666666;
    --text-light: #999999;
    --accent: #e91e8c;
    --accent2: #00bcd4;
    --border: #e5e5e5;
    --r: 12px;
    --font: 'Outfit', sans-serif;
    --success: #22c55e;
    --danger: #ef4444;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; }

/* Nav */
nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); padding: 0 20px; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { font-size: 24px; font-weight: 800; color: var(--text); text-decoration: none; }
.nav-brand span { color: var(--accent); }
.nav-links { display: none; }
.nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
.nav-links a { color: var(--text-mid); font-size: 15px; font-weight: 500; min-height: 44px; display: flex; align-items: center; }
.nav-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); min-width: 44px; min-height: 44px; }

/* Buttons */
.btn { padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 16px; cursor: pointer; display: inline-block; text-decoration: none; text-align: center; min-height: 44px; font-family: var(--font); border: 2px solid transparent; }
.btn-primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn-primary:hover { color: #fff; background: #333; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { color: #fff; opacity: 0.9; }
.btn-sm { padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 13px; background: var(--text); color: #fff; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; text-decoration: none; }
.btn-sm:hover { color: #fff; opacity: 0.85; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-white { padding: 12px 26px; border-radius: 8px; font-weight: 700; background: #fff; color: var(--text); border: none; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-block; font-family: var(--font); min-height: 44px; }
.btn-white:hover { color: var(--text); }
.btn-block { display: block; width: 100%; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.page-section { padding: 42px 20px; }
.page-section-alt { padding: 42px 20px; background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h1, .section-head h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.section-head p { font-size: 16px; color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; } .mt-2 { margin-top: 26px; } .mt-3 { margin-top: 42px; }
.mb-1 { margin-bottom: 16px; } .mb-2 { margin-bottom: 26px; } .mb-3 { margin-bottom: 42px; }

/* Hero */
.hero { padding: 42px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.hero-logo { max-width: 85%; width: 500px; margin: 0 auto 26px; }
.hero h1 { font-size: 26px; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.hero p { font-size: 16px; color: var(--text-mid); max-width: 500px; margin: 0 auto 42px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats { background: #111; padding: 42px 20px; text-align: center; }
.stats-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-num { font-size: 26px; font-weight: 800; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

/* List Table */
.list-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.list-row { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
.list-row:last-child { border-bottom: none; }
.list-row:nth-child(even) { background: var(--bg-alt); }
.list-photo { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; overflow: hidden; }
.list-name { font-weight: 600; font-size: 14px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-detail { font-size: 12px; color: var(--text-mid); white-space: nowrap; }
.list-distance { font-weight: 600; color: var(--accent); min-width: 50px; text-align: right; }

/* Cards */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.card-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; background: var(--bg-alt); flex-shrink: 0; }
.card-photo-lg { width: 100%; aspect-ratio: 16/9; border-radius: var(--r); object-fit: cover; background: var(--bg-alt); margin-bottom: 16px; }
.card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.card-title { font-size: 17px; font-weight: 700; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--accent); }
.card-subtitle { font-size: 13px; color: var(--text-mid); }
.card-meta { font-size: 13px; color: var(--text-light); margin-top: 8px; }
.card-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(233,30,140,0.08); color: var(--accent); }
.card-badge-premium { background: var(--accent); color: #fff; }
.card-actions { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.card-body { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* How It Works */
.how { padding: 68px 20px; }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 1000px; margin: 0 auto; }
.how-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 42px 26px; text-align: center; }
.how-icon { font-size: 42px; margin-bottom: 16px; display: block; }
.how-step { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; }
.how-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 14px; color: var(--text-mid); }
.accent-line-1 { border-top: 3px solid var(--accent); }
.accent-line-2 { border-top: 3px solid var(--accent2); }
.accent-line-3 { border-top: 3px solid var(--text); }

/* Show Rows */
.shows-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.show-row { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; }
.show-row a { color: inherit; text-decoration: none; }
.show-date { text-align: center; }
.show-month { font-size: 11px; text-transform: uppercase; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; }
.show-day { font-size: 26px; font-weight: 800; line-height: 1; }
.show-dow { font-size: 10px; color: var(--text-light); text-transform: uppercase; }
.show-band { font-size: 15px; font-weight: 600; }
.show-band a { color: var(--text); }
.show-band a:hover { color: var(--accent); }
.show-venue { font-size: 13px; color: var(--text-mid); }
.show-venue a { color: var(--text-mid); }
.show-venue a:hover { color: var(--accent); }
.show-time { font-size: 12px; color: var(--text-light); }
.show-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(233,30,140,0.08); color: var(--accent); display: none; }
.no-shows { text-align: center; padding: 42px; color: var(--text-mid); font-size: 15px; }
.view-all { text-align: center; margin-top: 26px; }
.view-all a { font-weight: 600; font-size: 15px; }

/* Favorites Section (homepage) */
.favorites { padding: 68px 20px; }
.fav-grid { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 800px; margin: 0 auto; }
.fav-card { border-radius: var(--r); padding: 42px 26px; text-align: center; color: #fff; }
.fav-bands { background: #111; }
.fav-venues { background: var(--accent); }
.fav-card .fav-icon { font-size: 42px; margin-bottom: 16px; display: block; }
.fav-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.fav-card p { font-size: 14px; opacity: 0.85; margin-bottom: 26px; }

/* Weekly Email */
.weekly { padding: 68px 20px; background: var(--bg-alt); text-align: center; border-top: 1px solid var(--border); }
.weekly-inner { max-width: 550px; margin: 0 auto; }
.weekly h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.weekly p { font-size: 16px; color: var(--text-mid); margin-bottom: 26px; }
.weekly-features { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; flex-direction: column; align-items: center; margin-bottom: 42px; }
.weekly-feat { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.weekly-feat .check { color: var(--accent); font-size: 18px; }
.email-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
.email-form input { flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 15px; outline: none; }
.email-form input:focus { border-color: var(--accent); }
.email-form button { padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: 15px; background: var(--text); color: #fff; border: none; cursor: pointer; font-family: var(--font); min-height: 44px; }

/* For Bands/Venues */
.for-bv { padding: 42px 20px; border-top: 1px solid var(--border); }
.for-bv-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.for-bv h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.for-bv p { font-size: 16px; color: var(--text-mid); margin-bottom: 26px; max-width: 500px; margin-left: auto; margin-right: auto; }
.for-bv-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.for-bv-links a { font-weight: 600; font-size: 14px; padding: 10px 20px; border: 2px solid var(--border); border-radius: 8px; color: var(--text); min-height: 44px; display: inline-flex; align-items: center; }
.for-bv-links a:hover { border-color: var(--accent); color: var(--accent); }

/* Forms */
.form-card { max-width: 460px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 42px 20px; }
.form-card h1 { font-size: 26px; font-weight: 800; margin-bottom: 26px; text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 15px; outline: none; background: var(--bg); color: var(--text); min-height: 44px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-checkbox label { font-size: 14px; color: var(--text-mid); cursor: pointer; }
.form-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 4px; }
.form-footer { text-align: center; margin-top: 26px; font-size: 14px; color: var(--text-mid); }
.form-footer a { font-weight: 600; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 26px 0; }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--r); margin-bottom: 26px; font-size: 14px; font-weight: 500; }
.alert-success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* Tabs */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 26px; overflow-x: auto; }
.tab { padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--text-mid); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; min-height: 44px; display: flex; align-items: center; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Profile */
.profile-hero { padding: 42px 20px; border-bottom: 1px solid var(--border); }
.profile-hero-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.profile-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; background: var(--bg-alt); border: 4px solid #fff; }
.profile-name { font-size: 26px; font-weight: 800; }
.profile-type { font-size: 14px; color: var(--text-mid); }
.profile-stats { display: flex; gap: 26px; font-size: 14px; color: var(--text-mid); }
.profile-stat-num { font-weight: 700; color: var(--text); }
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Search */
.search-bar { display: flex; flex-direction: column; gap: 10px; max-width: 700px; margin: 0 auto 26px; }
.search-bar input, .search-bar select { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 15px; outline: none; min-height: 44px; }
.search-bar input:focus, .search-bar select:focus { border-color: var(--accent); }
.search-bar button { padding: 14px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; background: var(--text); color: #fff; border: none; cursor: pointer; font-family: var(--font); min-height: 44px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.chip { padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 2px solid var(--border); color: var(--text-mid); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; background: var(--bg); }
.chip.active { border-color: var(--accent); color: var(--accent); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.pricing-card { border: 2px solid var(--border); border-radius: var(--r); padding: 42px 26px; text-align: center; background: var(--bg); }
.pricing-card.featured { border-color: var(--accent); position: relative; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; }
.pricing-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.pricing-price { font-size: 42px; font-weight: 800; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-mid); }
.pricing-desc { font-size: 14px; color: var(--text-mid); margin-bottom: 26px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 26px; }
.pricing-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* Dashboard */
.dash-section { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 26px; overflow: hidden; }
.dash-section-header { padding: 16px 20px; background: var(--bg-alt); font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; min-height: 44px; }
.dash-section-header::after { content: '▼'; font-size: 12px; color: var(--text-light); }
.dash-section-header.collapsed::after { transform: rotate(-90deg); }
.dash-section-body { padding: 20px; }
.dash-section-body.collapsed { display: none; }
.dash-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dash-stat { text-align: center; padding: 16px; background: var(--bg-alt); border-radius: var(--r); }
.dash-stat-num { font-size: 26px; font-weight: 800; }
.dash-stat-label { font-size: 12px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }

/* Announcements */
.announcement { background: #fef2f8; border: 1px solid #fbcfe8; border-radius: var(--r); padding: 16px 20px; margin-bottom: 16px; }
.announcement-label { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.announcement-text { font-size: 14px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 26px; flex-wrap: wrap; }
.page-link { padding: 8px 14px; border: 2px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-mid); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.page-link.active { background: var(--text); color: #fff; border-color: var(--text); }
.page-dots { display: inline-flex; align-items: center; padding: 8px 6px; color: var(--text-light); }

/* Empty State */
.empty-state { text-align: center; padding: 68px 20px; color: var(--text-mid); }
.empty-state-icon { font-size: 68px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 14px; margin-bottom: 26px; }

/* Footer */
footer { background: var(--bg-footer); padding: 42px 20px; text-align: center; }
.footer-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }

/* Tablet (768px+) */
@media (min-width: 768px) {
    nav { padding: 0 42px; }
    .nav-links { display: flex; gap: 26px; align-items: center; position: static; flex-direction: row; padding: 0; background: transparent; border: none; }
    .nav-links a { font-size: 14px; }
    .nav-toggle { display: none; }
    .hero { padding: 68px 42px; }
    .hero h1 { font-size: 42px; }
    .hero-logo { max-width: 500px; }
    .stats-grid { gap: 26px; }
    .stat-num { font-size: 42px; }
    .page-section, .page-section-alt { padding: 68px 42px; }
    .section-head { margin-bottom: 68px; }
    .section-head h1, .section-head h2 { font-size: 42px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .how { padding: 110px 42px; }
    .how-grid { grid-template-columns: repeat(3, 1fr); }
    .show-row { grid-template-columns: 68px 1fr auto; }
    .show-badge { display: inline-block; }
    .fav-grid { grid-template-columns: repeat(2, 1fr); }
    .email-form { flex-direction: row; }
    .weekly-features { flex-direction: row; gap: 26px; }
    .form-card { padding: 42px; }
    .search-bar { flex-direction: row; }
    .search-bar input { flex: 1; }
    .search-bar select { width: auto; min-width: 160px; }
    .search-bar button { width: auto; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-hero-inner { flex-direction: row; text-align: left; }
    .dash-stat-grid { grid-template-columns: repeat(4, 1fr); }
    .list-row { padding: 10px 20px; }
    .list-name { font-size: 15px; }
    .list-detail { font-size: 13px; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
