* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #0f1117;
    color: #ffffff;
}

/* Header */

.header {
    height: 70px;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: #11141d;
}

header{

    height:70px;

    padding:0 25px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border-bottom:1px solid rgba(255,255,255,.08);

    background:#11141d;

}

header nav a{

    display:inline-block;

    padding:6px 14px;

    background:#d4af37;

    color:#11141d;

    text-decoration:none;

    border-radius:8px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

header nav a:hover{

    background:#ffffff;

    color:#11141d;

}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-logo{
    height:55px;
    width:auto;
}

.brand-name{
    font-size:28px;
    font-weight:700;
    color:#d4af37;
}
.logo{
    display:flex;
    align-items:center;
    gap:8px;

    font-size:24px;
    font-weight:700;
    color:#d4af37;
}

.logo-icon{
    font-size:30px;
    line-height:1;
}

.login-btn {
    border: none;
    background: #d4af37;
    color: #000;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Hero */

.hero {
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 40px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("https://images.unsplash.com/photo-1503095396549-807759245b35?q=80&w=1600");
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
}

.join-btn {
    margin-top: 25px;

    background: #d4af37;
    color: #000;

    border: none;

    padding: 14px 28px;

    border-radius: 12px;

    font-weight: bold;
    cursor: pointer;
}

/* Search */

.search-section{

    padding:25px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

}

#searchInput{

    width:100%;

    max-width:700px;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#1a1d24;

    color:#fff;

    font-size:16px;

}

.filter-bar{

    width:100%;

    max-width:700px;

    display:flex;

    gap:15px;

}

.filter-bar select{

    flex:1;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#1a1d24;

    color:#fff;

    font-size:16px;

    cursor:pointer;

}

/* Categories */

.categories {
    padding: 50px 25px;
}

.categories h2,
.featured h2{

    font-size:32px;

    text-align:center;

    margin-bottom:35px;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,320px));

    justify-content:center;

    gap:25px;

}

.category-card {
    background: #1a1d24;

    padding: 25px;

    border-radius: 16px;

    text-align: center;

    font-weight: 600;

    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);
    border: 1px solid #d4af37;
}

/* Featured */

.featured {
    padding: 50px 25px;
}

#profilesContainer{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,320px));

    justify-content:center;

    gap:25px;

}

.profile-card{

    width:320px;

    background:linear-gradient(
        135deg,
        #1a1d24,
        #11141d
    );

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:24px;

    text-align:center;

    transition:.3s;

}

.profile-card:hover{
    transform: translateY(-5px);
    border-color:#d4af37;
}

.artist-photo{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #d4af37;

    display:block;

    margin:0 auto 18px;

}

.profile-card h3{

    font-size:24px;

    margin-bottom:12px;

    color:#fff;

}

.profile-card p{
    color:#bdbdbd;
    margin-bottom:8px;
}

.view-btn{

    margin-top:18px;

    background:#d4af37;

    color:#000;

    border:none;

    padding:12px 24px;

    border-radius:12px;

    font-weight:700;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.view-btn:hover{

    transform:translateY(-2px);

}

.view-all-wrapper{

    display:flex;

    justify-content:center;

    margin-top:35px;

}

#viewAllArtistsBtn{

    padding:15px 35px;

    border:none;

    border-radius:12px;

    background:#d4af37;

    color:#000;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#viewAllArtistsBtn:hover{

    transform:translateY(-2px);

}

/* Mobile */

@media (max-width:768px){

    /* =========================
       Header
    ========================= */

    header{

        height:auto;

        padding:12px 18px;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:10px;

    }

    .header{

        height:60px;

        padding:0 15px;

    }

    .header-logo{

        height:42px;

    }

    .brand-name{

        font-size:18px;

    }

    .logo{

        font-size:18px;

        font-weight:700;

        text-align:center;

    }

    header nav{

        width:100%;

        display:flex;

        justify-content:center;

    }

    header nav a{

        display:inline-block;

        padding:6px 14px;

        background:#d4af37;

        color:#11141d;

        text-decoration:none;

        border-radius:8px;

        font-size:15px;

        font-weight:600;

    }

    .login-btn{

        padding:6px 10px;

        font-size:12px;

    }

    /* =========================
       Hero
    ========================= */

    .hero{

        min-height:250px;

        padding:20px 15px;

    }

    .hero h1{

        font-size:28px;

        line-height:1.2;

        max-width:320px;

        margin:0 auto 15px;

    }

    .hero p{

        max-width:300px;

        margin:auto;

        font-size:15px;

        line-height:1.7;

    }

    .join-btn{

        margin-top:20px;

        padding:10px 18px;

        font-size:13px;

    }

    /* =========================
       Search
    ========================= */

    .search-section{

        padding:20px 15px;

    }

    #searchInput{

        width:100%;

        padding:15px;

        font-size:15px;

    }

    .filter-bar{

        display:flex;

        flex-direction:column;

        gap:12px;

        margin-top:15px;

    }

    .filter-bar select{

        width:100%;

        padding:14px;

        border-radius:10px;

        font-size:15px;

    }

    /* =========================
       Categories
    ========================= */

    .categories,
    .featured{

        padding:30px 15px;

    }

    .categories h2,
    .featured h2{

        font-size:22px;

        margin-bottom:20px;

    }

    .category-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .category-card{

        min-height:90px;

        padding:14px;

        font-size:14px;

    }

    /* =========================
       Artist Card
    ========================= */

    .profile-card{

        padding:18px;

        border-radius:16px;

    }

    .artist-photo{

        width:100px;

        height:100px;

        margin-bottom:15px;

    }

    .profile-card h3{

        font-size:24px;

        margin:10px 0;

    }

    .profile-card p{

        font-size:17px;

        margin:8px 0;

    }

    .view-btn{

        width:100%;

        height:48px;

        margin-top:15px;

        border-radius:10px;

        font-size:17px;

    }

}