/* --- GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    /* background: linear-gradient(135deg, #bbe2f0, #f3f6f6); */
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
    color: #3b3b3b;
    min-height: 100vh;
}

/* Animation du gradient */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- WRAPPER --- */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

/* --- CARD (glassmorphism) --- */
.card {
    max-width: 900px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    text-align: center;
}

/* --- LOGO --- */
.logo {
    width: inherit;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* --- TITRES --- */
h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #618e93;
}

h2 {
    margin-top: 40px;
    font-size: 1.7rem;
    font-weight: 600;
}

h3 {
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 500;
}

/* --- TEXTES --- */
p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 10px 0;
}

.quote {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* --- EXPERTISE --- */
.expertise {
    margin-top: 20px;
    text-align: left;
}

.item {
    margin-bottom: 20px;
}

a, a:active, a:visited {
    color: #225a5c;
    text-decoration: none;
}

a:hover {
    color: #419396;
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .card {
        padding: 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        width: inherit;
        height: 130px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    .card {
        padding: 20px;
    }
}
