html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* --- MARGE LATÉRALE GLOBALE --- */
main, section, .content {
    padding-left: 40px;
    padding-right: 40px;
}

/* --- LOGO ET HEADER --- */
.logo {
    max-height: 200px;
    display: block;
    margin: auto;
}

header, nav, main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* --- SECTIONS DE CONTENU --- */
.release {
    text-align: center;
    margin: 40px 0;
}

/* --- IMAGES --- */
.cover {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.album-grid img,
.gallery-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    margin: auto;
}

.album-grid img {
    max-height: 300px;
}

.gallery-grid img {
    max-height: 350px;
}

/* --- BOUTONS ET LIENS --- */
.outnow a {
    color: white;
    text-decoration: none;
    font-size: 2.5em;
    transition: color 0.3s ease;
}

.outnow a:hover {
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    background-color: #222;
    color: #aaa;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 60px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

/* Changement d'image au hover */
.instagram:hover { content: url("image-site-core/icons/logo-insta-noir.png"); }
.twitter:hover { content: url("image-site-core/icons/logo-twitter-noir.png"); }
.facebook:hover { content: url("image-site-core/icons/logo-facebook-noir.png"); }
.youtube:hover { content: url("image-site-core/icons/logo-youtube-noir.png"); }
.discord:hover { content: url("image-site-core/icons/logo-discord-noir.png"); }
.tiktok:hover { content: url("image-site-core/icons/logo-tiktok-noir.png"); }

/* --- NEWSLETTER --- */
.newsletter {
    background-color: #111;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.newsletter h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#newsletter-form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#newsletter-form input {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

#newsletter-form button {
    padding: 12px;
    font-size: 16px;
    background-color: #E50914;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#newsletter-form button:hover {
    background-color: #c40812;
}

#newsletter-msg {
    margin-top: 10px;
    font-size: 14px;
}

/* --- GRILLES --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.album-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.album-grid a:hover img {
    transform: scale(1.05);
}

/* --- ANIMATIONS AU SCROLL --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 600px) {
    .outnow a {
        font-size: 2rem;
    }
    footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-center {
        flex-direction: row;
    }
}
donation {
    padding: 12px;
    font-size: 16px;
    background-color: #29C235;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
