@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* [START] Animation de chargement */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ff204e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}





/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu */
    button#mobile-menu.menu-toggle {
      display: block;
    }

    ul.navbar {
      display: none;
      flex-direction: column;
      background-color: var(--light-bg);
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 1rem;
    }

    ul.navbar.active {
      display: flex;
    }

    .dark-theme ul.navbar {
      background-color: var(--dark-bg);
    }

    /* Adjust Container Padding */
    div.container {
      padding: 1rem;
    }

    /* Sidebar */
    aside#sidebar {
      margin-top: 1rem;
    }
  }
/* Like Button Section */
section.like-button-section {
    text-align: center;
    margin-top: 3rem;
}

div#like-buttons {
    margin-top: 1.5rem;
}

.like-button {
    padding: 10px 20px;
    background-color: #ff204e;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.like-button-section {
    margin-top: 20px;
    text-align: center;
}

.like-button:hover {
    background-color: #a0153e;
}

/* [START] Bouton J'aime */
span#like-count {
    font-size: 1rem;
    margin-left: 0.5rem;
    color: #333;
}

button#like-button {
    background-color: #ff204e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#like-button:hover {
    background-color: #a0153e;
}

button.like-button {
    background-color: #ff204e;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

button.like-button:hover {
    background-color: #a0153e;
}
div#logo {
    text-align: center;
}

div#logo h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* Bouton d'action */
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #FF204E;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #A0153E;
}

/* [START] Formulaire de commentaire */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

section#comments {
    margin-top: 3rem;
}

section#comments form {
    margin-top: 1rem;
}

section#comments form button {
    background-color: #ff204e;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section#comments form button:hover {
    background-color: #a0153e;
}

section#comments form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Comments Section Styles */
section.comments-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

section.comments-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* [START] Styles de boutons "J'aime" et "Commenter" */
button.comment {
    background-color: #ff204e;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.comment:hover {
    background-color: #a0153e;
}

section#comments h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comment-form button {
    padding: 10px;
    background-color: #ff204e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

form.comment-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 2rem;
}

form.comment-form button {
    background-color: #ff204e;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

form.comment-form button:hover {
    background-color: #a0153e;
}

form.comment-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

form.comment-form textarea#comment {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.comment-form button:hover {
    background-color: #a0153e;
}

