
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #1f2933;

    /* Bleu encore plus clair, tons pastel professionnels */
    background: linear-gradient(
        135deg,
        #e7f0ff 0%,   /* bleu très pâle */
        #d9e7ff 40%,  /* bleu doux */
        #c5d9ff 100%  /* bleu légèrement plus soutenu, mais pastel */
    );
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

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

header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e1e7f0;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}
/* Image de fond du bandeau */
header {
    position: sticky;
    top: 0;
    z-index: 10;

    background: url("2015-08-19 20.51.27.jpg") center/cover no-repeat;
    border-bottom: 1px solid #e1e7f0;

    /* On désactive le fond blanc précédent */
    backdrop-filter: none;
}
/* Voile translucide pour garder un texte lisible sur l'image */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55); /* Ajustable : 0.40 = plus transparent, 0.70 = plus opaque */
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
/* Espacement horizontal entre les titres du menu */
.nav-links {
    display: flex;
    gap: 2.2rem;   /* Ajuste ici : 2.2rem = bon écart, 2.8rem = très espacé */
    align-items: center;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a {
    font-weight: 600; /* Semi-gras */
    color: #0f172a;  /* Gris très foncé = lisible sur image */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35); /* Optionnel : améliore la lisibilité sur l'image */
}

.nav-links a {
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-color: #2563eb;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
    background: #1d4ed8;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #c4cfde;
    background: #ffffff;
    color: #1f2933;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}

main {
    padding: 1.5rem 0 3rem;
}

.hero {
    padding: 2.5rem 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid #c4cfde;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #52606d;
    background: #f1f5fb;
    margin-bottom: 0.9rem;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 30rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-meta {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.hero-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e1e7f0;
}

.hero-card h2 {
    margin-top: 0;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.hero-card ul {
    padding-left: 1rem;
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.hero-card li {
    margin-bottom: 0.25rem;
}

section {
    margin-top: 2.5rem;
}

section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.section-intro {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 40rem;
    margin-bottom: 1.4rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.offer-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid #e1e7f0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.offer-card h3 {
    font-size: 1rem;
    margin: 0;
}

.offer-card p {
    margin: 0;
    color: #4b5563;
}

.offer-card a {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #2563eb;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: flex-start;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pill {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e5edff;
    color: #1d4ed8;
    font-size: 0.8rem;
}

.footer {
    border-top: 1px solid #e1e7f0;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    background: #ffffff;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.contact-inline {
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-inline a {
    color: #2563eb;
}

/* Offer pages */

.page-header {
    margin-bottom: 1.8rem;
}

.page-title {
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
    color: #111827;
}

.page-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.25rem;
    align-items: flex-start;
}

.page-main p {
    margin-top: 0;
}

.page-main h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.page-main h4 {
    margin-top: 1.1rem;
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
}

.page-main ul {
    padding-left: 1.1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.page-main li {
    margin-bottom: 0.25rem;
}

.side-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid #e1e7f0;
    font-size: 0.9rem;
    color: #4b5563;
}

.side-card h3 {
    margin-top: 0;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.side-card ul {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
}

.side-card li {
    margin-bottom: 0.25rem;
}

.contact-block {
    background: #eef2ff;
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    margin-top: 1.2rem;
}

.contact-block strong {
    display: block;
    margin-bottom: 0.2rem;
}

/* Simple responsive tweaks */

@media (max-width: 900px) {
    .hero,
    .two-columns,
    .page-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.9rem;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .offers-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* Logo dans le bandeau */
.nav-left img {
    height: 80px !important;
    width: auto;
    border-radius: 6px;
    background: #f3f4f6;
    padding: 2px;
}
/* Image en toile de fond pour tout le site */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url("IMG_E4384.JPG") center/cover no-repeat;

    opacity: 0.15;          /* 0.05 = très léger, 0.15 = plus visible */
    filter: grayscale(100%) blur(4px); /* discret, neutre, élégant */

    z-index: -2;            /* reste derrière tout le contenu */
    pointer-events: none;   /* l'image n'interfère pas avec les clics */
}
.hero-title {
    text-align: center;
}

.hero-line1, .hero-line2 {
    display: block;
    width: 100%;
    text-align: center;
}
.hero-line1 {
    color: #0a2a66; /* Bleu profond élégant */
    font-weight: 700;
}
.offers-title {
    color: #0a2a66; /* même bleu profond que la ligne du haut */
    font-weight: 700;
}
.hero-line1 {
    color: #0a2a66; /* ton bleu profond actuel */
    font-weight: 700;
    font-size: 2.8rem; /* ← nouvelle taille plus grande */
    line-height: 1.15; /* harmonise l'espacement vertical */
}
