:root {
    --ink: #14212b;
    --muted: #60717d;
    --line: #d9e2e7;
    --sky: #d7edf8;
    --green: #2f7b67;
    --gold: #d89b35;
    --cream: #f7f3ea;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(20, 33, 43, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--white);
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -44px;
    left: 16px;
    z-index: 20;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(217, 226, 231, .8);
    backdrop-filter: blur(14px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 22px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 210px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-weight: 800;
    font-size: 14px;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.15;
}

.brand small {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--ink);
    background: var(--sky);
}

.nav-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    padding: 10px 12px;
    font-weight: 700;
}

.hero {
    min-height: 680px;
    display: grid;
    align-items: end;
    padding: 130px 22px 76px;
    color: var(--white);
    background:
        /* Garde le gradient (les couleurs rgba) pour que le texte reste lisible */
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        
        /* C'est ICI que tu mets ton image à la place de l'URL orange[cite: 1] */
        url("photo-1.jpg") center / cover; /* Utilise le nom EXACT de ton fichier image[cite: 1] */
}

.hero-content,
.page-hero,
.section {
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
}

.hero-content {
    padding-bottom: 28px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .12em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(44px, 7vw, 88px);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.lead {
    max-width: 720px;
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255, 255, 255, .9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.button.primary {
    background: var(--gold);
    color: #1c160d;
}

.button.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .72);
}

.button.ghost.dark {
    color: var(--ink);
    border-color: var(--line);
}

.section {
    padding: 76px 0;
}

.intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.intro p:last-child {
    color: var(--muted);
    font-size: 21px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card,
.price-card,
.contact-card,
.contact-form,
.panel,
.steps article,
.visual-band {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.feature-card {
    padding: 30px;
    box-shadow: 0 12px 28px rgba(20, 33, 43, .06);
}

.feature-card span,
.steps span {
    color: var(--green);
    font-weight: 900;
}

.feature-card p,
.panel,
.price-card p,
.contact-card p,
.steps p,
.visual-band p,
.split-highlight p {
    color: var(--muted);
}

.visual-band {
    min-height: 420px;
    display: grid;
    align-items: end;
    padding: 44px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(20, 33, 43, .82), rgba(20, 33, 43, .42)),
        url("https://images.unsplash.com/photo-1531973576160-7125cd663d86?auto=format&fit=crop&w=1600&q=80") center / cover;
    overflow: hidden;
}

.visual-band h2,
.visual-band p {
    max-width: 720px;
}

.visual-band p {
    color: rgba(255, 255, 255, .82);
}

.weather-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 42px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
}

.weather-band p {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
}

.page-hero {
    padding: 108px 0 54px;
}

.page-hero.compact {
    min-height: 380px;
    display: grid;
    align-content: end;
}

.page-hero.image-hero {
    width: 100%;
    min-height: 440px;
    margin: 0;
    padding: 112px 22px 62px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-1.jpg") center / cover;
}

.page-hero.bapteme-hero {
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-2.jpg") center / cover;
}

.page-hero.vol-hero {
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-3.jpeg") center 42% / cover;
}

.page-hero.tarifs-hero {
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-4.jpg") center / cover;
}

.page-hero.membres-hero {
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-5.jpg") center / cover;
}

.page-hero.contact-hero {
    background:
        linear-gradient(90deg, rgba(12, 23, 31, .78), rgba(12, 23, 31, .36) 55%, rgba(12, 23, 31, .08)),
        url("photo-6.jpg") center / cover;
}

.page-hero.image-hero > * {
    width: min(1120px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.page-hero.image-hero .lead {
    color: rgba(255, 255, 255, .9);
}

.page-hero .lead {
    color: var(--muted);
}

.bapteme-info {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 44px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bapteme-info-copy {
    color: var(--muted);
    font-size: 20px;
}

.bapteme-info-copy p:last-child {
    margin-bottom: 0;
}

.two-column,
.contact {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 34px;
    align-items: start;
}

.split-highlight {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 38px;
    align-items: center;
}

.image-panel {
    min-height: 360px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(20, 33, 43, .05), rgba(20, 33, 43, .1)),
        url("https://images.unsplash.com/photo-1608023136037-626dad6c6188?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.panel {
    padding: 30px;
    background: var(--cream);
}

.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 33, 43, .12);
}

.check-list li:last-child {
    border-bottom: 0;
}

.steps,
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps article,
.price-card {
    padding: 30px;
}

.price-card.highlighted {
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.price {
    font-size: 30px;
    color: var(--ink) !important;
    font-weight: 900;
}

.tariff-section {
    display: grid;
    gap: 24px;
}

.tariff-section.alt {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tariff-heading {
    max-width: 760px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(20, 33, 43, .05);
}

.tariff-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.tariff-table caption {
    padding: 18px 20px;
    text-align: left;
    color: var(--ink);
    font-weight: 900;
    border-bottom: 1px solid var(--line);
}

.tariff-table th,
.tariff-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.tariff-table th {
    color: var(--ink);
    background: var(--sky);
    font-size: 14px;
    text-transform: uppercase;
}

.tariff-table tr:last-child td {
    border-bottom: 0;
}

.tariff-table td:not(:first-child) {
    font-weight: 800;
}

.tariff-grid {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 24px;
    align-items: start;
}

.note-card {
    padding: 28px;
    border-radius: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
}

.note-card p,
.small-note {
    color: var(--muted);
}

.small-note {
    margin: 0;
    font-size: 15px;
}

.emphasis-note {
    font-style: italic;
    font-size: 18px;
}

.member-links {
    display: grid;
    gap: 12px;
}

.member-links a {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.contact-card,
.contact-form {
    padding: 30px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.form-extra {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-notice {
    margin: 0 0 8px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.form-notice p {
    margin: 0;
}

.form-notice p + p {
    margin-top: 6px;
}

.form-notice.success {
    color: #184b3d;
    background: #dcefe8;
    border: 1px solid rgba(47, 123, 103, .35);
}

.form-notice.error {
    color: #6d241b;
    background: #fae4df;
    border: 1px solid rgba(174, 64, 45, .28);
}

label {
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 4px 0 0;
}

@media (max-width: 860px) {
    .navbar {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-checkbox:checked ~ .nav-links {
        display: flex;
    }

    .nav-links a {
        width: 100%;
    }

    .hero {
        min-height: 620px;
        padding-top: 92px;
    }

    .intro,
    .feature-grid,
    .bapteme-info,
    .two-column,
    .split-highlight,
    .steps,
    .pricing,
    .tariff-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .weather-band,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .hero-content,
    .page-hero,
    .section {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        min-height: 560px;
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 42px;
    }

    .weather-band,
    .visual-band,
    .feature-card,
    .steps article,
    .price-card,
    .note-card,
    .contact-card,
    .contact-form {
        padding: 22px;
    }

    .tariff-table {
        min-width: 520px;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 13px 14px;
    }

}

.club-logo {
    display: block;
    height: 50px; /* Change ce chiffre pour trouver la taille parfaite */
    width: auto;  /* Garde les proportions de l'image pour ne pas l'écraser */
    margin-right: 10px; /* Ajoute un petit espace avec le texte à droite */
    }
