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

/* TYPO & BACKGROUND */
body {
    font-family: Arial, sans-serif;
    background-color: #0f1624;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.06) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 40px 40px;
    background-attachment: fixed;
    color: #eee;
    line-height: 1.6;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

/* NAVIGATION */
.nav a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}
/* CONTENU GLOBAL */
.content {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #aaa;
    margin-top: 40px;
}

/* HERO (pages générales) */
.hero,
.service-text {
    text-align: center;
}

/* PAGE CONTACT — TITRE + INTRO */
.contact-hero {
    text-align: center;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 3rem;
}
/* COORDONNÉES */
.contact-info {
    text-align: center;
    margin: 30px auto;
    line-height: 1.8;
}

.contact-info h2 {
    color: #cfe8ff;
    text-shadow: 0 0 8px #4da8ff;
    margin-bottom: 15px;
}

/* FORMULAIRE CONTACT */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px #4da8ff;
    border: 1px solid #4da8ff;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #eee;
    margin-bottom: 20px;
}
/* BOUTON ANIMÉ */
.contact-form button {
    padding: 12px 25px;
    background: #4da8ff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    animation: pulseBtn 2.5s infinite ease-in-out;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 8px #4da8ff; }
    50% { box-shadow: 0 0 18px #4da8ff; }
    100% { box-shadow: 0 0 8px #4da8ff; }
}

.contact-form button:hover {
    background: #82c4ff;
    box-shadow: 0 0 20px #4da8ff;
}
/* VU-METRE */
.vumetre {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 20px 0;
    height: 40px;
    align-items: flex-end;
}

.vumetre span {
    width: 6px;
    height: 10px;
    background: #00ff88;
    display: inline-block;
    animation: vumetreAnim 0.8s infinite ease-in-out;
    border-radius: 3px;
}

.vumetre span:nth-child(1) { animation-delay: 0s; }
.vumetre span:nth-child(2) { animation-delay: 0.1s; }
.vumetre span:nth-child(3) { animation-delay: 0.2s; }
.vumetre span:nth-child(4) { animation-delay: 0.3s; }
.vumetre span:nth-child(5) { animation-delay: 0.4s; }

@keyframes vumetreAnim {
    0% { height: 10px; }
    50% { height: 40px; }
    100% { height: 10px; }
}

/* TITRES NÉON */
.page-title {
    text-align: center;
    color: #cfe8ff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 8px #4da8ff;
}


	/* TITRE PRINCIPAL */
.site-title {
    text-align: center;
    font-size: 4rem;
    margin: 20px 0;
    color: #cfe8ff;
    text-shadow: 0 0 10px #4da8ff;
}

/* SOUS-TITRE */
.neon-red {
    text-align: center;
    font-size: 2rem;
    color: #ff4d4d;
    text-shadow: 0 0 10px #ff4d4d;
}

/* SLOGAN */
.slogan {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

/* IMAGE HERO */
.hero-image img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

/* ANIMATION IMAGE */
.img-anim {
    transition: transform 0.4s ease;
}

.img-anim:hover {
    transform: scale(1.05);
}

/* EFFET NEON SUR IMAGE */
.img-neon {
    box-shadow: 0 0 20px #4da8ff;
}

/* BLOCS TARIFS / SERVICES */
.section {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.tarif-container,
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.tarif-card,
.service-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid #4da8ff;
    box-shadow: 0 0 15px #4da8ff;
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    color: #eee;
}
/* TITRE ARC-EN-CIEL */
.neon-rainbow {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #4da8ff, #ff4dff, #4dff88);
    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 10px #4da8ff;
}


/* SECTION SERVICE (2 colonnes) */
.service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    max-width: 1100px;
}

/* Inversion des colonnes */
.service.reverse {
    flex-direction: row-reverse;
}

/* TEXTE SERVICE */
.service-text {
    flex: 1;
    color: #eee;
    font-size: 1.2rem;
    line-height: 1.7;
}

.service-text h2 {
    margin-bottom: 15px;
    color: #cfe8ff;
    text-shadow: 0 0 8px #4da8ff;
}

/* IMAGE SERVICE */
.service-img img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    display: block;
    margin: auto;
    box-shadow: 0 0 20px #4da8ff;
}

/* LISTE */
.service-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 8px;
}
/* SECTION TARIFS */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1100px;
}

/* CARTE TARIF */
.price-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #4da8ff;
    box-shadow: 0 0 15px #4da8ff;
    border-radius: 12px;
    padding: 25px;
    width: 280px;
    text-align: center;
    color: #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #4da8ff;
}

/* TITRE DE LA CARTE */
.price-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #cfe8ff;
    text-shadow: 0 0 8px #4da8ff;
}

/* PRIX */
.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

/* LISTE */
.price-card ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.price-card li {
    margin-bottom: 8px;
}
h1.neon-rainbow {
    display: inline-block;
    width: auto;
}
