/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    font-size: 10px;
    background-color: #f0ffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.logo {
    max-width: 50%;
    height: auto;
}

/* Bouton Admin */
.admin-button {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.admin-icon {
    width: 100%;
    height: auto;
    max-width: 80px;
    transition: transform 0.2s ease;
}

.admin-button:hover .admin-icon {
    transform: scale(1.1);
}

/* Espacements */
.empty-space {
    height: 75px;
    width: 100%;
}

/* Conteneur de contenu */
.content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Titres */
h2 {
    font-size: 2.2rem;
    color: #4DA6D6;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

h3 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 15px;
}

/* Paragraphes */
p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Articles */
.article {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.article-text {
    flex: 1;
    margin: 0 20px;
}

.article-text p {
    text-align: justify;
}

.article-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.article-image:hover {
    transform: scale(1.05);
}

/* Articles pairs/impairs */
.article:nth-child(odd) .article-image {
    order: 1;
    margin-right: 20px;
}

.article:nth-child(odd) .article-text {
    order: 2;
}

.article:nth-child(even) .article-image {
    order: 2;
    margin-left: 20px;
}

.article:nth-child(even) .article-text {
    order: 1;
}

/* Boutons généraux */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1.4rem;
}

.btn:hover {
    background-color: #0056b3;
}

/* Container général */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}