/* Importation de Google Font pour une meilleure typographie */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Style général */
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.8;
    padding: 20px;
    border: 12px solid #4CAF50; /* Bordure verte stylée */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3); /* Ombre verte douce */
}

/* En-tête */
header {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #4CAF50; /* Bordure verte subtile autour du contenu */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Articles */
.content {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8rem;
    color: #e65100;
    border-left: 5px solid #ff9800;
    padding-left: 10px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    color: #d84315;
    margin-top: 20px;
    text-decoration: underline;
}

/* Listes */
ul {
    list-style: none;
    padding-left: 15px;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Ajout d'icônes pour les listes */
ul li::before {
    content: "✔";
    color: #ff5722;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Liens */
a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Pied de page */
footer {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 0 10px 10px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 1rem;
}

.footer-content a {
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.footer-content a:hover {
    color: #ffe0b2;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .container {
        width: 95%;
        padding: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    ul li {
        font-size: 1rem;
    }
}

.btn-print {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 10px 25px;
  font-size: 16px;
  background: #004d40;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.btn-print:hover {
  background: #00352e;
}

/* Impression */
@media print {
  .btn-print {
    display: none !important;
  }