
h1, h2, h3 {
    letter-spacing: 0.02em;
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --------------------------------------------------
   HERO – Sanación de Luz
-------------------------------------------------- */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f5f0; /* ivoire */
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.1s linear;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(247, 245, 240, 0.65),
        rgba(247, 245, 240, 0.85)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1e1e1e;
}

.hero-baseline {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    color: #2f2f2f;
}

.hero-cta {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(#e6b84f, #c18f37); /* accent doré/jaune */
    border: none;
    color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(#62713d, #424d27);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-hint span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-hint span::after {
    content: '';
    width: 4px;
    height: 6px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollHint 1.6s infinite;
}

@keyframes scrollHint {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* --------------------------------------------------
   SERVICES – Cartes
-------------------------------------------------- */

.home-services {
    /* background-color: #f4f1ea; beige très doux */
    position: relative;
    background-image: url('../images/bg/feuillage-soft.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1e1e1e;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
    color: #555;
}

.service-card {
    background-color: #ffffff;
    border-radius: 18px;
   /**/
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding-bottom: 15px;
}

.service-card img{
    border-radius: 18px 18px 0px 0px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.service-body{
    padding: 0rem 1rem;
    color: #41302b;
}

.service-title {
    margin-bottom: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #41302b;
}
.service-title h3{
    font-size: 1.25rem;
    font-weight: 500;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #9c7c1f; /* doré doux */
    font-weight: 500;
    position: relative;
}

.service-link:hover {
    color: #62713d;
}

.service-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
    margin: 4px auto 0;
}

.service-link:hover::after {
    width: 100%;
}

/* --------------------------------------------------
   PRÉSENTATION
-------------------------------------------------- */

.home-presentation {
    background-color: #faf7f2;
}

.presentation-image-wrapper {
    position: relative;
    display: inline-block;
}

.presentation-image {
    width: 100%;
    max-width: 380px;
    border-radius: 180px 180px 40px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Décor léger (optionnel, statique pour l’instant) */
.presentation-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 200px;
    background: radial-gradient(circle, rgba(230,184,79,0.15), transparent 70%);
    z-index: -1;
}

.presentation-eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9c7c1f;
}

.presentation-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1e1e1e;
}

.presentation-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* --------------------------------------------------
   RESSOURCES – Cartes
-------------------------------------------------- */

.home-resources {
    background-color: #f1eadf; /* ivoire */
}

.resource-card {
    display: block;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: inherit;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
    border-color: rgba(230,184,79,0.35);
}

.resource-icon {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
}

.resource-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #1e1e1e;
}

.resource-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.3rem;
}

.resource-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9c7c1f; /* doré doux */
    position: relative;
}

.resource-link::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    margin: 6px auto 0;
    opacity: 0.7;
}


/* --------------------------------------------------
   FAQ – Preguntas Frecuentes
-------------------------------------------------- */

.home-faq {
    /*background: linear-gradient(
        to bottom,
        #f7f5f0 0%,
        #f1eadf 100%
    );*/
    position: relative;
    background-image: url('../images/bg/faq-soft.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.1rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    color: #1e1e1e;
    position: relative;
}

.faq-question::after {
    content: '⌄';
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    opacity: 0.6;
}

.faq-question.collapsed::after {
    transform: translateY(-50%) rotate(-90deg);
}

.faq-answer {
    padding: 0 1.4rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* --------------------------------------------------
   CTA FINAL
-------------------------------------------------- */

.home-cta {
    background: linear-gradient(
        to bottom,
        #f1eadf 0%,
        #e9dfcf 100%
    );
}

.cta-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9c7c1f;
    margin-bottom: 0.8rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #1e1e1e;
}
.btn{
    padding: 1rem 3rem;
}
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        #e6b84f,
        #d4a437
    );
    color: #1e1e1e;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 1rem 3rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* --------------------------------------------------
   SCROLL ANIMATIONS (GLOBAL)
-------------------------------------------------- */

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Décor flottant */
.floating {
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Respect accessibilité */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    .floating {
        animation: none;
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* --------------------------------------------------
   WAVES – SECTION SEPARATORS
-------------------------------------------------- */

.section-wave-top,
.section-wave-bottom {
    position: relative;
    overflow: hidden;
}
.section-wave-top {
   box-shadow: 0px -8px 8px 0px rgba(0, 0, 0, 0.32);
}
.section-wave-bottom {
    box-shadow: inset 0px -30px 30px 7px rgba(0, 0, 0, 0.32);
}

.section-wave-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('../images/waves/wave-top.svg') no-repeat center top;
    background-size: cover;
    z-index: 2;
}

.section-wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('../images/waves/wave-bottom.svg') no-repeat center bottom;
    background-size: cover;
    z-index: 2;
}

/* Ajustement mobile */
@media (max-width: 768px) {
    .section-wave-top::before,
    .section-wave-bottom::after {
        height: 40px;
    }
}
