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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;

}

/*** Header Styles ***/
header {
    --header-accent: #e68709;
    --header-gold: #f3d54c;
    --header-ink: #4b2f20;
    background: linear-gradient(135deg, #c45b12 0%, #e68709 55%, #f2c24c 100%);
    color: #fff;
    padding: 12px 24px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 14px 24px rgba(68, 42, 29, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.25), transparent 50%);
    pointer-events: none;
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.15));
    opacity: 0.7;
    pointer-events: none;
}

.logo {
    width: 125px;
    height: 100px;
    background-image: url('assets/images/cathycoifflogo.webp');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

/* --- Header / Navigation --- */
/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nav-links li a {
    font-family: Great Vibes;
    color: #f0f8ff;
    font-weight: bolder;
    text-decoration: none;
    font-size: 2rem;
    transition: .3s;
    margin-right: 30px;
    text-shadow: 0 2px 6px rgba(68, 42, 29, 0.35);

    &:hover {
        color: #8b2f0f;
        transition: .3s;
    }
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(224, 80, 22);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(68, 42, 29, 0.25);
}

.burger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.toggle div:nth-child(2) {
    opacity: 0;
}

.burger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Header & nav burger*/
@media (max-width: 986px) {
    #hero {
        width: 100vw !important;
    }
    #hero h1 {
        text-align: center;
        font-size: 3px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100%;
        top: 0;
        background-color: #ebe0c8de;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: translateX(100%);

        transition: transform 0.3s ease-in-out;
        padding-top: 5rem;
        gap: 2rem;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger {
        display: flex;
    }
    header {
        width: 100vw !important;
    }

}

/***Section hero***/
#hero {
    background-image: url('assets/images/hero2.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #000;
    text-align: center;
    padding: 7rem 6vw;
    min-height: 88vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid #e68709;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(35, 21, 14, 0.65) 0%, rgba(35, 21, 14, 0.35) 35%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 220, 150, 0.25), transparent 45%);
    pointer-events: none;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    right: auto;
    font-family: Playfair Display;
    font-weight: 500;
    color: #f0f8ff;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.5px;
    z-index: 2;
}

#hero a {
    font-size: 2.2rem;
    text-align: left;
    position: relative;
    right: auto;
    text-decoration: none;
    z-index: 2;
}

.hero-tag {
    font-family: Playfair Display;
    font-size: 1.6rem;
    color: #f0f8ff;
    letter-spacing: 0.4px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.cta-button {
    width: 250px;
    height: 250px;
    font-size: 2.2rem;
    padding: 25px;
    background-color: #e68709;
    border-radius: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(360deg, #e68709, #edf100);
    border: 10px solid yellow;
    font-family: Playfair Display;
    font-weight: 500;
    transition: .5s;

    &:hover {
        background: linear-gradient(360deg, #edf100, #e68709);
        transition: .5s;
        cursor: pointer;
    }

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 135, 9, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(230, 135, 9, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 135, 9, 0);
    }
}

/***Responsive Hero***/
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
        text-align: center;
    }

    #hero a {
        font-size: 1.8rem;
        text-align: center;
    }

    #hero {
        align-items: center;
    }

    .hero-tag {
        text-align: center;
        font-size: 1.3rem;
    }

    .cta-button {
        width: 160px;
        height: 160px;
        font-size: 1.6rem;
        padding: 20px;
        margin: auto;
    }

    #hero {
        z-index: 1;
    }
    nav {
        z-index: 9;
    }
}

/* --- Section Coiffure & Lumière --- */
#coiffure {
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #fafdf3;
    color: #f1ab7f;
    border-bottom: #edf100 3px solid;
}

.photo-coiffure img {
    height: auto;
    border: 7px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.coiffure-right {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.wrap-coiffure-title {
    min-width: 40vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: left;
    margin-right: 50%;
    text-align: left;
}

.wrap-coiffure-text {
    margin-top: 2rem;
    min-width: 50vw;
    text-align: left;
}

.wrap-coiffure-text:nth-child(2) {
    margin-bottom: 50px;
    text-align: left;
}

#coiffure h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: Playfair Display;
    font-weight: 500;
}

#coiffure h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: Playfair Display;
    font-weight: 500;
}

