/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* ========== PAGE-SPECIFIC STYLES ========== */
/* Note: Les variables CSS et styles de base sont dans global.css */

:root {
    --telegram-blue: #0088cc;
    --discord-purple: #5865F2;
}

/* ========== PARTICLES ========== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('/assets/cta/logos/logo-m-or.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(var(--drift)) scale(1);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 10%; animation-duration: 25s; animation-delay: 0s; --drift: 50px; }
.particle:nth-child(2) { left: 20%; animation-duration: 30s; animation-delay: 3s; --drift: -30px; }
.particle:nth-child(3) { left: 30%; animation-duration: 28s; animation-delay: 6s; --drift: 40px; }
.particle:nth-child(4) { left: 40%; animation-duration: 32s; animation-delay: 2s; --drift: -20px; }
.particle:nth-child(5) { left: 50%; animation-duration: 27s; animation-delay: 8s; --drift: 60px; }
.particle:nth-child(6) { left: 60%; animation-duration: 29s; animation-delay: 4s; --drift: -40px; }
.particle:nth-child(7) { left: 70%; animation-duration: 26s; animation-delay: 7s; --drift: 30px; }
.particle:nth-child(8) { left: 80%; animation-duration: 31s; animation-delay: 1s; --drift: -50px; }
.particle:nth-child(9) { left: 90%; animation-duration: 28s; animation-delay: 5s; --drift: 20px; }
.particle:nth-child(10) { left: 15%; animation-duration: 30s; animation-delay: 9s; --drift: -60px; }
.particle:nth-child(11) { left: 25%; animation-duration: 27s; animation-delay: 11s; --drift: 45px; }
.particle:nth-child(12) { left: 35%; animation-duration: 29s; animation-delay: 13s; --drift: -55px; }
.particle:nth-child(13) { left: 45%; animation-duration: 26s; animation-delay: 15s; --drift: 60px; }
.particle:nth-child(14) { left: 55%; animation-duration: 31s; animation-delay: 8s; --drift: -35px; }
.particle:nth-child(15) { left: 65%; animation-duration: 28s; animation-delay: 14s; --drift: 50px; }

/* ========== HEADER STYLES MOVED TO global.css ========== */

/* ========== LANGUAGE SELECTOR ========== */
/* Les styles du language selector sont gérés par global.css */

/* ========== MAIN CONTENT ========== */
.main-content {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-royal);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: gradientShift 4s ease infinite;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--goa-text-secondary);
    line-height: 1.6;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 162, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 162, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 162, 255, 0.4);
}

.social-card.telegram:hover {
    border-color: var(--telegram-blue);
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.4);
}

.social-card.discord:hover {
    border-color: var(--discord-purple);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
}

.social-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.social-card.telegram .social-icon {
    color: var(--telegram-blue);
}

.social-card.discord .social-icon {
    color: var(--discord-purple);
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--goa-text-primary);
}

.social-description {
    font-size: 1.1rem;
    color: var(--goa-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.social-button:hover::before {
    left: 100%;
}

.social-button.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-button.telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
}

.social-button.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.social-button.discord:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

.info-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--goa-blue);
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1.1rem;
    color: var(--goa-text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-icon {
        font-size: 4rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .social-cards {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 2rem;
    }

    .social-icon {
        font-size: 4rem;
    }

    .social-title {
        font-size: 1.6rem;
    }
}

/* ========== FOOTER ========== */
/* Les styles du footer sont gérés par global.css */
