/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 15px;
    color: #222;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f; /* Red branding accent */
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background-color: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b71c1c;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #d32f2f;
    color: #d32f2f;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #d32f2f;
    color: #fff;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 70px; /* Offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Bands Section */
.bands-section {
    padding: 80px 0;
}

.bands-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.band-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* Mobile first */
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .band-card {
        flex-direction: row;
    }

    .band-image {
        width: 50%;
    }

    .band-info {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.band-info {
    padding: 30px;
}

.tags {
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #555;
}

.band-notes {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
}

.contact-method {
    margin-top: 30px;
    font-size: 24px;
}

.email-link {
    color: #d32f2f;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}

.email-link:hover {
    border-bottom-color: #d32f2f;
}

/* Footer */
footer {
    background: #222;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
