/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #fff; /* Fond blanc */
    color: #5e3d21; /* Couleur de texte brun pour correspondre au style de la pochette */
    padding: 1rem;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
    background-color: #fff; /* Fond blanc pour le conteneur */
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    margin: 1rem 0;
}

.logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

header h1 {
    font-size: 1.5em;
    color: #7a5230; /* Brun foncé pour le titre */
    font-weight: 600;
    margin-bottom: 0.3rem;
}

header h2 {
    font-size: 2em;
    color: #5e3d21; /* Texte brun foncé */
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.album-cover img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.album-cover img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 0.95em;
    margin-bottom: 1.5rem;
    color: #7a5230; /* Texte brun clair */
}

form input[type="text"] {
    padding: 12px;
    width: 100%;
    border: 1px solid #d2cfc1;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1em;
    background-color: #f9f7ed; /* Fond clair pour le champ de saisie */
    color: #5e3d21; /* Texte brun */
}

form input[type="text"]::placeholder {
    color: #a59483; /* Couleur beige pour le placeholder */
}

/* Bouton principal "Télécharger" */
form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #7a5230, #5e3d21); /* Dégradé brun */
    color: #fff; /* Texte blanc */
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

form button:hover {
    background: #5e3d21; /* Brun foncé pour le survol */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Boutons secondaires avec contour brun */
.extra-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
}

.extra-buttons .button {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.6); /* Transparence légère pour les boutons secondaires */
    color: #7a5230; /* Texte brun */
    text-decoration: none;
    border: 2px solid #7a5230; /* Bordure brun clair */
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.extra-buttons .button:hover {
    background-color: #eae6d9;
    color: #5e3d21; /* Texte plus foncé au survol */
    transform: translateY(-2px);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

/* Media Query pour les petits écrans */
@media (max-width: 600px) {
    .container {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .logo img {
        max-width: 100px;
    }
}
