/* ==========================================================================
   GLOBAL STYLES & BACKGROUND
   ========================================================================== */
html {
    scroll-behavior: smooth; /* Smooth sliding transition to the form */
}

body {
    background-color: #d9ccde; /* MH */

    color: #111111;
    font-family: Georgia, "Times New Roman", Garamond, serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER & ABOUT BUTTON
   ========================================================================== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    width: 100%;
}

header h1 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-align: center;
}

header p {
    font-style: italic;
    opacity: 0.7;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.about-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    color: #111111;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    border: 1px solid #111111;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.about-btn:hover {
    background-color: #111111;
    color: #d1dbe5;
}

/* ==========================================================================
   ALBUM STRUCTURE (FLEXBOX)
   ========================================================================== */
.album-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

/* Remove border on the 4th album */
.album-row:nth-of-type(4) {
    border-bottom: none;
    padding-bottom: 0;
}

/* Left Column: Cover */
.album-cover {
    flex: 0 0 220px;
}

.album-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Right Column: Details & Tracks */
.album-details {
    flex: 1;
}

.album-details h2 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: normal;
    font-style: italic;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
}

/* Ultra-compact Tracklist */
.tracklist {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tracklist li {
    margin-bottom: 4px;
    line-height: 1.3;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
/* Main Bandcamp Button */
.bandcamp-btn {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 15px;
    background-color: #111111;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.bandcamp-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

/* Outline Pledge Shortcut Button */
.pledge-shortcut-btn {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: transparent;
    color: #111111;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    font-weight: bold;
    padding: 7px 15px;
    border: 1px solid #111111;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pledge-shortcut-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* Condensed Line-up Section */
.lineup-container {
    margin-top: 10px;
    opacity: 0.88;
}

.lineup-text {
    font-family: "Arial Narrow", "Helvetica Condensed", Arial, sans-serif;
    font-size: 0.9em;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   VINYL CAMPAIGN FORM
   ========================================================================== */
.vinyl-campaign-box {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 25px;
    margin-top: 50px;
    scroll-margin-top: 30px; /* Leave a small comfortable gap when scrolled to */
}

.vinyl-campaign-box h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: normal;
    color: #222;
}

.vinyl-campaign-box p {
    font-size: 0.95em;
    margin-bottom: 20px;
    opacity: 0.85;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}









.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea { /* Ajout du textarea ici */
    width: 100%;
    max-width: 400px;
    padding: 8px 12px;
    font-family: Georgia, serif;
    font-size: 1em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
}

/* Petit ajustement spécifique au textarea pour empêcher le redimensionnement sauvage */
.form-group textarea {
    resize: vertical; /* L'utilisateur peut l'agrandir de haut en bas, mais pas déformer la largeur */
    min-height: 80px;
}













.form-group-checkbox {
    margin: 20px 0;
}

.form-group-checkbox label {
    font-size: 0.9em;
    cursor: pointer;
}




.submit-btn {
    background-color: #111111;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    font-family: Georgia, serif;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 80px;
    font-size: 0.9em;
    opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 650px) {
    body {
        padding: 20px 15px;
    }

    header {
        padding-top: 40px;
    }

    .about-btn {
        position: relative;
        top: 0;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .album-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .album-cover {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    header h1 {
        font-size: 2em;
    }

    .pledge-shortcut-btn {
        margin-left: 0; /* Stack buttons on small phone screens */
    }

    .form-group input[type="text"],
    .form-group input[type="email"] {
        max-width: 100%;
    }
}


/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES (TWO COLUMNS)
   ========================================================================== */

/* Structure en 2 colonnes (Photos à gauche, Interview à droite) */
.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

/* Colonne de gauche (Photos) : prend 35% de la largeur */
.about-photos {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.photo-card {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.photo-card img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

.photo-caption {
    font-family: Arial, sans-serif;
    font-size: 0.8em;
    margin-top: 8px;
    margin-bottom: 0;
    opacity: 0.7;
    font-style: italic;
    text-align: center;
}

/* Colonne de droite (Interview) : prend le reste et reste bien serrée */
.about-interview {
    flex: 1;
    max-width: 460px; /* Force l'interview à rester serrée et très lisible */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/* Style des Questions (En gras) */
.question {
    font-weight: 700; /* Force le gras bien épais pour la police sans-serif */
    font-size: 1.05em;
    margin-top: 25px;
    margin-bottom: 6px;
    color: #000000;
}

/* Style des Questions - Version corrigée avec priorité forcée */
.about-interview .question {
    font-weight: bold !important;
    font-size: 1.05em;
    margin-top: 25px;
    margin-bottom: 6px;
    color: #000000;
}
/* Style des Réponses (Normal) */
.answer {
    margin-top: 0;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: justify; /* Optionnel : rend les blocs de texte très propres */
}

/* Listes à puces à l'intérieur de l'interview */
.interview-list {
    margin-top: -10px;
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 0.95em;
}

.interview-list li {
    margin-bottom: 8px;
}

.thanks-text {
    font-style: italic;
    font-weight: bold;
    margin-top: 40px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Bouton Retour (Même look que le bouton About) */

/* --- CORRECTION DU BOUTON RETOUR --- */
.back-btn {
    display: inline-block;
    color: #111111;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    font-weight: bold;
    border: 1px solid #111111;
    padding: 6px 16px;
    border-radius: 20px;
    margin-top: 35px;    /* NOUVEAU : Ajoute un bel espace AU-DESSUS du bouton */
    margin-bottom: 20px; /* Espace classique en dessous, vers le titre */
    transition: all 0.2s ease;
    align-self: center;
}
.back-btn:hover {
    background-color: #111111;
    color: #d1dbe5;
}

/* Adaptation Mobile pour la page About */
@media (max-width: 750px) {
    .about-wrapper {
        flex-direction: column-reverse; /* Met l'interview en haut et les photos en bas sur mobile */
        gap: 40px;
    }

    .about-photos {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-interview {
        max-width: 100%;
    }


}

