/* styles.css */

:root {
    --bg: #f8f2ef;
    /* beige rosé clair */
    --bg-alt: #f3e7e1;
    --mauve: #b27a92;
    /* mauve principal */
    --mauve-dark: #8b5a73;
    --text: #2b2324;
    --text-soft: #6b5a5f;
    --accent-script: #c47590;
    --radius: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-display: swap;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(248, 242, 239, 0.9);
    backdrop-filter: blur(18px);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(178, 122, 146, 0.25);
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-block img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(178, 122, 146, 0.6);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.brand-tagline {
    margin: 0.1rem 0 0;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-nav a {
    color: var(--text-soft);
    text-decoration: none;
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--mauve);
    transition: width 0.2s ease;
}

.site-nav a:hover {
    color: var(--mauve-dark);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Intro */

main {
    padding: 2.5rem 1.5rem 4rem;
}

.intro {
    max-width: 960px;
    margin: 0 auto 2.5rem;
}

.intro-card {
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
    border-radius: 36px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 0;
    width: 260px;
    height: 260px;
    background: var(--mauve);
    border-radius: 50% 50% 0 50%;
    opacity: 0.25;
}

.intro-card h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    margin: 0 0 0.75rem;
}

.intro-card p {
    max-width: 520px;
    line-height: 1.6;
    color: var(--text-soft);
}

/* Sections tarifs */

.tarifs-section {
    max-width: 1080px;
    margin: 0 auto 2.5rem;
}

.tarifs-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    position: relative;
}

.tarifs-section h2::after {
    content: "—";
    color: var(--accent-script);
    margin-left: 0.5rem;
}

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

.tarif-block {
    background: #fffdfc;
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(178, 122, 146, 0.12);
}

.tarif-block h3 {
    margin: 0 0 0.9rem;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1rem;
}

.tarif-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarif-block li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(178, 122, 146, 0.25);
}

.tarif-block li:last-child {
    border-bottom: none;
}

.price {
    white-space: nowrap;
    color: var(--mauve-dark);
    font-weight: 600;
}

.note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.tarif-section {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: sticky;
    bottom: 0.2;
    border-radius: var(--radius);
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    color: var(--text);

}

.tarif-section a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: ease-in-out 0.35s;
    color: var(--text);
}

.tarif-section a :hover {
    background-color: var(--mauve);
    color: var(--bg-alt);
    transition: ease-in-out 0.2s;
}

.maps {
    width: 500px;
    height: 350px;
    border: 0;
    border-radius: 18px;
}



/* Infos pratiques */

.infos-section {
    max-width: 960px;
    margin: 0 auto;
}

.infos-card {
    border-radius: 40px;
    background: linear-gradient(135deg, var(--mauve), var(--mauve-dark));
    color: #fff7f7;
    padding: 2rem 2.5rem;
    text-align: center;
}

.infos-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.infos-card p {
    margin: 0.25rem 0;
}

.social-title {
    margin-top: 1.2rem;
    font-family: "Alex Brush", cursive;
    font-size: 1.4rem;
}

.social-handles {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.85rem;
}


/* Footer */

.site-footer {
    border-top: 1px solid rgba(178, 122, 146, 0.25);
    padding: 1.3rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* Responsive */

@media (max-width: 720px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
    }

    main {
        padding-inline: 1rem;
    }

    .intro-card {
        border-radius: 26px;
        padding: 1.5rem 1.75rem;
    }

    .maps {
        width: auto;
        height: auto;
        border: 0;
        border-radius: 18px;
    }
}

.instagram-section {
    max-width: 900px;
    margin: 2.5rem auto;
    text-align: center;
}

.instagram-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.insta-carousel.small {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.insta-viewport {
    overflow: hidden;
    border-radius: 18px;
    background: #fffdfc;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 700px;
    /* taille globale du carrousel */
}

.insta-track {
    display: flex;
    transition: transform 0.4s ease;
}

.insta-track img {
    width: calc(100% / 3);
    /* 3 images visibles sur desktop */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex-shrink: 0;
}

/* Boutons */

.insta-prev,
.insta-next {
    border: none;
    background: rgba(248, 242, 239, 0.95);
    color: #8b5a73;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
}

/* Lien Insta */

.insta-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8b5a73;
    text-decoration: none;
    transition: transform 0.4s ease
}

.insta-link :hover {
    transition: ease-in-out 0.4s ease;
    text-decoration: underline;
}




/* Mobile : 1 photo visible */

@media (max-width: 640px) {
    .insta-track img {
        width: 100%;
        /* 1 image visible sur mobile */
    }
}