/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
/* ---- STYLES SPÉCIFIQUES PAGE SERVICES ---- */
.services-h1 {
    font-size: 3.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f1c40f;
    margin-bottom: 10px;
}

.services-h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color:  #f1c40f;
}

.services-p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.7;
}
/* ============================
   PAGE À PROPOS — TITRES
============================ */
.apropos h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #f1c40f;
    margin-bottom: 20px;
}

/* ============================
   PAGE À PROPOS — PARAGRAPHES
============================ */
.about-text p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* PARALLAX */
.parallax {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media (max-width: 700px) {
    .parallax { background-attachment: scroll; }
}
.contact-details {
    margin-top: 15px;
    font-size: 1rem;
    color: black;
}
.contact-details-p {
    margin-top: 5px;
    font-size: 1rem;
    color: rgb(100, 98, 98);
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 230px;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    z-index: 2000;
}
.sidebar img {
    width: 110px;
    margin-bottom: 20px;
}
.sidebar ul { list-style: none; margin-top: 20px; }
.sidebar li { margin: 18px 0; }
.sidebar a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #bbb;
    transition: .3s;
}
.sidebar a:hover,
.sidebar a.active { color: #f1c40f; }

/* HAMBURGER MENU (MOBILE) */
.menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 2500;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    color: #f1c40f;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
}

/* PAGE CONTENT — LE BON, L’UNIQUE */
.content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 40px;
}

/* TITRES SECTIONS */
.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.section-line {
    width: 60px;
    height: 3px;
    background: #f1c40f;
    margin-bottom: 35px;
}

/* HERO */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.hero p {
    font-size: 1.4rem;
    margin-top: 15px;
    opacity: .8;
    color:whitesmoke;
}
.hero .typing {
    margin-top: 15px;
    font-size: 1.1rem;
    opacity: .9;
    color: yellow;
}

/* A PROPOS */
.about-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
}
.about-image { width: 35%; }
.about-image img {
    width: 100%;
    border-radius: 10px;
}
.about-text {
    width: 65%;
    font-size: 1.01rem;
    color: lightgray;
}

/* CONTACT */
.contact-wrapper {
    max-width: 1100px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: #f1ede7;
    border-radius: 12px;
}
.contact-wrapper img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.contact-info h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #111;
}
.contact-info label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
    display: block;
}
.contact-info input,
.contact-info textarea {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 2px solid #222;
    background: transparent;
    font-size: 1rem;
    margin-bottom: 20px;
    outline: none;
}
.contact-info textarea { resize: vertical; height: 100px; }
.contact-submit {
    margin-top: 10px;
    background: #111;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.contact-submit:hover { background: #b88a32; }

/* PORTFOLIO */
.gallery {
    columns: 3;
    column-gap: 15px;
}
.gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}
.gallery img:hover { transform: scale(1.03); }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    animation: fade .4s ease;
}
.lightbox-close {
    position: fixed;
    top: 25px;
    right: 40px;
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: #fff;
    cursor: pointer;
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* SERVICES / FORFAITS */
.services-grid,
.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.service-card,
.forfait-card {
    padding: 25px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: .3s;
}
.service-card:hover,
.forfait-card:hover {
    transform: translateY(-5px);
    border-color: #f1c40f;
}
.forfait-price { color: #f1c40f; }

/* TEMOIGNAGES */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 25px;
}
.testimonial-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    object-fit:cover;
}
.testimonial-text { font-style: italic; }

/* FORMULAIRES RDV */
form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
}
button.submit-btn {
    background: #f1c40f;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
button.submit-btn:hover { background: #fff; }

/* RDV PAGE */
.rdv-page { max-width: 900px; margin: auto; }

/* LIGHT MODE */
/* --- LIGHT MODE FIX GLOBAL --- */
html.light-mode,
html.light-mode body {
    background: #f7f7f7 !important;
    color: #222 !important;
}

html.light-mode .sidebar {
    background: rgba(255,255,255,0.9);
    border-right: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .sidebar a {
    color: #333;
}
html.light-mode .sidebar a:hover,
html.light-mode .sidebar a.active {
    color: #d4aa00;
}

html.light-mode .section-line {
    background: #d4aa00;
}

html.light-mode .service-card,
html.light-mode .forfait-card,
html.light-mode .testimonial-card,
html.light-mode .contact-wrapper,
html.light-mode .rdv-form-section {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.2);
}

html.light-mode .gallery img {
    filter: brightness(0.92);
}

html.light-mode .lightbox {
    background: rgba(255,255,255,0.95);
}

html.light-mode .lightbox img {
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

html.light-mode .contact-info h1,
html.light-mode .contact-info label {
    color: #111;
}

html.light-mode .contact-details p {
    color: #444;
}


/* RESPONSIVE */
@media (max-width: 700px) {
    .menu-toggle { display: block; }
    .sidebar { transform: translateX(-100%); transition: .3s; }
    body.sidebar-open .sidebar { transform: translateX(0); }
    .content { margin-left: 0; padding-top: 100px; }
    .about-container { flex-direction: column; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .gallery { columns: 1; }
}
/* Fix RESPONSIVE : éviter que le contenu passe derrière la sidebar */
@media (max-width: 1200px) {
    .content {
        margin-left: 0 !important;
        padding-top: 100px;
    }
}


/* ANIMATIONS */
@keyframes fade { 0% { opacity: 0; transform: scale(.95);} }