div.comment {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

div.comment h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

div.comment p {
    font-size: 1rem;
    color: #666;
}

div.comment p strong {
    font-weight: bold;
}

div.existing-comments {
    margin-top: 3rem;
}

.comment-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.comment-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* [START] Section commentaires */
.comments-section {
    margin-top: 40px;
}

.comments-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.container {
    width: 95%;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* [START] Commentaires existants */
.existing-comments {
    margin-top: 30px;
}

.existing-comments .comment {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #ff204e;
    border-radius: 8px;
}

.existing-comments .comment h3 {
    font-size: 1.3rem;
    margin: 0;
}

.existing-comments .comment p {
    font-size: 1rem;
    color: #666;
}

.existing-comments .comment p strong {
    font-weight: bold;
}

.footer {
    background-color: #00224d;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column a:hover {
    color: #FF204E;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Liens du footer */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

/* [END] Footer Styles */
.footer-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 0 auto;
    max-width: 1200px;
    padding: 1rem;
}

div.footer-copyright {
    margin-top: 2rem;
}

div.footer-copyright p {
    font-size: 1rem;
}

/* [START] Footer Styles */
footer {
    /* padding: 30px 0; */
    /* background: #00224D; */
    background-color: #00224d;
    color: #fff;
    color: white;
    padding: 2rem 0;
    text-align: center;
    /* padding: 20px; */
}

/* [START] Footer */
footer .footer-container {
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

footer .footer-copyright {
    font-size: 0.8rem;
    margin-top: 20px;
    font-size: 0.9rem;
}

footer .footer-nav ul {
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-nav ul li {
    margin-bottom: 10px;
    margin-bottom: 0;
}

footer .footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

footer .footer-nav ul li a:hover {
    color: #ff204e;
}

footer .social-media a {
    font-size: 1rem;
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #ff204e;
    text-decoration: underline;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer nav ul li {
    margin-right: 20px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

footer p {
    margin-top: 1rem;
    font-size: 1rem;
    margin-top: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
}

footer ul li {
    display: inline-block;
    margin: 0 1rem;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

footer ul li a:hover {
    color: #ff204e;
}

/* QR Code */
.qr-code {
    width: 100px;
    height: auto;
}

/* Main Content Styles */
main {
    /* padding: 2rem; */
    padding: 40px 10%;

    display: flex;
    justify-content: space-between;
    margin: 20px;
}

/* [START] Sidebar Styles */
main {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

#articles {
    flex: 1;
    margin-right: 20px;
}

header {
    /* background-color: #ff8b94; */
    background: linear-gradient(135deg, #ffb6c1, #add8e6, #ffebcd);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-right: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.header_2 {
    /* background-color: #ff8b94; */
    background: linear-gradient(135deg, #ffb6c1, #add8e6, #ffebcd);
    color: white;
    padding: 10px 20px;
    margin-top: 50px;
    max-width: 800px;
    display: flex;
    border-radius: 5px 15px 75px 5px;
    justify-content: space-between;
    align-items: center;
}

/* Ajout d'un style de base pour la      et la responsivité */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* [START] Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .social-media a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

footer .social-media a:hover {
    text-decoration: underline;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer nav ul li {
    margin-right: 20px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

#sidebar {
    width: 250px;
    padding: 20px;
    background-color: #ffd0d4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: aqua solid 1px;
}

#sidebar form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
}

#sidebar form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#sidebar h4 {
    font-size: 1.4em;

    font-family: 'Nunito', sans-serif;
    margin-top: 25px;
    color: rgb(172, 98, 179);
    font-weight: bold;
    text-transform: uppercase;
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

#sidebar ul li {
    margin-bottom: 10px;
}

#sidebar ul li a {
    text-decoration: none;
    font-size: 0.9em;
    margin-bottom: 15px;
    color: rgb(140, 34, 189);
    font-weight: 400;

}

#sidebar ul li a:hover {
    text-decoration: none;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: rgb(216, 77, 163);
    font-weight: 700;
    transform: translateY(25px);
}

/* Responsivité */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: center;
    }

    #sidebar {
        width: 100%;
        margin-top: 20px;
    }

    header nav ul {
        display: none;
    }

    header #logo h1 {
        font-size: 1.5em;
    }

    #sidebar-toggle {
        display: block;
        background-color: #333;
        color: white;
        padding: 10px;
        text-align: center;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    #sidebar.hidden {
        display: none;
    }
}



/* pastel-colors.css */
:root {
    --font-family: 'Nunito', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --heading-line-height: 1.2;
    --paragraph-indent: 20px;
    --spacing-unit: 20px;
    --border-radius: 8px;

    /* --primary-color: #e6a8a8; Vert pastel */
    --primary-color: #00224D; /* Vert pastel */
    --secondary-color: #ffd3b6; /* Orange pastel */
    --accent-color: #ff8b94; /* Rose pastel */
    --text-color: #0c0913; /* Gris foncé */
    --muted-text-color: #7f8c8d; /* Gris moyen */
    --background-color: #f9f9f9; /* Fond clair */
    --footer-background-color: #ff8b94; /* Fond sombre pour le footer */
    --card-background: white; /* Fond des cartes */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Couleur de l'ombre */
}

[data-theme="dark"] {
    --primary-color: #b2f2bb; /* Vert clair pastel */
    --secondary-color: #ffc9c9; /* Rose clair pastel */
    --accent-color: #ff8787; /* Rouge clair pastel */
    --text-color: #f5f6fa; /* Texte clair */
    --muted-text-color: #b2bec3; /* Texte gris clair */
    --background-color: #2d3436; /* Fond sombre */
    --footer-background-color: #1e272e; /* Fond très sombre */
    --card-background: #34495e; /* Fond des cartes */
    --shadow-color: rgba(255, 255, 255, 0.1); /* Ombre claire */
}

body {
    font-family: var(--font-family);
    /* background-color: var(--background-color); */
    background: linear-gradient(135deg, #ec99ecb6, #add8e698, #ffebcd);
    color: var(--text-color);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
}

header.header {
    background-color: var(--primary-color);
    padding: var(--spacing-unit);
    text-align: center;
    color: white;
    box-shadow: 0 4px 6px var(--shadow-color);
}

header.header h1 {
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 2.5);
    line-height: var(--heading-line-height);
    margin: 0;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 0.875);
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: background-color 0.3s, transform 0.2s;
}

.theme-toggle:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-unit);
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.article-content h2 {
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 2);
    line-height: var(--heading-line-height);
    color: var(--primary-color);
    margin-top: calc(var(--spacing-unit) * 2);
}

.article-content p {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);

    text-indent: var(--paragraph-indent);
    margin-bottom: var(--spacing-unit);
}

.article-content h3 {
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 1.5);
    line-height: var(--heading-line-height);
    color: var(--secondary-color);
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.article-content p.text-muted {
    color: var(--muted-text-color);
    font-size: calc(var(--font-size-base) * 0.875);
}

.cta {
    background-color: var(--accent-color);
    color: white;
    padding: var(--spacing-unit);
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px var(--shadow-color);
}

.cta a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 1.125);
}

footer.footer {
    background-color: var(--footer-background-color);
    padding: var(--spacing-unit);
    text-align: center;
    color: white;
    margin-top: calc(var(--spacing-unit) * 2);
    box-shadow: 0 -4px 6px var(--shadow-color);
}

footer.footer p {
    font-family: var(--font-family);
    font-size: calc(var(--font-size-base) * 0.875);
    line-height: var(--line-height-base);
    margin: 0;
}

@media (max-width: 768px) {
    .article-content {
        padding: calc(var(--spacing-unit) * 0.75);
    }

    header.header h1 {
        font-size: calc(var(--font-size-base) * 2);
    }

    .article-content h2 {
        font-size: calc(var(--font-size-base) * 1.75);
    }

    .article-content h3 {
        font-size: calc(var(--font-size-base) * 1.25);
    }
}

