/* General Styling */
:root {
    --primary-color: #A30000; /* Dark Red */
    --secondary-color: #000000; /* Black */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --accent-color: #FFD700; /* Gold/Yellow for highlights */
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1em;
}

h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1.5em;
    text-transform: uppercase;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.button:hover {
    background-color: var(--secondary-color);
}

.button-small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 10px;
}

.section-padded {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Header */
header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    color: var(--white);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('groupcropped.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure a good height */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--white);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.band-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 400px; /* Allows it to grow/shrink */
}

.about-content p {
    flex: 1 1 500px; /* Allows text to grow/shrink */
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.music-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.music-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.music-item iframe {
    width: 100%;
    margin-bottom: 15px;
}

.music-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

/* Tour Section */
.tour-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tour-item {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tour-item h3 {
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.3em;
}

.tour-item p {
    margin-bottom: 0.5em;
    color: #555;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1em;
}

.social-links {
    text-align: center;
    margin-top: 20px;
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
}

.social-links img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav {
        width: 100%;
        margin-top: 15px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default for mobile */
    }

    header nav ul.active {
        display: flex; /* Shown when active */
    }

    header nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        order: -1; /* Puts it before the h1 on smaller screens */
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .band-photo {
        margin-bottom: 20px;
    }

    .music-grid,
    .tour-dates {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px;
        min-height: 450px;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}