#coiffure p {
    font-size: 1.7rem;
    line-height: 1.8;
    max-width: 600px;
    margin: auto;
    color: #6a4e3c;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    #coiffure {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
    }

    #coiffure h2 {
        font-size: 3rem;
        text-align: center;
        width: 100%;
    }

    #coiffure h3 {
        font-size: 2rem;
    }

    #coiffure p {
        font-size: 1.4rem;
        max-width: 300px;
    }

    .photo-coiffure img {
        width: 250px;
        height: auto;
        margin-bottom: 2rem;
        background-size: cover;
    }

    .wrap-coiffure-title {
        min-width: 300px;
        margin: auto;
        text-align: center;
    }
}

/*** Energeticienne Section ***/
#energeticienne {
    --energeticienne-accent: #e68709;
    --energeticienne-ink: #5a4a42;
    --energeticienne-soft: #f8f2e7;
    --energeticienne-cream: #fff7e9;
    padding: 5rem 6vw;
    font-family: Playfair Display;
    color: var(--energeticienne-ink);
    background: radial-gradient(circle at top left, #fff7e3 0%, #fafdf3 45%, #f0f7ea 100%);
    border-bottom: #edf100 3px solid;
    position: relative;
    overflow: hidden;
}

#energeticienne::before,
#energeticienne::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#energeticienne::before {
    background: radial-gradient(circle at 80% 20%, rgba(230, 135, 9, 0.12), transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(122, 168, 122, 0.18), transparent 40%);
    opacity: 0.9;
}

#energeticienne::after {
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: soft-light;
}

.energeticienne-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.energeticienne-content h2 {
    font-size: 3.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #4b2f20;
}

.energeticienne-kicker {
    font-family: Great Vibes;
    font-size: 2rem;
    color: var(--energeticienne-accent);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.energeticienne-lead {
    font-size: 1.4rem;
    line-height: 2.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: #6a4e3c;
}

.energeticienne-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: var(--energeticienne-cream);
    border-radius: 20px;
    padding: 1.2rem 1.4rem;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    color: #6a4e3c;
    box-shadow: 0 12px 25px rgba(68, 42, 29, 0.12);
    border: 1px solid rgba(230, 135, 9, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(68, 42, 29, 0.18);
}

.energeticienne-steps {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem 2rem;
    box-shadow: 0 10px 24px rgba(68, 42, 29, 0.12);
    border: 1px solid rgba(164, 196, 160, 0.4);
    margin-bottom: 2rem;
}

.energeticienne-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4b2f20;
}

.energeticienne-steps ol {
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 0.8rem;
}

.energeticienne-steps li {
    counter-increment: step;
    font-size: 1.1rem;
    line-height: 1.8rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #6a4e3c;
}

.energeticienne-steps li::before {
    content: counter(step);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--energeticienne-accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(230, 135, 9, 0.35);
}

.energeticienne-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--energeticienne-soft);
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(230, 135, 9, 0.2);
}

.energeticienne-cta .cta-text {
    font-size: 1.1rem;
    color: #5a4a42;
}

.energeticienne-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, #e68709, #f3d54c);
    border-radius: 999px;
    color: #2b1a12;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 12px 20px rgba(230, 135, 9, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.energeticienne-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 25px rgba(230, 135, 9, 0.45);
}

.energeticienne-aside {
    display: grid;
    gap: 1.5rem;
}

.energeticienne-photo {
    background: #fff;
    border-radius: 24px;
    padding: 0.8rem;
    box-shadow: 0 14px 30px rgba(68, 42, 29, 0.2);
    border: 1px solid rgba(230, 135, 9, 0.18);
}

.energeticienne-photo img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.energeticienne-quote {
    font-size: 1.2rem;
    font-style: italic;
    background: #fff;
    padding: 1.5rem 1.8rem;
    border-radius: 20px;
    color: #7a4b33;
    box-shadow: 0 12px 24px rgba(68, 42, 29, 0.12);
}

.energeticienne-photo-secondary {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(230, 135, 9, 0.18);
    box-shadow: 0 12px 26px rgba(68, 42, 29, 0.15);
    display: block;
}

