* {
    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;
    position: relative;
}

.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;
    font-weight: 500;
}

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: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3a5a52;
    color: #f5f0e8;
    font-size: 1.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #d4604d;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Couleurs spécifiques par réseau (optionnel) */
.social-links a:hover .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links a:hover .fa-facebook {
    color: #1877f2;
}

.social-links a:hover .fa-spotify {
    color: #1db954;
}

.social-links a:hover .fa-youtube {
    color: #ff0000;
}

.social-links a:hover .fa-bandcamp {
    color: #629aa9;
}
footer {
    background: #3a5a52;
    color: #f5f0e8;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #f4e5a5;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 1.5rem 0;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 5rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

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

    .albums {
        grid-template-columns: 1fr;
    }
}