/* ----------------------------------
   1. PALETTE & BASE
---------------------------------- */
:root {
    --beige: #f7f2eb;
    --gold: #d4a86a;
    --terracotta: #d97a4f;
    --dark: #3a2f2a;
    --light: #ffffff;
    --shadow: rgba(0,0,0,0.08);
   background: var(--light);

}
/* ----------------------------------
   TYPOGRAPHIE PREMIUM
---------------------------------- */

/* ----------------------------------
   TYPOGRAPHIE PREMIUM PLAYFAIR
---------------------------------- */

/* Texte courant */
body, p, li, a, button {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.2px;
    color: var(--dark);
}

/* Titres */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--terracotta);
}

/* H1 : élégant, moderne */
h1 {
    font-size: 4.2rem;
    font-weight: 600;
    font-style: italic; /* option premium */
}

/* H2 : plus doux */
h2 {
    font-size: 3.2rem;
    margin-bottom: 35px;
    font-style: italic; /* optionnel mais très beau */
}

/* H3 : pour les cartes */
h3 {
    font-size: 1.5rem;
}


/* ----------------------------------
   2. NAVBAR
---------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: var(--light);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--dark);
}

.logo span {
    color: var(--terracotta);
}

.navbar ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
    color: var(--terracotta);
}

/* ----------------------------------
   3. HERO (HOME)
---------------------------------- */
.hero {
    height: 70vh;
    background: url("https://raw.githubusercontent.com/p-lume/yodotka/main/img/cover3.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: up;
    justify-content: center;
    text-align: center;
}

.hero {
    height: 75vh; /* un peu plus haut pour voir l’image */
    background: url("https://raw.githubusercontent.com/p-lume/yodotka/main/img/cover3.png")
                center/cover no-repeat fixed; /* parallax fixe */
    position: relative;
    display: flex;
    align-items: flex-start; /* remonte le texte */
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* ajuste la hauteur du texte */
}

.hero-content {
    background: rgba(255,255,255,0.65);
    padding: 25px 35px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--terracotta);
}


/* --- Gingko autour du copyright --- */
/* --- Gingko autour du copyright --- */
.footer-bottom {
    position: relative;
    text-align: center;
}

.footer-bottom p {
    position: relative;
    z-index: 2;
}

/* Taille commune des gingkos */
.footer-bottom .gingko {
    position: absolute;
    width: 60px; /* taille correcte */
    opacity: 0.8;
    z-index: 1;
}

/* Position du gingko gauche */
.footer-bottom .g1 {
    left: 35%;
    bottom: 0;
    transform: rotate(-45deg);
}

/* Position du gingko droit */
.footer-bottom .g2 {
    right: 35%;
    bottom: 0;
    transform: rotate(25deg);
}



/* ----------------------------------
   5. INTRO
---------------------------------- */
.intro {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    font-size: 1.1rem;
}

/* ----------------------------------
   6. TITRES
---------------------------------- */
h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--terracotta);
}

/* ----------------------------------
   7. CARDS
---------------------------------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
    transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform .5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    padding: 15px 20px 0;
    color: var(--terracotta);
}

.card p {
    padding: 0 20px;
}

.btn-small {
    display: inline-block;
    margin: 15px 20px;
    padding: 8px 16px;
    background: var(--terracotta);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-small:hover {
    background: var(--dark);
}
/* HARMONISATION DES CARTES PRESTATIONS */
.cards .card {
    display: flex;
    flex-direction: column;
    height: 100%; /* permet l’alignement parfait */
}

