body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0px;
    background: #000000;
}

.main-home {
    background: #000000;
}

.banner-image {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 850px; /* Increase minimum height */
    box-sizing: border-box;
}

.banner-image img {
    width: 100%;
    height: 850px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    margin: 0;
    pointer-events: none;
    text-align: center;
    width: 90%;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    letter-spacing: 0.05em;
    color: #d4af37;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

@media screen and (max-width: 768px) {
    .banner-image {
        min-height: 600px; /* Keep a reasonable min height on mobile */
    }
    .banner-image img {
        height: 600px;     /* Match min-height for consistency */
    }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}
.section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #000000;
    padding: 70px 0;
}

/* News section spans full width with light grey background */
.section-alt {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #eaeaea;
    padding: 70px 0;
}

.tour {
    background: #000000;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.news {
    background: #eaeaea;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

/* Headings and paragraphs shared styles */
.tour h1,
.news h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c5c5c5;
    letter-spacing: 1.5px;
}

.tour p,
.news p {
    font-size: 1.1rem;
    color: #c5c5c5;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Allow news to have a different background if needed */
.news {
    border-radius: 10px;
    padding: 24px 0;
    color: #000000;
}

.news h1 {
    color: #000000;
}

.news p {
    color: #000000;
}

/* MUSIC SECTION */
.music-section {
    max-width: 1200px;         /* Increased width for 3 cards */
    margin: 48px auto;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
}

.music-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #c5c5c5;
    letter-spacing: 1.5px;
}

.music-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;         /* Increased width for 3 cards */
    margin: 0 auto;
}

.music-card {
    background: #eaeaea;
    /* border-radius: 12px; */
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 270px;
    height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 14px;
    transition: box-shadow 0.2s;
}

.music-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.music-card-content h2 {
    font-size: 1.15rem;
    margin: 0 0 20px 0;
    color: #333;
}

.music-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.music-btn:hover {
    background: #0078d7;
}