.energeticienne-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.energeticienne-tags span {
    background: #fff;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.95rem;
    color: #6a4e3c;
    border: 1px solid rgba(164, 196, 160, 0.5);
    box-shadow: 0 6px 14px rgba(68, 42, 29, 0.08);
}

/** Responsive Energeticienne Section ***/
@media (max-width: 768px) {
    #energeticienne {
        padding: 4rem 6vw;
    }

    .energeticienne-inner {
        grid-template-columns: 1fr;
    }

    .energeticienne-content h2 {
        font-size: 2.6rem;
        text-align: center;
    }

    .energeticienne-kicker {
        text-align: center;
    }

    .energeticienne-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.2rem;
    }

    .energeticienne-benefits {
        grid-template-columns: 1fr;
    }

    .energeticienne-cta {
        flex-direction: column;
        text-align: center;
    }

    .energeticienne-call {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .energeticienne-content h2 {
        font-size: 2.2rem;
    }
}

/***a-propos Section***/
#a-propos {
    --apropos-accent: #e68709;
    --apropos-ink: #5a4a42;
    --apropos-soft: #fbf4ec;
    background: linear-gradient(135deg, #fff7ef 0%, #fbf4ec 45%, #f2e7d8 100%);
    padding: 90px 8vw;
    font-family: Playfair Display;
    color: var(--apropos-ink);
}

.a-propos-header {
    text-align: left;
    max-width: 820px;
    margin-bottom: 3rem;
}

.a-propos-kicker {
    font-family: Great Vibes;
    font-size: 2.2rem;
    color: var(--apropos-accent);
    margin-bottom: 0.4rem;
}

#a-propos h2 {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    color: #4b2f20;
    margin-bottom: 1rem;
}

.a-propos-lead {
    font-size: 1.4rem;
    line-height: 2.3rem;
    color: #6a4e3c;
}

.a-propos-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 70px;
}

.text-a-propos p {
    font-size: 1.5rem;
    line-height: 2.6rem;
}

.a-propos-highlights {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.a-propos-highlights div {
    background: #fff;
    border-radius: 18px;
    padding: 0.9rem 1.2rem;
    font-size: 1.05rem;
    color: #6a4e3c;
    border: 1px solid rgba(230, 135, 9, 0.15);
    box-shadow: 0 10px 20px rgba(68, 42, 29, 0.12);
}

.photo-cathy img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 10px solid #fff;
}

/*  COIFFURE */
.coiffure-images {
    position: relative;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.coiffure-images img {
    width: 280px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 10px solid #fff;
    border-radius: 8px;
}

.coiffure-images img:nth-child(1) {
    margin-top: 0;
}

.coiffure-images img:nth-child(2) {
    margin-top: 10%;
    margin-left: -5%;
}

.coiffure-images img:nth-child(3) {
    margin-top: 20%;
    margin-left: -5%;
}

.coiffure-images img:hover {
    transform: translateY(-5px);
}

.texte-central {
    max-width: 520px;
    margin-left: auto;
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-top: -8%;
    background: #fff;
    padding: 1.4rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(68, 42, 29, 0.12);
}

.bien-etre-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    margin: 60px 0;
}

.bien-etre-images img {
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    border: 10px solid #fff;
    object-fit: cover;
}

.conclusion {
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 40px;
    color: #7a4b33;
}

.bien-etre-images img:nth-child(1),
.bien-etre-images img:nth-child(2) {
    margin-top: 0;
}

.a-propos-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.a-propos-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #e68709, #f3d54c);
    color: #2b1a12;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(230, 135, 9, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.a-propos-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 25px rgba(230, 135, 9, 0.45);
}