.card img {
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card h3,
.card p {
    padding: 0 20px;
}

.card p {
    flex-grow: 1; /* pousse le bouton vers le bas */
    margin-bottom: 15px;
}

.card .btn-small {
    align-self: flex-start;
    margin: 0 20px 20px;
}

/* GALLERY YOGA PREMIUM */
.yoga-gallery {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.yoga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.yoga-photo {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    background: var(--light);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yoga-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.yoga-photo:hover img {
    transform: scale(1.06);
}

/* ----------------------------------
   8. ANIMATIONS
---------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.appear {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------
   9. ABOUT HERO
---------------------------------- */
.about-hero {
    height: 50vh;
    background: url("https://raw.githubusercontent.com/p-lume/yodotka/main/img/cover3.png") center/cover no-repeat;
}

/* ----------------------------------
   10. DIPLOMES GRID
---------------------------------- */
/* HARMONISATION DES DIPLOMES */
.diplomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 40px 60px;
}

.dip-card {
    background: var(--light);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px; /* harmonisation */
    transition: transform .4s ease, box-shadow .4s ease;
}

.dip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dip-card h3 {
    color: var(--terracotta);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.dip-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark);
}


/* ----------------------------------
   11. HOME LAYOUT + SIDEBAR
---------------------------------- */
.home-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 40px;
    align-items: start;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.mini-bio, .insta-box {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.mini-bio h3, .insta-box h3 {
    color: var(--terracotta);
    margin-bottom: 10px;
}

/* ----------------------------------
   12. STORY + ABOUT
---------------------------------- */
.story {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.story p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.story.open .story-more {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
}

.btn-toggle {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--terracotta);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.btn-toggle::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s;
    margin: auto;
}

.btn-toggle:hover::after {
    width: 100%;
}

/* ABOUT INTRO */
.about-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px 30px;
    background: var(--light);
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
}

.about-text p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-text .icon {
    font-size: 1.4rem;
    margin-top: 3px;
}

/* STORY BLOCK */
.about-story {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-block {
    background: var(--light);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    line-height: 1.75;
    font-size: 1.1rem;
}

.story-block .highlight {
    background: var(--terracotta);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 25px;
    text-align: center;
}

/* ----------------------------------
   13. HERO RDV
---------------------------------- */
.hero-rdv {
    height: 45vh;
    background: url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-rdv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
}

.hero-rdv-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px 40px;
}

.hero-rdv-content h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.hero-rdv-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}
/* CARROUSEL PREMIUM FIN & ÉQUILIBRÉ */
.carousel {
    max-width: 750px; /* plus fin, plus élégant */
    margin: 50px auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: var(--light);
}

/* Taille harmonisée */
.carousel-slide {
    display: none;
    height: 320px; /* taille premium */
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* recadrage propre */
    object-position: center;
    border-radius: 14px;
    transition: transform .6s ease;
}

.carousel-slide.active img:hover {
    transform: scale(1.04);
}

/* Boutons fins */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: background .3s ease, transform .3s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

/* Mobile */
@media (max-width: 900px) {
    .carousel {
        max-width: 100%;
        padding: 0 15px;
    }

    .carousel-slide {
        height: 220px;
    }

    .carousel-btn {
        padding: 6px 10px;
        font-size: 16px;
    }
}

/* ----------------------------------
   14. FOOTER
---------------------------------- */
.footer {
    background: var(--light);
    padding: 50px 40px 20px;
    box-shadow: 0 -2px 10px var(--shadow);
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h4 {
    color: var(--terracotta);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--shadow);
    font-size: 0.9rem;
}

/* ----------------------------------
   15. RESPONSIVE PREMIUM
---------------------------------- */
@media (max-width: 900px) {

    .navbar {
        padding: 14px 20px;
    }

    .navbar ul {
        gap: 12px;
    }

    .hero,
    .hero-rdv,
    .about-hero {
        height: 45vh;
        padding: 0 15px;
    }

    .hero-content,
    .hero-rdv-content {
        padding: 15px 20px;
    }

    .hero h1,
    .hero-rdv-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .cards {
        padding: 0 20px;
        gap: 20px;
    }

    .card img {
        height: 180px;
    }

    .home-layout {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }

    .sidebar {
        position: static;
    }

    .about-intro,
    .about-story {
        margin: 40px auto;
        padding: 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    cursor: pointer;
    transition: .3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.active {
    border: 2px solid var(--terracotta);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* --- Shiatsu Session Steps --- */
.shiatsu-session {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 40px;
    text-align: center;
}

.session-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: .3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.step-card h3 {
    color: var(--terracotta);
    margin-bottom: 10px;
}
/* --- Shiatsu Benefits Grid --- */
.shiatsu-benefits {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--light);
    padding: 25px 15px;
    border-radius: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    font-weight: 600;
    color: var(--dark);
    border: 2px solid transparent;
    transition: .3s ease;
}

.benefit-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.mini-portrait {
    text-align: center;
    margin-bottom: 20px;
}

.mini-portrait img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--shadow);
    border: 3px solid var(--light);
}

.portrait-name {
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--terracotta);
    letter-spacing: 0.5px;
}
/* --- BLOC ACTUALITÉS --- */
.sidebar-news {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    animation: fadeUp 0.6s ease-out;
}

.sidebar-news h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--terracotta);
    font-weight: 600;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.news-title {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text);
    font-weight: 500;
}
/* HERO ARTICLES */
.hero-articles {
    background: url('img/hero-articles.jpg') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PAGE ARTICLES */
.articles-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ARTICLE CARD */
.article-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.article-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.article-content {
    padding: 20px 25px;
}

.article-title {
    font-size: 1.6rem;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.article-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.btn-read {
    display: inline-block;
    padding: 10px 18px;
    background: var(--terracotta);
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-read:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

