/* ==========================================================================
   La nature dans tous les sens - Static site stylesheet
   Colors:
     - Accent (coral/orange) : #ee8150
     - Secondary (blue-gray) : #9eb9c4
     - Body text             : #849196
     - Dark text             : #262b2e
     - Soft background       : #fcfefe
   Fonts: Roboto Slab, Roboto Condensed (Google Fonts)
   ========================================================================== */

:root {
    --accent: #ee8150;
    --accent-hover: #d96d3e;
    --secondary: #9eb9c4;
    --text: #849196;
    --text-dark: #262b2e;
    --bg-soft: #fcfefe;
    --border-light: #ecf6f9;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.top-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--text);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--text);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.2s ease;
}

.top-bar .social:hover {
    background: var(--accent);
    color: #fff;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.main-nav a {
    color: var(--text);
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
    position: relative;
    display: inline-block;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    color: var(--accent);
    cursor: pointer;
    align-self: flex-end;
    padding: 4px 10px;
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    background: url("../img/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-family: "Roboto Slab", serif;
    font-size: 47px;
    font-weight: 400;
    margin: 0 0 16px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Page title (boutique, tarifs, contact)
   ========================================================================== */
.page-title {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 50px 20px;
    text-align: center;
}

.page-title h1 {
    font-family: "Roboto Slab", serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.breadcrumbs li:not(:last-child)::after {
    content: " /";
    color: var(--text);
    margin-left: 6px;
}

.breadcrumbs a {
    color: var(--text);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 60px 20px;
}

.section.alt {
    background: var(--bg-soft);
}

.section-title {
    font-family: "Roboto Slab", serif;
    font-size: 26px;
    color: var(--accent);
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.3;
}

.subtitle {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 1.5;
    margin: 0 0 12px;
}

.divider {
    width: 50px;
    height: 4px;
    background: var(--secondary);
    border: 0;
    margin: 0 auto 18px;
}

.divider.left {
    margin: 0 0 18px;
}

.divider.dashed {
    width: 100%;
    background: transparent;
    border-top: 1px dashed var(--border-light);
    height: 0;
    margin: 16px 0;
}

/* ==========================================================================
   Domains grid (homepage)
   ========================================================================== */
.domains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.domain {
    text-align: center;
    padding: 20px;
}

.domain h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 16px;
}

.domain img {
    margin: 16px auto;
    max-width: 150px;
}

.domain p {
    font-size: 15px;
    color: var(--text);
    margin: 0 0 24px;
    min-height: 70px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid var(--accent);
    border-radius: 35px;
    background: #fff;
    color: var(--accent);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ==========================================================================
   Boutique sections
   ========================================================================== */
.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.intro-text .lead {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    color: var(--text);
    line-height: 1.5;
    margin: 0 0 16px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.card {
    background: var(--bg-soft);
    padding: 30px;
    border-radius: 4px;
}

.card h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 12px;
}

.card p {
    margin: 12px 0 0;
}

.card .small {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 12px;
}

.bol-air {
    max-width: var(--max-width);
    margin: 0 auto;
    background: #fcfbfd;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.bol-air h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    text-align: left;
}

.bol-air .divider {
    margin-left: 0;
}

.bol-air p {
    text-align: left;
    margin: 16px 0;
}

/* ==========================================================================
   Gallery (boutique)
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item,
.gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    aspect-ratio: 4 / 4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item {
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.bol-air-figure {
    margin: 0 auto 24px;
    max-width: 600px;
}

.bol-air-figure img {
    border-radius: 4px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* ==========================================================================
   Article (consultation pages)
   ========================================================================== */
.article {
    max-width: 820px;
    margin: 0 auto;
}

.article-figure {
    width: 50%;
    margin: 0 auto 28px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.article-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.article h2 {
    font-family: "Roboto Slab", serif;
    font-size: 23px;
    color: var(--accent);
    line-height: 1.3;
    margin: 32px 0 12px;
}

.article h2:first-child {
    margin-top: 0;
}

.article h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 1.5;
    margin: 28px 0 10px;
}

.article p {
    margin: 0 0 14px;
    line-height: 1.7;
}

.article ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.article li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.article blockquote {
    margin: 0 0 24px;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.article blockquote p {
    margin: 0 0 6px;
    font-family: "Roboto Slab", serif;
    font-size: 17px;
    color: var(--text-dark);
    font-style: italic;
}

.article blockquote footer {
    font-size: 13px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Tarifs (pricing)
   ========================================================================== */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tarifs-col h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 16px;
}

.tarif-item {
    padding: 16px 0;
    border-bottom: 1px dashed var(--border-light);
}

.tarif-item:last-child {
    border-bottom: 0;
}

.tarif-item h4 {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--accent);
    margin: 0 0 8px;
    line-height: 1.3;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.tarif-desc {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.tarif-desc em {
    color: var(--text);
    font-size: 12px;
}

.prix {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    color: var(--secondary);
    text-align: right;
    white-space: nowrap;
}

/* ==========================================================================
   Contact info
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.info-box {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-box-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(238, 129, 80, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.info-box-content h3 {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    margin: 0 0 6px;
    line-height: 1.4;
}

.info-box-content p,
.info-box-content div {
    margin: 2px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

.info-box-content a {
    color: var(--text);
}

.info-box-content a:hover {
    color: var(--accent);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text);
}

.site-footer a {
    color: var(--text);
}

.site-footer a:hover {
    color: var(--accent);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .domains {
        grid-template-columns: 1fr;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .gallery.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 18px;
    }
    .page-title h1 {
        font-size: 28px;
    }
    .section {
        padding: 40px 20px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    .top-bar-inner {
        justify-content: center;
        gap: 12px;
        font-size: 13px;
    }

    .menu-toggle {
        display: inline-block;
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .site-header-inner {
        align-items: center;
        padding: 16px 20px;
        position: relative;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .main-nav.is-open {
        display: flex;
    }

    .hero {
        height: 60vh;
        min-height: 380px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .prix {
        text-align: left;
    }
}
