/* ============================================
   MAIN STYLESHEET — Ludivine Delattre Hypnose
   Chargé en defer / async pour ne pas bloquer
   ============================================ */

/* --- Section Headers --- */
.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section__header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}
.section__header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C8956E;
    border-radius: 2px;
}
.section__header p {
    color: #4A4A4A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* --- About Section --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about__img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    position: relative;
}
.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about__img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #C8956E;
    border-radius: 12px;
    z-index: -1;
}
.about__content h2 {
    margin-bottom: 1.5rem;
}
.about__content p {
    color: #4A4A4A;
    margin-bottom: 1.25rem;
}
.about__signature {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #5C4535;
    margin-top: 1.5rem;
}

/* --- Services / Problématiques --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(139,111,92,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.service-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F0EB;
    border-radius: 50%;
    color: #5C4535;
    font-size: 1.4rem;
}
.service-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3A3A3A;
}

/* --- FAQ / Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(139,111,92,.15);
    padding: 1.5rem 0;
}
.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3A3A3A;
    padding: .5rem 0;
    transition: color .3s ease;
}
.faq-item__question:hover { color: #5C4535; }
.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #A0734A;
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.open .faq-item__question::after {
    content: '−';
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-item__answer {
    max-height: 500px;
    padding-top: 1rem;
}
.faq-item__answer p {
    color: #4A4A4A;
    line-height: 1.8;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(139,111,92,.08);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}
.testimonial-card__quote {
    font-size: 3rem;
    color: #D4C5B9;
    line-height: 1;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}
.testimonial-card__text {
    color: #3D3D3D;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-card__author {
    font-weight: 600;
    color: #3A3A3A;
}
.testimonial-card__source {
    font-size: .85rem;
    color: #6B5848;
}
.stars { color: #A0734A; letter-spacing: 2px; }
.star--filled { color: #A0734A; }

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(139,111,92,.1);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.pricing-card--featured {
    border-color: #C8956E;
}
.pricing-card--featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C8956E;
    color: #fff;
    padding: .3rem 1.5rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pricing-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.pricing-card__desc {
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.pricing-card__price {
    font-size: 3rem;
    font-weight: 700;
    color: #5C4535;
    line-height: 1;
    margin-bottom: .25rem;
}
.pricing-card__price span {
    font-size: 1.2rem;
    font-weight: 400;
}
.pricing-card__unit {
    color: #555555;
    font-size: .9rem;
    margin-bottom: 2rem;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    background: #F5F0EB;
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info__item:last-child { margin-bottom: 0; }
.contact-info__icon {
    width: 50px;
    height: 50px;
    background: #8B6F5C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-info__text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
}
.contact-info__text p,
.contact-info__text a {
    color: #4A4A4A;
    font-size: .95rem;
}
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    min-height: 400px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #8B6F5C 0%, #6B5344 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: 20px;
    margin: 3rem 0;
}
.cta-banner h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.cta-banner p {
    opacity: .9;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* --- Footer --- */
.site-footer {
    background: #2C2118;
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer__brand p {
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    margin-top: 1rem;
    line-height: 1.7;
}
.footer__title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .75rem;
}
.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: #C8956E;
}
.footer__links li { margin-bottom: .75rem; }
.footer__links a {
    color: rgba(255,255,255,.78);
    font-size: .9rem;
    transition: color .3s ease;
}
.footer__links a:hover { color: #E2B48C; }
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.78);
    font-size: .9rem;
}
.footer__contact-item i { color: #E2B48C; width: 20px; text-align: center; }
.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer__social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: background .3s ease, transform .2s ease;
}
.footer__social a:hover {
    background: #C8956E;
    color: #fff;
    transform: translateY(-2px);
}
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 1rem 0;
    margin-top: 70px;
    background: #F5F0EB;
}
.breadcrumb__list {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .9rem;
}
.breadcrumb__list li + li::before {
    content: '›';
    margin-right: .5rem;
    color: #6B5848;
}
.breadcrumb__list a { color: #5C4535; }
.breadcrumb__list span { color: #555555; }

/* --- Page Header (inner pages) --- */
.page-header {
    background: linear-gradient(135deg, #8B6F5C 0%, #6B5344 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p { opacity: .85; font-size: 1.1rem; }

/* --- Déroulement Steps --- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}
.step {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(139,111,92,.08);
    counter-increment: step;
}
.step::before {
    content: counter(step);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #C8956E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
}
.step h3 {
    margin-bottom: .75rem;
    margin-top: .5rem;
}
.step p { color: #4A4A4A; font-size: .95rem; }

/* --- Info Box --- */
.info-box {
    background: #F5F0EB;
    border-left: 4px solid #C8956E;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.info-box p { color: #3D3D3D; margin-bottom: 0; }

/* --- Animations (Intersection Observer) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about__img { order: -1; }
    .about__img::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-banner { border-radius: 12px; padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero__content { padding: 1.5rem 1rem; }
    .btn { padding: .75rem 1.5rem; font-size: .9rem; }
}

/* --- Print --- */
@media print {
    .site-header, .site-footer, .nav__toggle, .cta-banner { display: none; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
