/* =====================================================
   Virginie Chedeville — global styles
   ===================================================== */

:root {
    --sage: #8B9B7A;
    --sage-dark: #5C6B50;
    --cream: #F7F3EC;
    --cream-dark: #EDE8DF;
    --gold: #BFA27A;
    --gold-dark: #A8895D;
    --dark: #1A1A1A;
    --text: #3A3A3A;
    --text-muted: #767676;
}

body {
    font-family: 'Raleway', system-ui, sans-serif;
    font-weight: 300;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ---------- Brand / logo ---------- */
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1;
}
.brand-subtitle {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ---------- Navbar ---------- */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.navbar .nav-link {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
}
.navbar .nav-link:hover {
    color: var(--gold) !important;
}

/* ---------- Buttons ---------- */
.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    padding: 0.85rem 1.75rem;
    font-weight: 400;
}
.btn-gold {
    background-color: var(--gold);
    color: #ffffff;
    border: 1px solid var(--gold);
}
.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #ffffff;
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #ffffff;
}
.btn-outline-cream {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-cream:hover {
    background-color: #ffffff;
    color: var(--dark);
}
.btn-outline-dark-custom {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}
.btn-outline-dark-custom:hover {
    background-color: var(--dark);
    color: #ffffff;
}

/* ---------- Section utilities ---------- */
.section {
    padding: 5rem 0;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.section-text {
    color: var(--text);
    font-size: 0.95rem;
}

.bg-sage {
    background-color: var(--sage);
    color: #ffffff;
}
.bg-sage .section-label {
    color: rgba(255, 255, 255, 0.85);
}
.bg-sage .section-title,
.bg-sage .section-text {
    color: #ffffff;
}
.bg-cream {
    background-color: var(--cream);
}
.bg-dark-custom {
    background-color: var(--dark);
    color: #ffffff;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('/images/Virginie-Chedeville-Soins-Holistiques-Rennes3-scaled.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 10, 0.25) 0%, rgba(20, 15, 10, 0.6) 100%);
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: #ffffff;
}
.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 75vh;
    }
}

/* ---------- Intro section ---------- */
.intro-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
/* ---------- Service cards ---------- */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.service-card-link .service-card-image {
    transition: opacity 0.25s ease;
}
.service-card-link:hover .service-card-image {
    opacity: 0.88;
}
.service-card-link:hover h3 {
    color: var(--gold);
}
.service-card {
    text-align: center;
    padding-bottom: 1.5rem;
}
.service-card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0 0.5rem;
}

/* ---------- Gallery ---------- */
.gallery-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ---------- Testimonial ---------- */
.testimonial-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
}
.testimonial-author {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 6%;
    opacity: 0.6;
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: invert(40%) sepia(8%) saturate(550%) hue-rotate(10deg);
}

/* ---------- Video section ---------- */
.video-section {
    position: relative;
    height: 540px;
    overflow: hidden;
    background-color: #4A5240;
    color: #ffffff;
}
.video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Experience section ---------- */
.portrait-oval {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 50% / 40%;
    background-color: var(--cream);
    display: block;
    margin: 0 auto;
}

/* ---------- Instagram grid ---------- */
.instagram-tile {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity 0.2s ease;
}
.instagram-tile:hover {
    opacity: 0.85;
}

/* ---------- Newsletter / CTA ---------- */
.form-control {
    border-radius: 0;
    border-color: var(--cream-dark);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 0.9rem;
}
.feature-list li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
    font-size: 0.875rem;
}
.footer .brand-name,
.footer .brand-subtitle {
    color: #ffffff;
}
.footer h4 {
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}
.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer a:hover {
    color: var(--gold);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    padding: 0.3rem 0;
}
.footer-socials {
    display: flex;
    gap: 0.5rem;
}
.footer-socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
.footer-qr {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Page stub ---------- */
.page-stub {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
}
.page-stub h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}
.page-stub p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* ---------- Preview gate (private access) ---------- */
.preview-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--cream);
}
.preview-gate-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 991.98px) {
    .section {
        padding: 3rem 0;
    }
    .gallery-img,
    .service-card-image {
        height: 280px;
    }
    .video-section {
        height: 360px;
    }
}

