/* ==========================================================
   1. VARIABLES & CONFIGURATION
   ========================================================== */
:root {
    --primary: #ff6600; /* Or / Orange */
    --primary-gradient: linear-gradient(45deg, #ff8c00, #ff4500);
    --bg-dark: #0a0a0a;
    --bg-alt: #111111;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Michroma', sans-serif;
    --transition: 0.3s ease;
}

/* ==========================================================
   2. RESET & BASES
   ========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { 
    font-family: var(--font-title); 
    overflow-wrap: break-word; 
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* Utilitaires */
.container { padding: 80px 10%; }
.text-center { text-align: center; }
.gold { color: var(--primary); }

/* ==========================================================
   3. NAVIGATION
   ========================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold;
    letter-spacing: 2px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.logo i, 
.logo span { color: var(--primary); }
.logo:hover { opacity: 0.8; }
.logo i { font-size: 1.4rem; transition: var(--transition); }

.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a:hover { color: var(--primary); }

.lang-switch {
    font-weight: bold;
    color: var(--primary); /* Utilise la variable orange */
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-switch:hover {
    background: var(--primary) !important;
    color: #000 !important;
}

/* ==========================================================
   4. HERO & BOUTONS
   ========================================================== */
.hero {
    height: 100vh;
    background: url('images/glambot-cannes.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 4rem; letter-spacing: 5px; margin-bottom: 20px; }

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: white;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
}

.cta-button:hover { 
    background: white; 
    color: black; 
    transform: scale(1.05); 
}

/* ==========================================================
   5. SECTIONS & GRILLES
   ========================================================== */
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
.alt-bg { background-color: var(--bg-alt); padding: 100px 10%; }

.concept-container { 
    display: flex; 
    align-items: center; 
    gap: 40px;
    justify-content: space-between;
}

.concept-text { flex: 2; }
.concept-video-container { flex: 1; }

.concept-video-container video, .concept-video-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

@media (max-width: 992px) {
    .concept-container {
        flex-direction: column;
    }
    .concept-text, .concept-video-container {
        width: 100%;
    }
}

.grid, .video-grid { 
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1090px;
    margin: 20px auto 0;
    align-items: stretch; 
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px; 
    flex: 1 1 300px; 
    transition: var(--transition); 
}

.service-card i {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card:hover {
    border-bottom: 3px solid var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 350px;
    flex: 1 1 300px;
}

.video-card:hover {
    border-bottom: 3px solid var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.glambot-video { width: 100%; height: 100%; object-fit: cover; }

.faq-item {
    background: #111;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 2px solid #ff6600;
    text-align: left;
}
.faq-item h4 { color: #ff6600; margin-bottom: 10px; font-weight: 600; }


/* ==========================================================
   6. CONTACT
   ========================================================== */
.contact-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    max-width: 900px;
    margin: 0 auto;
}

.contact-footer-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.contact-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.contact-btn {
    padding: 18px 30px;
    min-width: 280px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mail-bg { background: var(--primary-gradient); color: #fff; }
.whatsapp-bg { background: #25D366; color: #fff; }

.contact-card p { text-align: center; width: 100%; }
.contact-intro { margin-bottom: 40px; font-size: 1.1rem; }
.contact-btn:hover { transform: translateY(-5px); background: white; color: black; }

/* ==========================================================
   7. RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
    .container { padding: 50px 5% !important; }
    .section-title { font-size: 1.8rem !important; }
    .hero-content h1 { font-size: 2.2rem !important; }
    
    .nav-links { display: none; } /* Envisagez un menu burger ici */
    
    .grid { flex-direction: column; align-items: center; }
    
    .contact-btn { width: 100%; min-width: unset; }
}

/* Style du bouton Burger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 4px 0;
    transition: 0.4s;
}

/* Adaptation pour écrans mobiles */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        display: none; /* Caché par défaut */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 20px 0;
        border-bottom: 2px solid var(--primary);
    }

    .nav-links.active { display: flex; } /* Affiché quand on clique */

    .nav-links li { margin: 15px 0; text-align: center; }
}