:root {
    --col-pink: #ff6b95;
    --col-black: #1a1a1a;
    --col-white: #ffffff;
    --col-pink-soft: #ffeef2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--col-pink-soft);
    color: var(--col-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    opacity: 0; /* Géré par le JS pour l'effet d'apparition */
    transition: opacity 0.8s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.maintenance-container {
    background: var(--col-white);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(255, 107, 149, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo {
    font-family: 'Shrikhand', cursive;
    font-size: 3.5rem;
    color: var(--col-pink);
    margin-bottom: 20px;
}

.title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--col-black);
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--col-black);
    font-size: 2rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--col-pink);
    transform: translateY(-5px);
}

.contact-text {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: var(--col-pink);
    font-weight: 700;
    text-decoration: none;
}