/* ---------- Page hero (content pages) ---------- */
.page-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-hero--short {
    height: 65vh;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,15,10,0.15) 0%, rgba(20,15,10,0.35) 100%);
}

/* ---------- Scrolling band (marquee) ---------- */
.scrolling-band {
    overflow: hidden;
    background-color: var(--cream-dark);
    padding: 0.9rem 0;
    white-space: nowrap;
}
.scrolling-band-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}
.scrolling-band span {
    padding: 0 2.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scrolling-band--dark {
    background-color: var(--dark);
}
.scrolling-band--dark span {
    color: rgba(255,255,255,0.5);
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Tarif blocks ---------- */
.tarif-block {
    padding: 1.75rem 0;
    border-top: 2px solid var(--gold);
}
.tarif-block + .tarif-block {
    margin-top: 1rem;
}
.tarif-block-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.tarif-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.tarif-block-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.tarif-block p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ---------- Gallery mosaic ---------- */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
}
.gallery-mosaic-main {
    grid-row: span 2;
}
.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-mosaic-main img {
    height: 520px;
}
.gallery-mosaic-small img {
    height: 258px;
}

@media (max-width: 767.98px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    .gallery-mosaic-main img,
    .gallery-mosaic-small img {
        height: 260px;
    }
}

/* ---------- Article cards (recent articles section) ---------- */
.article-card {
    display: flex;
    flex-direction: column;
}
.article-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}
.article-card-category {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.article-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 0.4rem;
}
.article-card-title:hover {
    color: var(--gold);
}
.article-card-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- Blog list ---------- */
.blog-article-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}
.blog-article-item:first-child {
    padding-top: 0;
}
.blog-article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    color: var(--dark);
    text-decoration: none;
}
.blog-article-title:hover {
    color: var(--gold);
}
.blog-article-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    margin-top: 1.5rem;
}
.blog-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 0.75rem;
}
.blog-arrow-link:hover {
    color: var(--gold-dark);
}

/* ---------- Article page ---------- */
.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.article-body p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.article-prev-next {
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 1.5rem 0;
    margin: 2rem 0;
}
.article-prev-next a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.article-prev-next a:hover {
    color: var(--gold);
}

/* ---------- Prestation tabs (Soins Holistiques) ---------- */
.prestation-tabs {
    background-color: var(--cream);
    padding: 2.5rem 0;
}
.prestation-tabs .nav-tabs {
    border-bottom: 1px solid var(--cream-dark);
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.prestation-tabs .nav-tabs .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0;
    border-radius: 0;
    background: none;
}
.prestation-tabs .nav-tabs .nav-link.active,
.prestation-tabs .nav-tabs .nav-link:hover {
    color: var(--dark);
    border-bottom-color: var(--gold);
}

/* ---------- Soin fiche (inside tabs) ---------- */
.soin-fiche {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-dark);
}
.soin-fiche:last-child {
    border-bottom: none;
}
.soin-fiche-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.soin-fiche-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.soin-fiche p {
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

/* ---------- Citation band ---------- */
.citation-band {
    padding: 4rem 0;
    text-align: center;
}
.citation-band-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dark);
}
.citation-band--dark .citation-band-text {
    color: #ffffff;
}

/* ---------- Dark leaf section ---------- */
.section-dark-leaf {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.section-dark-leaf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.65);
}
.section-dark-leaf .container {
    position: relative;
    z-index: 1;
}

/* ---------- Maison St Georges partial ---------- */
.maison-section {
    padding: 4rem 0;
}
.maison-section-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ---------- Mentions légales ---------- */
.mentions-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.mentions-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}
.mentions-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.mentions-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .page-hero,
    .page-hero--short {
        height: 50vh;
    }
    .gallery-mosaic-main img {
        height: 300px;
    }
}
