/* glow de la souris*/
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(245, 119, 192, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 0, 150, 0.6);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
}

/* Logo navbar */
.navbar .logo {
    width: 10%;
    max-width: 80px;
    height: auto;
}

/* Animation du logo */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* PARALLAX (inchangé) */
.parallax {
    background-image: url('img/print2.png');
    height: 70vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 900px) {
    .parallax {
        height: 30vh;
        background-attachment: scroll;
    }
}

/* Logo centré */
.logo-animé {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
    max-width: 90vw;
}

@media screen and (max-width: 768px) {
    .logo-animé { height: 45vh; }
}

@media screen and (max-width: 480px) {
    .logo-animé { height: 30vh; }
}

/* TITRE */
.titre1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 40px auto;
    height: 20vh;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #ff8fcf, #ffc2e0);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 143, 207, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: fadeIn 1.5s ease-in-out, float 4s ease-in-out infinite alternate;
}

.titre1:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 143, 207, 0.6);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@media screen and (max-width: 900px) {
    .titre1 {
        font-size: 1rem;
        height: 12vh;
        width: 90%;
    }
}

/* CHECKLIST */
.checklist {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.clickable {
    font-size: 1.5rem;
    color: #ff69b4;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}

.clickable:hover {
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8),
                0 0 40px rgba(255, 105, 180, 0.5);
    transform: scale(1.1);
    background-color: #ffebf3;
}

/* BASE */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9 !important;
    color: #333;
}

header {
    background-color: #000;
    padding: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    width: 100px;
    animation: pulse 4s infinite;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.navbar .menu a:hover {
    color: #ffbce4;
}

/* SECTION PROFIL — VERSION OPTION PRO */
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    margin: 20px auto;
    max-width: 900px;

    background-image: url('img/print2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 0, 102, 0.1);
    overflow: hidden;
}

/* Surcouche blanche douce */
.profile-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    z-index: 0;
}

/* Contenu au-dessus */
.profile-container > * {
    position: relative;
    z-index: 1;
}

.profile-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffbce4;
    margin-left: 20px;
}

.profile-text {
    flex: 1;
}

/* Responsive profil */
@media screen and (max-width: 900px) {
    .profile-container {
        flex-direction: column;
        padding: 50px;
    }
}

/* FOOTER */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}
