/* ============================================
   VARIABLES ET RESET
   ============================================ */
:root {
    --bg-space: #000000;
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --button-bg: rgba(255, 255, 255, 0.12);
    --button-text: #ffffff;
    --button-hover: rgba(255, 255, 255, 0.18);
    --border-radius: 8px;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-space);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 47, 189, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    opacity: 0;
    animation: page-fade-in 0.8s ease-out forwards;
}

@keyframes page-fade-in {
    to {
        opacity: 1;
    }
}

/* ============================================
   POINTS ANIMÉS (ÉTOILES)
   ============================================ */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s ease-in-out infinite, float 20s linear infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(-5px, -20px);
    }
    75% {
        transform: translate(-15px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* ============================================
   HORLOGE QUÉBEC
   ============================================ */
.quebec-clock {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.quebec-clock:hover {
    background: rgba(30, 30, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.clock-time {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.clock-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   CONTENEUR PRINCIPAL
   ============================================ */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.profile-card {
    width: 100%;
    max-width: 680px;
    padding: 3rem 2rem;
}

/* ============================================
   PROFIL
   ============================================ */
.profile-image {
    width: 192px;
    height: 192px;
    margin: 0 auto 1rem;
    padding: 4px;
    background: #ffffff;
    border-radius: 50%;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.profile-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* ============================================
   BOUTONS DE LIENS
   ============================================ */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--button-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    color: var(--button-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.link-button:hover {
    background: var(--button-hover);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.link-button:active {
    transform: scale(0.98);
}

.link-button i {
    font-size: 1.125rem;
    color: var(--button-text);
}

/* ============================================
   RÉSEAUX SOCIAUX
   ============================================ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.social-icon:active {
    transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: 2rem;
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
/* ============================================
   IN DEVELOPPEMENT BUTTON
   ============================================ */
.dev-button {
    cursor: default; /* pas cliquable */
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center; /* centrer le texte */
    gap: 1rem; /* espace entre texte et barre */
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    max-width: 320px;
    margin: 0 auto;
}

.dev-button:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.dev-text {
    text-align: center;
    flex-grow: 1; /* prendre l’espace disponible */
}

/* Barre animée */
.dev-bar {
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.7), rgba(255,255,255,0.3));
    animation: dev-slide 1.5s linear infinite;
    flex-shrink: 0;
}

/* Animation de la barre */
@keyframes dev-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .profile-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 1rem;
    }

    .quebec-clock {
        bottom: 1rem;
        left: 1rem;
        padding: 0.625rem 0.875rem;
    }

    .clock-time {
        font-size: 0.875rem;
    }

    .clock-label {
        font-size: 0.6875rem;
    }
}
.profile-card {
    width: 100%;
    max-width: 680px;
    padding: 3rem 2rem;
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: card-slide-up 0.8s ease-out;
}

@keyframes card-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}