body {
    background-color: #1a1a1a;  /* Darker background (almost black) */
    padding-top: 2rem;
}

.band-logo {
    max-width: 200px !important;  /* Increased from 150px */
    width: 200px !important;      /* Increased from 150px */
    height: auto;                 /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;  /* Add space below logo */
}

/* Adjust the container spacing and background */
.container.py-5 {
    padding-top: 2rem !important;
    background-color: rgba(44, 62, 80, 0.95);  /* Dark blue-grey background with high opacity */
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);  /* Enhanced glow effect */
}

/* Make logo container match new size */
.text-center.mb-5 {
    margin-bottom: 1.5rem !important;
    max-width: 200px;            /* Increased from 150px */
    margin-left: auto;
    margin-right: auto;
}

.gig-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);  /* Enhanced shadow for depth */
}

.booking-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);  /* Enhanced shadow for depth */
}

.booking-info a {
    color: #0d6efd;
    text-decoration: none;
}

.booking-info a:hover {
    text-decoration: underline;
}

/* Gigs section styling */
.gigs-section h2 {
    font-size: 1.75rem;  /* Slightly smaller than default h2 */
    color: #ffffff;  /* White text for headers */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* Add shadow for better contrast */
    font-weight: 600;  /* Make text slightly bolder */
    background-color: rgba(0, 0, 0, 0.3);  /* Semi-transparent background */
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.gig-card h3 {
    font-size: 1.2rem;  /* Reduce date text size */
}

.gig-card h4 {
    font-size: 1.1rem;  /* Reduce venue text size */
}

.gig-card p {
    font-size: 0.95rem;  /* Slightly smaller than default paragraph */
}

/* Booking section styling */
.booking-info h2 {
    font-size: 1.75rem;  /* Match gigs section header */
    color: #ffffff;  /* White text for headers */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.booking-info .lead {
    font-size: 1.1rem;  /* Reduce lead paragraph size */
}

.booking-info p {
    font-size: 0.95rem;  /* Match gigs text size */
}