/* --- Variables & Reset --- */
:root {
    --primary-color: #cc8b65; /* Warm Terracotta */
    --secondary-color: #e6b8a2; /* Soft Warm Beige */
    --text-color: #594a42; /* Warm Dark Brown */
    --bg-light: #fff8f0; /* Warm Off-white */
    --white: #ffffff;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --spacing-unit: 2rem;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.section-padding { padding: 4rem 0; }
.rounded { border-radius: 8px; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b07655;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Typography Helpers */
.phone-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.cta-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.address-block {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-list {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.content-list li {
    margin-bottom: 0.5rem;
}

/* --- Navigation --- */
nav {
    position: fixed; /* Sticky behavior handled by JS class usually, but fixed works well */
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 400;
    font-size: 1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Mobile Burger */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('../images/accroche.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; /* Offset for fixed nav */
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: var(--shadow);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Headers (Small Hero) */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
}

.header-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem 4rem;
    border-radius: 4px;
}

.header-overlay h1 {
    margin: 0;
    color: var(--primary-color);
}

/* --- Grid Systems (2x3, 2x2) --- */
.grid-2x3, .grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.grid-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.grid-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* --- Flex Layouts (Text + Image) --- */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.flex-row.reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex: 1;
    min-width: 300px;
}

.image-placeholder-single {
    margin: 2rem auto;
    max-width: 800px;
}

.image-placeholder-single img {
    border-radius: 8px;
    width: 100%;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-style: italic;
}

.testimonial-card span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
    color: var(--primary-color);
}

/* --- Accordion (FAQ) --- */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #666;
}

/* --- Bottom Contact Bar --- */
.bottom-contact {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: auto; /* Push to bottom if flex container */
}

.contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-action .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-action .btn-primary:hover {
    background-color: #f0f0f0;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #aaa;
    padding: 2rem 0;
    font-size: 0.9rem;
}

footer a {
    color: #ccc;
    text-decoration: underline;
}

.cta-wrapper {
    margin-top: 2rem;
}

.divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 3rem 0;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .hero-content h1 { font-size: 2rem; }
    
    .contact-bar {
        flex-direction: column;
        text-align: center;
    }
}
