/* ---- Styles Généraux ---- */
body {
    font-family: 'Press Start 2P', cursive;
    /* NOUVEAU FOND D'ÉCRAN */
    background-color: #542700;
    background-image: url("https://www.transparenttextures.com/patterns/bright-squares.png");
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.section-title {
    font-size: 2em;
    color: #FFAA00; /* Or */
    text-shadow: 3px 3px #000;
    text-align: center;
    margin-bottom: 40px;
}

/* ---- Header & Navigation ---- */
.site-header {
    background-color: #1E1E1E;
    padding: 15px 0;
    border-bottom: 8px solid #3d1c00; /* Bordure plus foncée pour s'adapter au fond */
    text-align: center;
}
.site-header h1 {
    font-size: 2.8em;
    color: #FFAA00;
    margin: 0 0 15px 0;
    text-shadow: 4px 4px #000;
}
.site-nav ul { list-style: none; padding: 0; margin: 0; }
.site-nav li { display: inline-block; margin: 0 10px; }
.site-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1em;
    padding: 10px 15px;
    background-color: #6e3300; /* Couleur adaptée au nouveau fond */
    border: 3px solid #1E1E1E;
    box-shadow: inset 0 0 0 2px #9c4900;
    transition: background-color 0.2s;
}
.site-nav a:hover { background-color: #9c4900; }

/* ---- Section Héros ---- */
.hero-section {
    padding: 50px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2) url('https://www.transparenttextures.com/patterns/rocky-wall.png'); /* Texture pierre avec fond assombri */
    border-bottom: 8px solid #1E1E1E;
}
.hero-section h2 {
    font-size: 2.2em;
    margin: 0 0 10px 0;
    color: #FFFFFF;
    text-shadow: 3px 3px #000;
}

/* ---- Section des cartes ---- */
.maps-section { padding-top: 40px; }
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.map-card {
    background-color: #1E1E1E;
    border: 5px solid #000;
    box-shadow: inset 0 0 0 4px #3d1c00;
    padding: 20px;
    text-align: center;
}
.map-card img {
    max-width: 100%;
    border: 4px solid #542700;
    image-rendering: pixelated;
}
.map-card h3 {
    font-size: 1.4em;
    color: #FFAA00;
    margin: 20px 0 10px 0;
}

/* ---- Bouton style Minecraft ---- */
.btn {
    display: inline-block;
    background-color: #787878;
    color: #DDDDDD !important;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1em;
    border-top: 3px solid #A0A0A0;
    border-left: 3px solid #A0A0A0;
    border-right: 3px solid #555555;
    border-bottom: 3px solid #555555;
    margin-top: 20px;
    text-shadow: 2px 2px #383838;
    transition: all 0.2s;
}
.btn:hover {
    background-color: #00AA00; /* Vert */
    color: #FFFFFF !important;
    border-color: #00fa00 #006400 #006400 #00fa00;
}

/* ---- Sections À propos & Contact ---- */
.about-section, .contact-section {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border: 5px solid #000;
    box-shadow: inset 0 0 0 4px #3d1c00;
    margin-top: 50px;
    text-align: center;
}
.about-section p, .contact-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.email-link {
    color: #00AAAA; /* Cyan, comme les diamants */
    text-decoration: none;
    font-size: 1.2em;
}
.email-link:hover {
    text-decoration: underline;
}

/* ---- Footer ---- */
.site-footer {
    background-color: #1E1E1E;
    color: #AAAAAA;
    text-align: center;
    padding: 25px 0;
    border-top: 8px solid #3d1c00;
    margin-top: 50px;
}