/* --- VARIABLES ET RESET --- */
:root {
    --text-blue: #69faff;
    --accent-green: #33ff33;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--text-blue);
    /* On remet l'image de fond ici */
    background: #fff url('arriere_plan_vide_lolotech.png') no-repeat center center fixed;
    background-size: cover;
}
.logo {
    width: 300px; /* Un peu plus petit pour la lisibilité */
    height: auto;
    margin-top: 20px;
}
/* --- NAVIGATION --- */
.navbar {
    background: rgba(0, 0, 0, 0.5); /* Un petit fond sombre pour voir le menu */
    padding: 15px;
}

.navbar a {
    color: var(--accent-green);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}
/* --- STYLE DES CARTES (À mettre dans index.css) --- */
.service-card {
    background: rgba(0, 0, 0, 0.4); /* Fond sombre translucide */
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid var(--text-blue); /* Ta bordure bleue */
    text-align: left; /* Plus facile à lire pour de longs textes */
    backdrop-filter: blur(8px); /* Flou derrière la carte pour le style */
}

.service-card h2 {
    color: var(--accent-green);
    margin-top: 0;
    border-bottom: 1px solid rgba(105, 250, 255, 0.2);
    padding-bottom: 10px;
}

.service-card p {
    line-height: 1.6; /* Plus d'espace entre les lignes pour le confort */
}

.note-card {
    border-style: dashed; /* Style différent pour la dernière carte */
    background: rgba(51, 255, 51, 0.05); /* Teinte légère de vert */
}
/* --- BOUTON --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-green);
    color: black;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.3s;
}
.btn:hover { transform: scale(1.1); background: white; }