/* Reset et styles de base */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Arial', sans-serif;
    color: #333;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fafafa;
}

/* Header */
header {
    background-color: #222;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.logo a {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-items {
    display: flex;
    gap: 1.5rem;
}

.menu-items li a {
    color: #fff;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.menu-items li a:hover {
    background: #f39c12;
    color: #fff;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-items {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 1rem;
        border-radius: 8px;
        z-index: 1001;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Section Bienvenue */
.welcome-section {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f4f4f4;
}

.welcome-section h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #555;
}

/* Section Nouveautés */
.news-section {
    padding: 2rem 1rem;
    background-color: #fff;
    text-align: center;
}

.news-section h2 {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.news-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.news-item h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.news-item p {
    font-size: 1rem;
    color: #555;
}

/* Section IP du serveur */
.server-info {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #333;
    color: #fff;
}

.server-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.server-info p {
    font-size: 1.2rem;
    color: #f39c12;
}

/* Section Image */
.featured-image {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
}

.featured-image h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 2px solid #f39c12;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-links ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f39c12;
}

.footer-socials a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #f39c12;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-socials a {
        font-size: 1.2rem;
    }
}




/* Page CGU */
.cgu-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cgu-header {
    text-align: center;
    padding: 2rem 0;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.cgu-header h1 {
    font-size: 2.2rem;
    color: #222;
}

.cgu-content {
    margin-top: 2rem;
}

.cgu-content article {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cgu-content article h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.cgu-content article p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

/* Responsive CGU */
@media (max-width: 768px) {
    .cgu-page {
        padding: 1rem;
    }

    .cgu-header h1 {
        font-size: 2rem;
    }

    .cgu-content article {
        padding: 1rem;
    }

    .cgu-content article h2 {
        font-size: 1.5rem;
    }
}
/* Page Sensibilisation */
.sensible-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sensible-header {
    text-align: center;
    padding: 2rem 0;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.sensible-header h1 {
    font-size: 2.2rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.sensible-header p {
    font-size: 1.2rem;
    color: #555;
}

.sensible-content article {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sensible-content article h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.sensible-content article p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

.sensible-content article ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.sensible-content article ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

/* Responsive Sensibilisation Page */
@media (max-width: 768px) {
    .sensible-page {
        padding: 1rem;
    }

    .sensible-header h1 {
        font-size: 2rem;
    }

    .sensible-content article {
        padding: 1rem;
    }

    .sensible-content article h2 {
        font-size: 1.5rem;
    }
}
/* Page Règlement */
.reglement-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reglement-header {
    text-align: center;
    padding: 2rem 0;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.reglement-header h1 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.reglement-header p {
    font-size: 1.2rem;
    color: #555;
}

.reglement-content article {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reglement-content article h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

.reglement-content article ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.reglement-content article ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.reglement-content article ul li strong {
    color: #f39c12;
    font-weight: bold;
}

/* Responsive Règlement Page */
@media (max-width: 768px) {
    .reglement-page {
        padding: 1rem;
    }

    .reglement-header h1 {
        font-size: 2rem;
    }

    .reglement-content article h2 {
        font-size: 1.8rem;
    }
}
/* Page Contact */
.contact-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    padding: 2rem 0;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
}

.social.facebook { background: #3b5998; }
.social.twitter { background: #1da1f2; }
.social.instagram { background: #c13584; }
.social.discord { background: #5865f2; }
.social.youtube { background: #ff0000; }

.social:hover {
    opacity: 0.9;
}

/* Formulaire de contact */
.contact-form {
    margin-top: 3rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f39c12;
    outline: none;
}

.contact-form button {
    padding: 0.8rem;
    font-size: 1.2rem;
    background: #f39c12;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #e08c00;
}
/* Section Numéros d'Assistance */
.assistance-numbers {
    background-color: #f4f4f4;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.assistance-numbers h2 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 1rem;
    text-align: center;
}

.assistance-numbers p {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 1rem;
}

.assistance-numbers ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.assistance-numbers ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.assistance-numbers ul li strong {
    color: #f39c12;
    font-weight: bold;
}