@media (max-width: 768px) {
    .a-propos-header {
        text-align: center;
    }

    #a-propos h2 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .a-propos-lead {
        font-size: 1.1rem;
        line-height: 1.9rem;
    }

    .a-propos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-cathy img {
        width: 80%;
        margin: auto;
        display: block;
    }

    .coiffure-images {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .coiffure-images img {
        width: 200px;
    }

    .coiffure-images img:nth-child(2),
    .coiffure-images img:nth-child(3) {
        margin-left: 0;
    }

    .texte-central {
        margin-top: 20px;
        margin-left: 0;
        max-width: 100%;
        font-size: 1.1rem;
        line-height: 1.9rem;
    }

    .bien-etre-images {
        flex-direction: column;
        gap: 20px;
    }

    .bien-etre-images img {
        width: 80vw !important;
        height: auto;
        margin: auto;
    }

    .text-a-propos p {
        font-size: 1.1rem;
        line-height: 2rem;
    }

    .a-propos-cta {
        flex-direction: column;
        text-align: center;
    }

    .a-propos-call {
        width: 100%;
    }
}
/***tarifs Section***/
#tarifs {
    --tarifs-accent: #e68709;
    --tarifs-ink: #5a4a42;
    --tarifs-soft: #f7efe6;
    --tarifs-cream: #fff7ef;
    background: radial-gradient(circle at top left, #fff7e9 0%, #fbf4ec 50%, #f3e7d7 100%);
    border-bottom: #e68709 3px solid;
    font-family: Playfair Display;
    color: var(--tarifs-ink);
    padding: 90px 6vw;
}

/* TITRE */
#tarifs h2 {
    font-size: 3.8rem;
    font-weight: 500;
    color: #4b2f20;
    margin-bottom: 1rem;
}

.tarifs-inner {
    display: grid;
    gap: 3rem;
}

.tarifs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tarifs-kicker {
    font-family: Great Vibes;
    font-size: 2rem;
    color: var(--tarifs-accent);
    margin-bottom: 0.5rem;
}

.tarifs-lead {
    font-size: 1.3rem;
    line-height: 2.2rem;
    color: #6a4e3c;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.tarif-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(68, 42, 29, 0.12);
    padding: 1.8rem 1.6rem 2rem;
    text-align: left;
    font-size: 1.05rem;
    border: 1px solid rgba(230, 135, 9, 0.12);
    display: grid;
    gap: 1rem;
}

.tarif-card-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tarif-card h3 {
    font-size: 1.6rem;
    color: #4b2f20;
}

.tarif-card ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.tarif-card ul li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #6a4e3c;
    border-bottom: 1px dashed rgba(90, 74, 66, 0.2);
    padding-bottom: 0.4rem;
}

.tarif-card ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tarif-highlight {
    background: var(--tarifs-cream);
    border: 1px solid rgba(230, 135, 9, 0.2);
    position: relative;
    overflow: hidden;
}

.tarif-highlight::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(230, 135, 9, 0.15);
    border-radius: 50%;
    right: -60px;
    top: -60px;
}

.tarif-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4b2f20;
}

.tarif-note {
    color: #6a4e3c;
    font-size: 1.05rem;
    line-height: 1.6rem;
}

.tarif-card img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(68, 42, 29, 0.15);
    display: block;
}

.tarifs-footnote {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: #6a4e3c;
}

/** Responsive Tarifs Section **/
@media (max-width: 768px) {
    #tarifs {
        padding: 60px 6vw;
    }
    #tarifs h2 {
        font-size: 2.6rem;
    }

    .tarifs-lead {
        font-size: 1.1rem;
    }
}
/*** section contact ***/
#contact {
    --contact-accent: #e68709;
    --contact-ink: #442a1d;
    --contact-soft: #f4e6d7;
    background: radial-gradient(circle at top left, #f6e9dc 0%, #d8c8b8 55%, #c9b39e 100%);
    padding: 90px 6vw;
    font-family: Playfair Display;
    color: var(--contact-ink);
    border-bottom: #442a1d 3px solid;
}

.contact-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.contact-header {
    text-align: center;
}

.contact-kicker {
    font-family: Great Vibes;
    font-size: 2rem;
    color: var(--contact-accent);
    margin-bottom: 0.4rem;
}

#contact h2 {
    font-size: 2.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: #4b2f20;
}

.contact-lead {
    font-size: 1.2rem;
    line-height: 2rem;
    color: #5a4a42;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-photo {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 0.8rem;
    box-shadow: 0 18px 30px rgba(68, 42, 29, 0.2);
    border: 1px solid rgba(230, 135, 9, 0.15);
}

.contact-photo img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.contact-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 16px 30px rgba(68, 42, 29, 0.18);
    border: 1px solid rgba(230, 135, 9, 0.15);
    display: grid;
    gap: 1rem;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.6rem;
    color: #4b2f20;
}

.contact-card p {
    color: #6a4e3c;
    font-size: 1.05rem;
}

