/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}

/* TOP BANNER */
.top-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.top-banner img {
    width: 100%;
    height: 380px;        /* <<< REDUCED HEIGHT */
    object-fit: cover;    /* <<< CROPS PERFECTLY LIKE YOUR SAMPLE */
    display: block;
}

/* HEADER */
header {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-bottom: 3px solid #f5d36b;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    color: #0a0f24;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #444;
    font-weight: 300;
}

/* MAIN WRAPPER (3 COLUMNS) */
.main-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* COLUMN BASE */
.column {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 18px rgba(0,0,0,0.08);
    flex: 1;
}

/* BLACK MUSIC COLUMN */
.black-column {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.black-column h2 {
    color: #fff;
}

.black-column a {
    background: #f5d36b !important;
    color: #000 !important;
}

/* ARTICLE SECTION */
.article-image img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid #0a0f24;
    margin-bottom: 20px;
}

.article-text h2 {
    color: #0a0f24;
    margin-bottom: 20px;
}

.article-text p {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* MUSIC SECTION */
.cd-same-size {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    border: 2px solid #f5d36b;
    display: block;
    margin: 0 auto 20px auto;
}

.stream-title {
    text-align: center;
    margin-bottom: 10px;
}

.stream-links {
    text-align: center;
}

.stream-links a {
    display: inline-block;
    margin: 6px 4px;
    padding: 10px 16px;
    background: #0a0f24;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* SHOP SECTION */
.shop-title {
    text-align: center;
    color: #0a0f24;
    margin-bottom: 20px;
}

.shop-item {
    text-align: center;
}

.shop-item img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.shop-item h3 {
    margin-bottom: 8px;
    color: #0a0f24;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.buy-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #f5d36b;
    color: #0a0f24;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

/* FOOTER */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .main-wrapper {
        flex-direction: column;
    }
}
