:root {
    --bg-color: #d3d3d3; /* Abu-abu hangat */
    --card-bg: #eceae3;  /* Krem terang */
    --accent-pink: #d9aba3; /* Warna nav bar */
    --dark-text: #1a1a1a;
}

body {
    background-color: #1a1a1a; /* Background luar simulasi screenshot */
    font-family: 'Georgia', serif; /* Ganti dengan font yang mirip */
    margin: 0;
    display: flex;
    justify-content: center;
}

.container {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 500px; /* Lebar mobile-first sesuai gambar */
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    background-color: var(--accent-pink);
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    margin: 0 5px;
}

/* Grid System */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Hero Card */
.hero-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 30px;
    grid-column: span 1;
}

.hero-card h1 {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 1;
}

.hero-card p {
    font-size: 0.65rem;
    line-height: 1.4;
}

/* Images */
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.featured-img {
    grid-row: span 2;
    position: relative;
}

.contact-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(146, 114, 88, 0.8);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.6rem;
    color: white;
}

/* Music Cards */
.music-card-small {
    position: relative;
}

.card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.7rem;
    width: 80%;
    text-align: center;
}

/* Band Info Section */
.band-info {
    grid-column: span 2;
    display: flex;
    gap: 15px;
    align-items: center;
}

.band-img-wrap { width: 50%; }
.band-text { width: 50%; font-size: 0.7rem; }

/* Group Photo */
.group-photo {
    grid-column: 2;
    grid-row: span 2;
}

/* Footer & Vinyl */
.footer-section {
    grid-column: span 2;
    position: relative;
    padding-top: 20px;
}

.btn-catalog {
    background-color: #a68566;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

.market-title h2 {
    font-family: 'Impact', sans-serif; /* Font tebal untuk Record Market */
    font-size: 2rem;
    text-transform: uppercase;
    margin: 20px 0;
    width: 50%;
}

.vinyl-record {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #333 30%, #111 31%, #111 100%);
    border-radius: 50%;
    position: absolute;
    right: -60px;
    bottom: -20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: #eee;
    border-radius: 50%;
}