/* Style général pour toutes les pages */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Images de fond spécifiques pour chaque page */
body.home {
    background-image: url('images/background.jpg');
}

body.abri {
    background-image: url('images/abri.jpg');
}

body.nourriture {
    background-image: url('images/nourriture.jpg');
}

body.eau {
    background-image: url('images/eau.jpg');
}

body.feu {
    background-image: url('images/feu.jpg');
}

body.orientation {
    background-image: url('images/orientation.jpg');
}

body.ressources {
    background-image: url('images/ressources.jpg');
}

/* Style pour rendre le contenu plus lisible */
main {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.8); /* Fond semi-transparent pour améliorer la lisibilité */
    margin: 20px auto;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

nav a {
    color: #ffcb47;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #fffae3;
}

h1, h2 {
    color: #ffcb47;
    margin-bottom: 20px;
}

p, ul {
    text-align: justify;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.8;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #fffae3;
    border-top: 2px solid #ffcb47;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