/* Root System avec des couleurs pastels et dégradés doux */
:root {
    --primary-color: #ffb6c1; /* Rose pastel */
    --secondary-color: #add8e6; /* Bleu pastel */
    --tertiary-color: #ffebcd; /* Beige pastel */
    --text-color: #ffffff;
    --hover-color: #ff69b4; /* Rose vibrant */
    --neon-color: #7ba9ffbe; /* Couleur néon */
    --gradient-bg: linear-gradient(135deg, #ffb6c1, #add8e6, #ffebcd);
    --border-glow: 0 0 10px var(--neon-color);
    --transition: all 0.3s ease-in-out;
}

/* Navbar */
nav {
    margin-top: 1rem;
    text-align: center;
    background: var(--gradient-bg);
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: var(--border-glow);
    transition: var(--transition);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Effet hover avec bordure brillante */
nav ul li a:hover {
    background-color: var(--hover-color);
    box-shadow: 0 0 10px var(--hover-color), 0 0 40px var(--hover-color);
}

/* Effet neon au clic */
nav ul li a:active {
    box-shadow: 0 0 15px var(--neon-color), 0 0 50px var(--neon-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;

}

.dropdown-content {
    margin-top: 5px;
    display: none;
    position: absolute;
    background: var(--gradient-bg);
    min-width: 180px;
    box-shadow: var(--border-glow);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--hover-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Menu Hamburger (Mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

/* Icônes des barres du menu burger */
.bar {
    width: 30px;
    height: 4px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Animation d'ouverture et de fermeture du menu burger */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        background: var(--gradient-bg);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        display: none;
        box-shadow: var(--border-glow);
        border-radius: 0 0 10px 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }
}

/* Animation de fondu pour le dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet Neon Pulse */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 5px var(--neon-color);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-color), 0 0 40px var(--neon-color);
    }
    100% {
        box-shadow: 0 0 5px var(--neon-color);
    }
}

nav ul li a:focus {
    animation: neonPulse 1s infinite alternate;
}


#articles {
    flex: 1;
    margin-right: 20px;
}

section#article {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

section#article h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section#article p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

section#articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-article {
    background: white;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.grid-article h3 {
    margin-top: 10px;
}

.grid-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.grid-article.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-article.wide {
    grid-column: span 2;
}

.grid-article:hover {
    transform: translateY(-5px);
}

/* [START] Grid Asymétrique */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(850px, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 150px;
}

/* [START] Article */
article {
    padding: 15px;
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

article h2 {
    font-size: 2rem;
    color: #760d80;
    font-family: 'Nunito', sans-serif;
}

article p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

article.blog-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

article.blog-post h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

article.blog-post h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    color: #00224d;
    font-weight: 600;
}

article.blog-post h3 a:hover {
    color: #ff204e;
}

article.blog-post p {
    font-size: 1rem;
    color: #666;
    font-size: 1.2rem;
    color: #555;
}

article.blog-post:hover {
    transform: translateY(-5px);
}


/* [START] Global Styles */
p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #A0153E;
}

/* General reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h1 a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

h2 {
    color: #00224D;
}

a:hover {
    text-decoration: none;
}

.custom-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote {
    background-color: #ff8b94;
    border-left: 5px solid #FF204E;
    padding: 10px 20px;
    font-style: italic;
    font-size: 1.2em;
}


/* Hero Section Styles */
section#hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    color: white;
    padding: 100px 20px;
}


section#hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 2rem;
    font-size: 3rem;
    margin-top: 20px;
}


section#hero img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}


section#hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.6;
    font-size: 1.5rem;
    margin-top: 10px;
}


/* [START] Hero Section */
#hero {
    position: relative;
    /* height: 60vh; */
    background: url('hero-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    height: 80vh;
    /* background: url('banner.jpg') center/cover no-repeat fixed; */
}

#hero .parallax {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

#hero h1 {
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Overlay pour améliorer la lisibilité */
.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Assombrit l’image pour un meilleur contraste */
    padding: 2rem;
    border-radius: 10px;
}


/* Container */
div.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

  /* Article Section */
  section.article-section {
    margin-bottom: 2rem;
  }

  /* h2.article-title {
    color: var(--light-primary);
  } */

  /* .dark-theme h2.article-title {
    color: var(--dark-primary);
  } */

  /* p.content {
    color: var(--light-text);
  } */

  /* .dark-theme p.content {
    color: var(--dark-text);
  } */

  blockquote.quote {
    border-left: 4px solid var(--light-primary);
    padding-left: 1rem;
    font-style: italic;
    color: var(--light-text);
  }

  .dark-theme blockquote.quote {
    border-color: var(--dark-primary);
    color: var(--dark-text);
  }

  /* Call-to-Action */
  div.cta {
    text-align: center;
    margin: 2rem 0;
  }

  div.cta p a {
    background-color: var(--light-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
  }

  .dark-theme div.cta p a {
    background-color: var(--dark-primary);
  }


