/* assets/css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0a0e;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #eae7f0;
    line-height: 1.5;
    padding: 1.5rem 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    background: #131116;
    border-radius: 2.5rem;
    padding: 2rem 2rem 1.5rem;
    border: 1px solid #2a2532;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2a2532;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #f0e9d0, #cbbddb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-small {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f0e9d0, #cbbddb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 1rem;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    color: #c9bddb;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.3rem 0.1rem;
    transition: 0.15s;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #ede6fa;
    border-bottom-color: #b29ed0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1e1a26;
    min-width: 160px;
    border-radius: 1.2rem;
    padding: 0.6rem 0;
    border: 1px solid #342e40;
    top: 1.8rem;
    left: -0.5rem;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 0.4rem 1.2rem;
    color: #d3c8e2;
    font-size: 0.9rem;
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #2b2537;
    color: #f5efff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown i {
    font-size: 0.6rem;
    margin-left: 0.2rem;
    color: #9486a8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-small {
    background: #2c2733;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e0d7ec;
    border: 1px solid #45405a;
    text-decoration: none;
    transition: 0.15s;
}

.btn-small:hover {
    background: #3c3549;
}

.btn-primary-small {
    background: #b8a4d9;
    border-color: #b8a4d9;
    color: #131116;
}

.btn-primary-small:hover {
    background: #d0bdee;
}

.btn-danger {
    border-color: #8a3a4a;
    color: #e07a8a;
}

.btn-danger:hover {
    background: #2a1a20;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.8rem;
}

.hero-left h1 {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f0e9d0, #d4c9b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-left .sub {
    font-size: 1rem;
    color: #b6abc4;
    margin-top: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-left .sub span {
    background: #211d28;
    padding: 0.15rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #cdc2db;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #f0ebf5;
    border: 1px solid #3f3949;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: 0.15s;
    background: #2c2733;
}

.btn-primary {
    background: #b8a4d9;
    border-color: #b8a4d9;
    color: #131116;
}

.btn-primary:hover {
    background: #d2c0ed;
}

.btn-outline {
    background: transparent;
    border-color: #4f475b;
}

.btn-outline:hover {
    background: #25212b;
}

/* ===== FEATURES ===== */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.2rem;
    background: #1a1621;
    padding: 1rem 2rem;
    border-radius: 60px;
    border: 1px solid #332d3d;
    margin-bottom: 2rem;
}

.features span {
    color: #cdc2db;
}

.features i {
    color: #b6a4d2;
    margin-right: 0.5rem;
}

/* ===== SECTION ===== */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 2.5rem 0 1.2rem 0;
}

.section-title h2 {
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: -0.3px;
    color: #eeeaf5;
}

.section-title a {
    color: #b6a6d0;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px dashed #4a4357;
    padding-bottom: 2px;
}

.section-title a:hover {
    color: #ddd2f0;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #1b1821;
    border-radius: 1.8rem;
    padding: 1.4rem 1.2rem;
    border: 1px solid #29242f;
    transition: 0.15s;
}

.card:hover {
    background: #211e28;
    border-color: #45405a;
}

.card .band-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #f2ecfc;
}

.card .band-desc {
    font-size: 0.85rem;
    color: #b8adc7;
    margin: 0.2rem 0 0.5rem 0;
}

.card .badge {
    display: inline-block;
    background: #2c2636;
    padding: 0.1rem 0.9rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #d7cee6;
}

.card .price {
    display: inline-block;
    background: #2f2a3a;
    padding: 0.1rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d7cee6;
    margin-left: 0.3rem;
}

/* ===== GIGS ===== */
.gigs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gig-card {
    background: #1b1821;
    border-radius: 1.8rem;
    padding: 1.2rem 1.2rem 1rem;
    border-left: 5px solid #7b6b92;
    border: 1px solid #2d2837;
    border-left-width: 6px;
}

.gig-card .band-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.gig-card .venue {
    font-size: 0.9rem;
    color: #bfb3d0;
}

.gig-card .city {
    font-size: 0.8rem;
    color: #8e829e;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gig-card .date {
    font-size: 0.75rem;
    color: #7b6e89;
    margin-top: 0.2rem;
}

/* ===== BAND BARU ===== */
.band-baru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.band-baru-item {
    background: #1c1823;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #312b3b;
}

.band-baru-item .city-tag {
    font-size: 0.7rem;
    background: #2a2433;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #bfb3cf;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    margin-top: 3rem;
    background: #1d1924;
    border-radius: 3rem;
    padding: 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #3f374b;
}

.newsletter h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #ece6f5;
}

.newsletter .input-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

.newsletter input {
    background: #0e0c12;
    border: 1px solid #3f384b;
    border-radius: 60px;
    padding: 0.6rem 1.5rem;
    color: #f0eaf8;
    font-size: 0.9rem;
    min-width: 190px;
    outline: none;
}

.newsletter input:focus {
    border-color: #a38fc2;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1.4rem;
    color: #a493b5;
}

.social-links a {
    color: #a493b5;
    transition: 0.15s;
}