.contact-call,
.contact-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-call {
    background: linear-gradient(135deg, #e68709, #f3d54c);
    color: #2b1a12;
    box-shadow: 0 12px 20px rgba(230, 135, 9, 0.35);
}

.contact-mail {
    background: #fff4e4;
    color: #5a4a42;
    border: 1px solid rgba(230, 135, 9, 0.3);
    box-shadow: 0 10px 18px rgba(90, 74, 66, 0.12);
}

.contact-call:hover,
.contact-mail:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 25px rgba(68, 42, 29, 0.2);
}

.contact-footnote {
    text-align: center;
    font-style: italic;
    color: #5a4a42;
    font-size: 1.1rem;
}

/** Responsive Contact Section **/
@media (max-width: 768px) {
    #contact {
        padding: 60px 6vw;
    }

    #contact h2 {
        font-size: 2.1rem;
    }

    .contact-lead {
        font-size: 1.05rem;
    }
}
/*--- Footer ---*/
footer {
    background: linear-gradient(135deg, #4b2417 0%, #6a3a24 45%, #5a2a1a 100%);
    color: #fff;
    text-align: center;
    padding: 0;
    font-size: 1rem;
}

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 2.5rem 6vw;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    display: grid;
    gap: 0.8rem;
    text-align: left;
}

.footer-card + .footer-card {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 2rem;
}

.logo-footer {
    width: 90px;
    height: 70px;
    background-image: url('assets/images/cathycoifflogo.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.title-logo {
    font-family: Playfair Display;
    font-weight: 500;
    font-size: 1.6rem;
    color: #fff;
}

.navigation-footer h2,
.footer-social h2 {
    font-family: Playfair Display;
    font-weight: 400;
    color: #f5d7c0;
    font-size: 1.4rem;
}

.footer-social-text {
    font-size: 1rem;
    color: #f7efe6;
    line-height: 1.6rem;
}

.footer-social-hint {
    font-size: 0.95rem;
    color: rgba(247, 239, 230, 0.8);
    line-height: 1.5rem;
}

.nav-links-footer {
    display: grid;
    gap: 0.6rem;
    list-style: none;
}

.nav-links-footer a {
    text-decoration: none;
    color: #f7efe6;
    font-family: Playfair Display;
    transition: color 0.3s ease;
}

.nav-links-footer a:hover {
    color: #f3d54c;
}

.reseaux {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.logo-facebook,
.logo-instagram {
    width: 42px;
    height: 42px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
}

.logo-facebook {
    background-image: url('assets/images/fb.png');
}

.logo-instagram {
    background-image: url('assets/images/insta.png');
}

.logoDev {
    width: 60px;
    height: 30px;
    background-image: url('assets/images/webConceptLogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 6vw 2rem;
    display: grid;
    gap: 0.6rem;
}

.footer-legal-link {
    color: #f7efe6;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #f3d54c;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.footer-signature {
    font-family: Great Vibes;
    font-size: 1.4rem;
    color: #f3d54c;
}

/** Responsive Footer **/
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 2rem 6vw;
    }

    .footer-card {
        text-align: center;
        justify-items: center;
    }

    .footer-card + .footer-card {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }

    .nav-links-footer {
        justify-items: center;
    }

    .footer-bottom {
        padding: 1.2rem 6vw 1.6rem;
    }
}

/*** Mentions légales ***/
#mentions-legales {
    background: #fff7ef;
    padding: 70px 8vw;
    font-family: Playfair Display;
    color: #5a4a42;
    border-top: 3px solid #e68709;
}

.mentions-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

#mentions-legales h2 {
    font-size: 2.4rem;
    color: #4b2f20;
    margin-bottom: 0.6rem;
}

#mentions-legales p {
    font-size: 1.05rem;
    line-height: 1.8rem;
}

