/* --- VARIABLES --- */
:root {
    --bg-deep: #0a0a0a;
    --bg-panel: #141414;
    --accent: #00cccc;
    --accent-glow: rgba(0, 204, 204, 0.4);
    --text-main: #ffffff;
    --text-dim: #888888;
    --nav-height: 80px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.accent { color: var(--accent); }

/* --- HEADER --- */
header {
    height: var(--nav-height);
    background: var(--bg-panel);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 35px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* --- HERO SECTION --- */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-deep) 100%);
}

.hero h1 {
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.hero p {
    color: var(--text-dim);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
}

/* --- FOOTER --- */


.main-footer {
    background: linear-gradient(to top, #050505 0%, #111111 60%);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
    align-items: center; /* Aligne le milieu de chaque colonne sur la même ligne */
}

.footer-col h4 {
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px; /* Espace identique pour tout le monde */
    font-weight: 700;
    opacity: 0.9;
}

.footer-col p {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.9;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-logo {
    height: 45px;      /* Taille idéale pour l'équilibre visuel */
    width: auto;       /* Conserve les proportions du logo */
    display: block;    /* Évite les espaces vides sous l'image */
    margin-bottom: 15px; 
    filter: drop-shadow(0 0 8px var(--accent-glow));
}


.footer-col.branding {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Aligne le contenu verticalement */
    height: 100%;            /* Force la colonne à utiliser toute la hauteur */
}






/* Branding colonne gauche */
.footer-col.branding p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
}

/* Icônes sociales un peu plus "studio" */

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 0;
    align-items: center;
    justify-content: flex-start;
}

.social-links a {
    width: 36px;                /* ← Était 34px */
    height: 36px;               /* ← Était 34px */
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.25s ease;
    text-decoration: none;
    background: radial-gradient(circle at 30% 0%, rgba(0, 204, 204, 0.12), transparent 60%);
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 204, 204, 0.35);
}



/* Bouton contact plus premium */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 204, 204, 0);
}

.contact-button:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 204, 204, 0.5);
}

/* Ligne du bas */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 10px;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}









/* --- RESPONSIVE GLOBAL --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .social-links {
        justify-content: center;
        margin: 20px auto;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }
}