/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.logo img {
    max-height: 50px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4444;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://source.unsplash.com/random/1920x1080/?concert') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff4444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff0000;
}

/* About Section */
.about {
    padding: 5rem 10%;
    background-color: #111;
}

.about h2 {
    font-family: 'Arial', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
}

.band-image {
    flex: 1;
}

.band-image img {
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.image-placeholder {
    background-color: #333;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Music Section */
.music {
    padding: 5rem 10%;
    background-color: #000;
}

.music h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.album {
    text-align: center;
}

.album-cover {
    margin-bottom: 1rem;
}

.album-cover img {
    height: 350px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.album h3 {
    margin-bottom: 0.5rem;
}

.stream-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff4444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.stream-button:hover {
    background-color: #ff0000;
}

/* Tour Section */
.tour {
    padding: 5rem 10%;
    background-color: #111;
}

.tour h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.tour-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-date {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.date {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.venue {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #888;
    margin-bottom: 1rem;
}

.ticket-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff4444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ticket-button:hover {
    background-color: #ff0000;
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background-color: #000;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff4444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background-color: #222;
    border: none;
    border-radius: 5px;
    color: #fff;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: #ff4444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #ff0000;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #111;
}

/* Responsive Design */
@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-content {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .logo {
        display: none;
    }
    .band-image {
        max-width: 90%;
    }
}

.bio {
    margin-top: 80px;
}

.bio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.bio-modal-content {
    background: #181818;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    color: #fff;
    position: relative;
    box-shadow: 0 0 20px #000;
}

.bio-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #ff4444;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 500px) {
    .bio-modal-content {
        max-width: 95vw;
        padding: 1rem;
    }
} 