/* CapToilettage — page vitrine publique. Statique, sobre, responsive. Aucune dépendance externe. */

:root {
    --accent: #0099CC;
    --accent-dark: #007aa3;
    --ink: #243038;
    --muted: #5a6b78;
    --bg: #ffffff;
    --bg-soft: #f5f8fa;
    --border: #e2e9ee;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(36, 48, 56, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); }

.wrap { width: min(1100px, 92vw); margin: 0 auto; }

/* ---------- En-tête ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.brand .dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); display: inline-block;
}
.nav a { margin-left: 22px; text-decoration: none; color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--accent-dark); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(160deg, #eaf6fb 0%, #ffffff 60%);
    padding: 64px 0 40px;
    text-align: center;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.hero .accroche {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 18px;
}
.hero .sous {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 30px;
}
.shot {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: #fff;
}
.hero .shot { max-width: 980px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { text-align: center; margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2rem); }
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 40px; max-width: 640px; }

/* ---------- Fonctionnalités ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.feature .ic {
    width: 44px; height: 44px; border-radius: 10px;
    background: #eaf6fb; color: var(--accent-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ---------- Galerie de captures ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}
.gallery figure { margin: 0; }
.gallery figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

/* ---------- Pied de page ---------- */
.site-footer {
    text-align: center;
    padding: 36px 0;
    color: var(--muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}
.site-footer .heart { color: #e25555; }
.site-footer p { margin: 4px 0; }

/* ---------- Mention démo ---------- */
.demo-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 28px;
    font-style: italic;
}
