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

body{
    font-family:'Poppins', sans-serif;
    background:#FFF7E6;
    min-height:100vh;
    overflow-x:hidden;
}

/* ==========================
NAVBAR
========================== */

/* ==========================
NAVBAR
========================== */

/* ==========================
NAVBAR (Sama persis dengan Privacy)
========================== */

.navbar {
    width: 95%;
    /* max-width dihapus agar lebarnya memanjang sama seperti Privacy */
    height: 75px; 
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    margin: 25px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.logo a {
    text-decoration: none;
    color: #B46A72;
    font-weight: 700; /* Ketebalan font disamakan dengan Privacy */
    font-size: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px; /* Jarak antar menu dilebarkan lagi */
}

.nav-links a {
    text-decoration: none;
    color: #B46A72;
    font-weight: 600;
    font-size: 16px; /* Font size dibesarkan sama seperti Privacy */
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D98C99;
}

/* Menu aktif berubah warna hijau, TANPA garis bawah */
.nav-links a.active {
    color: #A8B58A;
}

.search-box {
    width: 250px; /* Ukuran search box dibesarkan lagi */
    height: 40px;
    background: #F7C8D3;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #B46A72;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #B46A72;
    opacity: 0.6;
}

.search-box span {
    color: #B46A72;
    font-size: 20px;
    cursor: pointer;
}

/* ==========================
ARTIST
========================== */

.artist-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-top:60px;
}

.artist-grid{
    width:90%;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}
.artist-card img{
    transition:.4s ease;
}

.artist-card:hover img{
    transform:scale(1.08);
}
.artist-card{
    text-align:center;
    animation:fadeUp 1s ease;
    transition:.35s ease;
    cursor:pointer;
}

.artist-image{
    width:180px;
    height:120px;

    background:#F4F4F4;
    border-radius:28px;

    overflow:hidden;
    margin:auto;

    transition:.4s;
}

.artist-image:hover{
    transform:translateY(-8px);
}

.artist-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.artist-card h3{
    margin-top:18px;
    font-size:16px;
    color:#A8B58A;
    font-weight:500;
}

.artist-card p{
    margin-top:8px;
    font-size:16px;
    color:#A8B58A;
    font-weight:700;
}

/* animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}