.social-links a:hover {
    color: #d4c7e8;
}

.footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: #5d526d;
    border-top: 1px solid #282332;
    padding-top: 2rem;
}

/* ===== AUTH ===== */
.auth-container {
    background: #131116;
    border-radius: 2.5rem;
    padding: 2.5rem 2.8rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #2a2532;
}

.auth-container .logo {
    text-align: center;
    font-size: 2rem;
}

.auth-container .logo-sub {
    text-align: center;
    color: #7b6e89;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.alert {
    padding: 0.8rem 1.2rem;
    border-radius: 60px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.alert-error {
    background: #2a1a20;
    border: 1px solid #6a3a4a;
    color: #e07a8a;
}

.alert-success {
    background: #1a2a1a;
    border: 1px solid #3a6a3a;
    color: #7aea7a;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b6aac6;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select {
    width: 100%;
    background: #0e0c12;
    border: 1px solid #2d2837;
    border-radius: 60px;
    padding: 0.75rem 1.4rem;
    color: #f0eaf8;
    font-size: 0.95rem;
    font-family: inherit;
    transition: 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #b8a4d9;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background: #b8a4d9;
    border: none;
    padding: 0.8rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #131116;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-submit:hover {
    background: #d0bdee;
}

.btn-submit-small {
    background: #b8a4d9;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #131116;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}

.btn-submit-small:hover {
    background: #d0bdee;
}

.role-toggle {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.role-btn {
    background: #1c1823;
    border: 2px solid #2d2837;
    padding: 0.5rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #9486a8;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-btn.active {
    border-color: #b8a4d9;
    background: #2a2437;
    color: #ede6fa;
}

.role-btn:hover:not(.active) {
    border-color: #4f475b;
    color: #c9bddb;
}

.switch-auth {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #7b6e89;
}

.switch-auth a {
    color: #b8a4d9;
    text-decoration: none;
    font-weight: 600;
}

.switch-auth a:hover {
    color: #d4c7e8;
    text-decoration: underline;
}

/* ===== DASHBOARD ===== */
.dashboard {
    max-width: 1280px;
    margin: 0 auto;
    background: #131116;
    border-radius: 2.5rem;
    padding: 2rem 2rem 1.5rem;
    border: 1px solid #2a2532;
}

.dashboard-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a2532;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: #1b1821;
    border-radius: 1.8rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #29242f;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f2ecfc;
}

.stat-label {
    color: #b6aac6;
    font-size: 0.9rem;
}

.card {
    background: #1b1821;
    border-radius: 1.8rem;
    padding: 1.5rem;
    border: 1px solid #29242f;
}

.card h3 {
    margin-bottom: 1rem;
    color: #eeeaf5;
}

.card.full-width {
    grid-column: 1 / -1;
}

.list-items {
    list-style: none;
}

.list-items li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #25212b;
}

.list-items li:last-child {
    border-bottom: none;
}

.list-items .badge {
    background: #2c2636;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    color: #d7cee6;
}

.list-items .price {
    color: #b8a4d9;
    font-weight: 600;
}

.list-items .date {
    color: #7b6e89;
    font-size: 0.8rem;
}

.empty {
    color: #7b6e89;
    font-style: italic;
    padding: 0.5rem 0;
}

.band-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.band-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: #141118;
    border-radius: 60px;
    border: 1px solid #29242f;
}

.band-avatar {
    font-size: 1.5rem;
}

.band-item .city-tag {
    font-size: 0.7rem;
    background: #2a2433;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #bfb3cf;
}

.band-item .genre-tag {
    font-size: 0.7rem;
    background: #1f2a33;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    color: #8ab3cf;
}

/* ===== BAND PROFILE ===== */
.band-profile {
    margin-top: 1rem;
}

.profile-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: #1b1821;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #29242f;
    margin-bottom: 2rem;
}

.profile-avatar {
    font-size: 4rem;
    background: #2a2437;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #b8a4d9;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2.2rem;
    color: #f2ecfc;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0.5rem 0;
    color: #b6aac6;
    font-size: 0.9rem;
}

.profile-meta i {
    color: #b8a4d9;
    width: 1.2rem;
}

.social-link {
    display: inline-block;
    color: #b8a4d9;
    text-decoration: none;
    margin: 0.3rem 0;
}

.social-link:hover {
    color: #d4c7e8;
}

.profile-info .bio {
    margin-top: 0.5rem;
    color: #c9bddb;
    max-width: 600px;
}

.profile-actions {
    display: flex;
    gap: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .container {
        padding: 1.2rem 1rem;
    }
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .nav-links {
        justify-content: center;
        gap: 0.2rem 0.8rem;
    }
    .nav-right {
        justify-content: center;
        margin-top: 0.2rem;
    }
    .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .auth-container {
        padding: 1.8rem 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-actions {
        justify-content: center;
        width: 100%;
    }
    .profile-meta {
        justify-content: center;
    }
    .dashboard {
        padding: 1.2rem 1rem;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}