* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e3a;
    background: #f5f0e8;
}

header {
    background: #3a5a52;
    color: #f5f0e8;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #f5f0e8;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4c5b0;
}

.hero {
    background: linear-gradient(rgba(58, 90, 82, 0.3), rgba(44, 62, 58, 0.5)), url('../images/hero-band.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 8rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #d4604d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #b85440;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #3a5a52;
}

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

.album {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(58, 90, 82, 0.15);
    text-align: center;
    transition: transform 0.3s;
}

.album:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(58, 90, 82, 0.25);
}

.album-cover {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #d4c5b0 0%, #a8998a 100%);
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5a52;
    font-weight: bold;
}

.album h3 {
    color: #3a5a52;
    margin-bottom: 0.5rem;
}

.album p {
    color: #6b7e7a;
}

.concerts {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(58, 90, 82, 0.15);
}

.concert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d5;
}

.concert:last-child {
    border-bottom: none;
}

.concert-date {
    font-weight: bold;
    min-width: 120px;
    color: #3a5a52;
}

.concert-venue {
    flex: 1;
    padding: 0 1rem;
    color: #2c3e3a;
}

.concert-venue strong {
    color: #3a5a52;
}

.about {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(58, 90, 82, 0.15);
    line-height: 1.8;
}

.about p {
    color: #2c3e3a;
}

.contact {
    text-align: center;
}

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

.social-links a {
    color: #3a5a52;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.social-links a:hover {
    color: #d4604d;
}

footer {
    background: #3a5a52;
    color: #f5f0e8;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .concert {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}