/* GENERAL */
body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    font-family: Arial, sans-serif;
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background-color: #111;
    border-bottom: 2px solid #5e17eb;
}

header ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

header a:hover,
header .active {
    color: #5e17eb;
}

/* LOGO ANIMÉ */
#logo h2 {
    animation: pulseReiatsu 3s infinite ease-in-out;
    text-shadow: 0 0 15px #5e17eb;
}

@keyframes pulseReiatsu {
    0% { text-shadow: 0 0 10px #5e17eb; }
    50% { text-shadow: 0 0 25px #5e17eb; }
    100% { text-shadow: 0 0 10px #5e17eb; }
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .global-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-nav {
        justify-content: center;
        gap: 16px;
    }
}

@keyframes pulseReiatsu {
    0% { text-shadow: 0 0 10px #5e17eb; }
    50% { text-shadow: 0 0 25px #5e17eb; }
    100% { text-shadow: 0 0 10px #5e17eb; }
}

/* SECTION À PROPOS */
.apropos-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.apropos-section h1 {
    font-size: 42px;
    color: #5e17eb;
    text-shadow: 0 0 15px #5e17eb;
    margin-bottom: 40px;
}

/* CONTAINER PHOTO + TEXTE */
.apropos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.apropos-photo img {
    width: 250px;
    border-radius: 15px;
    border: 2px solid #5e17eb;
    box-shadow: 0 0 20px #5e17eb;
    transition: 0.3s;
}

.apropos-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px #5e17eb;
}

.apropos-text {
    max-width: 550px;
    text-align: left;
}

.apropos-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 18px;
    opacity: 0.95;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    border-top: 2px solid #5e17eb;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .apropos-container {
        flex-direction: column;
        gap: 20px;
    }

    .apropos-text {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .apropos-section h1 {
        font-size: 32px;
    }

    .apropos-text p {
        font-size: 16px;
    }

    .apropos-photo img {
        width: 200px;
    }
}


