/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a; /* Noir profond */
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container { padding: 80px 10%; }
.gold { color: #d4af37; } /* Couleur Or */
.text-center { text-align: center; }

/* 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-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo span { font-weight: 300; color: #d4af37; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: white; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; }

/* HERO SECTION */
.hero {
    height: 100vh;
    /* On remplace l'adresse Unsplash par le chemin vers votre nouvelle image */
    background: url('images/glambot-cannes.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4rem; letter-spacing: 5px; margin-bottom: 20px; }

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 30px;
}
.cta-button:hover { background: #fff; transform: scale(1.05); }

/* SECTIONS */
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.alt-bg { background-color: #111; padding: 100px 10%; }
.features { list-style: none; margin-top: 20px; }
.features li { margin-bottom: 10px; font-weight: 600; }


/* Force le texte du logo en blanc, même si c'est un lien */
.logo a {
    color: #ffffff;
    text-decoration: none; /* Enlève le soulignement bleu s'il y en a un */
}

/* On s'assure que le "LE" reste en or comme prévu */
.logo a span {
    color: #d4af37;
}

/* Optionnel : un léger effet au survol pour montrer que c'est cliquable */
.logo a:hover {
    opacity: 0.8;
}


/* SECTION CONTACT AMÉLIORÉE */
.contact-card {
    background: #1a1a1a;
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid #d4af37;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Pour que les boutons s'empilent sur mobile */
}

.contact-btn {
    font-size: 1rem;
    padding: 18px 30px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn i {
    margin-right: 12px;
    font-size: 1.4rem;
}

/* Couleurs spécifiques */
.mail-bg {
    background: #d4af37;
    color: #000;
}

.whatsapp-bg {
    background: #25D366; /* Vert WhatsApp officiel */
    color: #fff;
    border: none;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: #ffffff;
    color: #000;
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    .contact-btn {
        width: 100%;
        min-width: unset;
    }
}


/* MOBILE OPTIMIZATION */
@media (min-width: 769px) {
    #services .grid {
        grid-template-columns: repeat(3, 1fr);
        display: grid; 
        align-items: stretch; /* Force les cartes à avoir la même hauteur */
    }
}


/* Améliorations Services & FAQ */
.service-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%; 
}
.service-card:hover {
    border-bottom: 3px solid #d4af37;
    transform: translateY(-5px);
}
.service-card i { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.service-card h3 { margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.service-card p {
    flex-grow: 1; /* Le texte prend tout l'espace disponible, poussant le reste vers le haut ou le bas */
}

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


/* SECTION RÉALISATIONS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    background: #000;
    aspect-ratio: 9 / 16; /* Force le format vertical Instagram */
}

.image-block .video-card {
    max-width: 350px; /* Taille idéale pour le format vertical dans le bloc concept */
    margin: 0 auto;
}

.glambot-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit tout le cadre sans déformer */
}

.video-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Ajustement Mobile */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr; /* Une seule vidéo par ligne sur téléphone */
        gap: 30px;
    }
    .video-card {
        max-width: 300px;
        margin: 0 auto; /* Centre la vidéo sur mobile */
    }
}


/* Style pour le sélecteur de langue */
.lang-switch {
    font-weight: bold;
    color: #d4af37 !important;
    border: 1px solid #d4af37;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem !important;
}

.lang-switch:hover {
    background: #d4af37;
    color: #000 !important;
}


/* Style pour l'icône Instagram dans le logo */
.insta-link {
    text-decoration: none;
    margin-right: 8px; /* Espace entre l'icône et le texte ROBI */
    display: inline-block;
    vertical-align: middle;
}

.insta-link i {
    color: #d4af37; /* Couleur Or */
    font-size: 1.4rem; /* Taille de l'icône */
    transition: 0.3s;
}

.insta-link i:hover {
    color: #ffffff; /* Change en blanc au survol */
    transform: scale(1.1);
}