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

body {
    font-family: 'Times New Roman', Times, serif;
    color: #2c2c2c;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
}

/* Fond de coupures de journaux */
.newspaper-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f5f1e8;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        );
}

/* Effet de papier journal vieilli */
.newspaper-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(139, 119, 101, 0.03) 49%, rgba(139, 119, 101, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 119, 101, 0.03) 49%, rgba(139, 119, 101, 0.03) 51%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.4;
}

/* Simulation de texte de journal en arrière-plan */
.newspaper-bg::after {
    content: 'ACTUALITÉS ★ INFORMATION ★ NOUVELLES ★ ÉDITION SPÉCIALE ★ REPORTAGE ★ CHRONIQUE ★ ÉDITO ★ ENQUÊTE ★ DOSSIER ★ FAITS DIVERS ★ CULTURE ★ SOCIÉTÉ ★ ACTUALITÉS ★ INFORMATION ★ NOUVELLES ★ ÉDITION SPÉCIALE ★ REPORTAGE ★ CHRONIQUE ★ ÉDITO ★ ENQUÊTE ★ DOSSIER ★ FAITS DIVERS ★ CULTURE ★ SOCIÉTÉ ★ ACTUALITÉS ★ INFORMATION ★ NOUVELLES ★ ÉDITION SPÉCIALE ★ REPORTAGE ★ CHRONIQUE ★ ÉDITO ★ ENQUÊTE ★ DOSSIER ★ FAITS DIVERS ★ CULTURE ★ SOCIÉTÉ ★ ACTUALITÉS ★ INFORMATION ★ NOUVELLES ★ ÉDITION SPÉCIALE ★ REPORTAGE ★ CHRONIQUE ★ ÉDITO ★ ENQUÊTE ★ DOSSIER ★ FAITS DIVERS ★ CULTURE ★ SOCIÉTÉ ★';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    font-size: 11px;
    line-height: 2;
    color: rgba(139, 119, 101, 0.08);
    word-wrap: break-word;
    transform: rotate(-5deg);
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

/* Header */
header {
    background-color: rgba(44, 44, 44, 0.95);
    color: #f5f1e8;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid #8b7765;
}

header h1 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 2.2em;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    margin: 5px;
}

nav ul li a {
    color: #f5f1e8;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #8b7765;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #8b7765;
    color: #2c2c2c;
    transform: translateY(-2px);
}

/* Main content */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 3px solid #8b7765;
    position: relative;
}

.content-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #8b7765, #6d5d4b);
    z-index: -1;
    border-radius: 5px;
}

h2 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 2.2em;
    font-weight: normal;
    margin-bottom: 20px;
    color: #ff8c00;
    border-bottom: 3px solid #8b7765;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 1.6em;
    font-weight: normal;
    margin: 20px 0 12px 0;
    color: #ff8c00;
}

p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Articles */
article {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #ccc;
}

article:last-child {
    border-bottom: none;
}

.date {
    font-style: italic;
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
}

/* Archives */
.archive-list {
    display: grid;
    gap: 25px;
}

.archive-item {
    padding: 25px;
    background-color: #faf8f3;
    border-left: 5px solid #8b7765;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Formulaire de contact */
.contact-form {
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c2c2c;
    font-size: 1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #8b7765;
    border-radius: 3px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    background-color: #faf8f3;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6d5d4b;
    background-color: #fff;
}

button[type="submit"] {
    background-color: #8b7765;
    color: #f5f1e8;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #6d5d4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info {
    background-color: #faf8f3;
    padding: 25px;
    border-radius: 3px;
    border-left: 5px solid #8b7765;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: rgba(44, 44, 44, 0.95);
    color: #f5f1e8;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 4px solid #8b7765;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
        letter-spacing: 2px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .content-box {
        padding: 25px;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    h3 {
        font-size: 1.4em;
    }
}

/* Lecteur audio */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.audio-btn {
    background-color: rgba(139, 119, 101, 0.95);
    color: #f5f1e8;
    border: 2px solid #6d5d4b;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.audio-btn:hover {
    background-color: rgba(109, 93, 75, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#audioIcon {
    font-size: 1.2em;
}

/* Page d'accueil - Présentation de l'album */
.album-presentation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.story-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid #8b7765;
}

.story-content {
    background-color: #faf8f3;
    padding: 25px;
    border-left: 5px solid #ff8c00;
    border-radius: 3px;
}

.story-content p {
    margin-bottom: 15px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.album-cover {
    text-align: center;
}

.dvd-format {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 3px solid #8b7765;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #e8e0d5;
    display: block;
    margin: 0 auto;
}

.cover-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.album-text h2 {
    margin-top: 0;
}

/* Page Discographie */
.album-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px dashed #ccc;
}

.album-item:last-child {
    border-bottom: none;
}

.album-cover-disco {
    text-align: center;
}

.album-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 3px solid #8b7765;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #e8e0d5;
}

.cover-placeholder {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 0.85em;
}

.album-info h3 {
    margin-top: 0;
    font-size: 1.8em;
    color: #2c2c2c;
}

.album-year {
    font-size: 1em;
    color: #8b7765;
    font-weight: bold;
    margin-bottom: 12px;
}

.album-description {
    margin-bottom: 20px;
    line-height: 1.7;
}

.bandcamp-link {
    display: inline-block;
    background-color: #8b7765;
    color: #f5f1e8;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.bandcamp-link:hover {
    background-color: #6d5d4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.availability {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Liste d'instruments */
.instruments-list {
    list-style: none;
    padding-left: 0;
}

.instruments-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0d5c7;
    line-height: 1.6;
}

.instruments-list li:last-child {
    border-bottom: none;
}

/* Page Contact */
.email-contact {
    font-size: 1.1em;
    margin-top: 20px;
}

.email-contact a {
    color: #8b7765;
    text-decoration: none;
    font-weight: bold;
}

.email-contact a:hover {
    color: #6d5d4b;
    text-decoration: underline;
}

/* Responsive - Album presentation */
@media (max-width: 768px) {
    .album-presentation {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .album-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dvd-format,
    .album-image {
        max-width: 200px;
    }
}

