/* Variables globales */
:root {
    --primary-color: #9FE870;
    --dark-bg: #1A1D21;
    --text-color: #FFFFFF;
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: var(--font-regular);
}

/* Sélecteur de langue */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 2rem;
    background-color: rgba(15, 17, 19, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switcher a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0.2rem 0.5rem;
}

.lang-switcher a:hover {
    opacity: 1;
}

.lang-switcher a.active {
    color: var(--primary-color);
    opacity: 1;
    font-weight: var(--font-bold);
}

.lang-switcher .separator {
    color: var(--text-color);
    opacity: 0.3;
}

/* Header */
header {
    padding: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Hero section avec superposition d'images */
.hero {
    margin-bottom: 4rem;
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    position: absolute;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.header-image {
    position: relative;
    z-index: 1;
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.vision {
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.vision h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: var(--font-extrabold);
    letter-spacing: -0.05em;
}

.vision p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: var(--font-light);
}

/* Bouton CTA */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FFFFFF;
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--font-bold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0f1113;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Section CTA / Apps */
.cta {
    margin-bottom: 4rem;
    padding: 2rem;
}

.cta h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: var(--font-extrabold);
    letter-spacing: -0.05em;
}

.cta h5 {
    margin-top: 0.2rem;
    font-size: 1.2rem;
    font-weight: var(--font-extrabold);
    color: var(--text-color);
}

.cta .button {
    padding: 0;
    background: none;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta .Apps {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.cta .button:hover .Apps {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .lang-switcher {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin: 1rem auto 0;
        width: fit-content;
    }

    header {
        padding-top: 1rem;
    }

    .hero {
        height: 30vh;
        min-height: 400px;
    }

    .header-image {
        max-width: 95%;
    }

    .vision p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta .Apps {
        width: 160px;
        height: 160px;
    }

    .cta h5 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 140px;
    }

    .hero {
        height: 20vh;
        min-height: 180px;
    }

    .vision h2 {
        font-size: 1.5rem;
    }

    .cta .Apps {
        width: 100px;
        height: 100px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
    .lang-switcher a {
               font-size: 0.6rem;
    }
    .lang-switcher {
        padding: 0.2rem 0.3rem;
        gap: 0.1rem;
    }
} 