.mentions-back {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #4b2f20;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(230, 135, 9, 0.4);
    padding-bottom: 0.2rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.mentions-back:hover {
    color: #e68709;
    border-color: #e68709;
}
/*** Zone desservie ***/
#zone-desservie {
    --zone-accent: #e68709;
    --zone-ink: #5a4a42;
    --zone-soft: #fbf4ea;
    --zone-cream: #fffaf0;
    background: radial-gradient(circle at top left, #fff7e6 0%, #fafdf3 45%, #f1f6e8 100%);
    padding: 90px 6vw;
    font-family: Playfair Display;
    color: var(--zone-ink);
    border-bottom: 3px solid #edf100;
    position: relative;
    overflow: hidden;
}

#zone-desservie::before,
#zone-desservie::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#zone-desservie::before {
    background: radial-gradient(circle at 20% 20%, rgba(230, 135, 9, 0.12), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(164, 196, 160, 0.2), transparent 50%);
}

#zone-desservie::after {
    background-image: linear-gradient(115deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: soft-light;
}

.zone-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.zone-header {
    max-width: 780px;
}

.zone-kicker {
    font-family: Great Vibes;
    font-size: 2.2rem;
    color: var(--zone-accent);
    margin-bottom: 0.4rem;
}

#zone-desservie h2 {
    font-size: 3.6rem;
    font-weight: 500;
    color: #4b2f20;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.zone-lead {
    font-size: 1.4rem;
    line-height: 2.3rem;
    color: #6a4e3c;
}

#zone-desservie strong {
    color: var(--zone-accent);
    font-weight: 600;
}

.zone-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: start;
}

.zone-cards {
    display: grid;
    gap: 1.2rem;
}

.zone-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 16px 28px rgba(68, 42, 29, 0.12);
    border: 1px solid rgba(230, 135, 9, 0.15);
}

.zone-card h3 {
    font-size: 1.6rem;
    color: #4b2f20;
    margin-bottom: 0.6rem;
}

.zone-card p {
    font-size: 1.1rem;
    line-height: 1.9rem;
    color: #6a4e3c;
}

.zone-map {
    background: var(--zone-cream);
    border-radius: 24px;
    padding: 1.8rem 1.8rem;
    border: 1px solid rgba(230, 135, 9, 0.2);
    box-shadow: 0 14px 28px rgba(68, 42, 29, 0.12);
}

.zone-map-title {
    font-size: 1.4rem;
    color: #4b2f20;
    margin-bottom: 1rem;
}

.zone-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.zone-list li {
    background: #fff;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    color: #5a4a42;
    border: 1px solid rgba(230, 135, 9, 0.15);
    box-shadow: 0 8px 16px rgba(68, 42, 29, 0.12);
    text-align: center;
}

.zone-note {
    font-size: 1.05rem;
    line-height: 1.7rem;
    color: #6a4e3c;
}

.zone-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #fff;
    border-radius: 22px;
    padding: 1.2rem 1.6rem;
    border: 1px solid rgba(230, 135, 9, 0.18);
    box-shadow: 0 12px 22px rgba(68, 42, 29, 0.12);
}

.zone-cta p {
    font-size: 1.15rem;
    color: #5a4a42;
}

.zone-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #e68709, #f3d54c);
    color: #2b1a12;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(230, 135, 9, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 25px rgba(230, 135, 9, 0.45);
}

@media (max-width: 900px) {
    .zone-content {
        grid-template-columns: 1fr;
    }

    .zone-map {
        order: 2;
    }
}

@media (max-width: 768px) {
    #zone-desservie {
        padding: 60px 6vw;
        text-align: center;
    }

    #zone-desservie h2 {
        font-size: 2.4rem;
    }

    .zone-lead {
        font-size: 1.15rem;
        line-height: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .zone-cta {
        flex-direction: column;
        text-align: center;
    }

    .zone-call {
        width: 100%;
    }
}@media (max-width: 986px) {
  #hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 4rem 1rem;
  }

  #hero h1{
    position: relative;   /* plus en absolute */
    right: auto;
    text-align: center;
    font-size: 2.6rem;    /* au lieu de 3px */
    z-index: 2;
  }

  #hero a{
    position: relative;   /* plus en absolute */
    right: auto;
    bottom: auto;
    z-index: 1;
  }

  .cta-button{
    width: 170px;
    height: 170px;
    font-size: 1.5rem;
  }
}
#hero h1{
  z-index: 2;           /* texte au-dessus */
}

#hero a{
  z-index: 1;           /* bouton en-dessous */
}

.cta-button{
  position: relative;   /* assure le z-index */
  z-index: 1;
}




