/* --- VARIABLES & RESET --- */
:root {
    /* Couleurs demandées par le client */
    --color-lin: #F5F2EB; /* Une couleur lin très douce et élégante */
    --color-lin-dark: #E6DED0; /* Lin légèrement plus foncé pour les contrastes */
    --color-text-black: #1A1A1A; /* Noir profond mais pas pur pour plus de douceur */
    --color-white: #FFFFFF;
    --color-provence: #7A8B5D; /* Touche provençale : Vert olive doux */
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif; /* Pour un côté premium et "artisanal/local" */
    --font-body: 'Outfit', sans-serif; /* Moderne et très lisible */
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-lin);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237A8B5D' fill-opacity='0.07' fill-rule='evenodd'%3E%3Cpath d='M10 20 Q 25 5 40 20 Q 25 35 10 20 Z' /%3E%3Ccircle cx='32' cy='12' r='3' /%3E%3Cpath d='M60 70 Q 75 55 90 70 Q 75 85 60 70 Z' /%3E%3Ccircle cx='82' cy='62' r='3' /%3E%3C/g%3E%3C/svg%3E");
    color: var(--color-text-black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-black);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--color-provence);
    margin: 1rem auto 0;
}

.mt-4 {
    margin-top: 4rem;
}

/* --- BOUTONS --- */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-text-black);
    color: var(--color-lin);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 1px solid var(--color-text-black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text-black);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-fast);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-black);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-text-black);
    transition: var(--transition-fast);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-text-black);
    transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.hero-image-container {
    width: 100%;
    max-width: 1000px;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* --- MENU SECTION --- */
.menu-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-provence);
    padding-left: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.menu-card {
    background-color: var(--color-lin);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
    transform: translateY(0);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

/* --- PRODUCTEURS SECTION --- */
.about-section {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--color-lin-dark);
}

.about-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.4;
}

.about-image-container {
    width: 100%;
    max-width: 900px;
    height: 50vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

/* --- AVIS GOOGLE SECTION --- */
.reviews-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.review-card {
    background-color: var(--color-lin);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-provence);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-right: 15px;
}

.reviewer-info h4 {
    margin-bottom: 0px;
    font-size: 1.1rem;
}

.stars {
    color: #FBBC05;
    font-size: 1.2rem;
    line-height: 1;
}

.google-icon {
    margin-left: auto;
}

.review-text {
    font-style: italic;
    opacity: 0.8;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-text-black);
    color: var(--color-lin);
    padding: 5rem 0 2rem;
}

.footer h2, .footer h4 {
    color: var(--color-lin);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-qr h4 {
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background-color: var(--color-lin);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-black);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    border: 2px dashed rgba(26, 26, 26, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 242, 235, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* --- IMAGE PLACEHOLDERS (Pour le client) --- */
.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E2DFD6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 26, 26, 0.5);
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px dashed rgba(26, 26, 26, 0.2);
    box-sizing: border-box;
}

.hero-placeholder {
    font-size: 1.5rem;
}

/* --- ANIMATIONS & UTILS --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* --- BOUTON D'APPEL FLOTTANT --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(122, 139, 93, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(122, 139, 93, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(122, 139, 93, 0);
    }
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-provence);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #65754b;
    animation: none;
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-lin);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-slow);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Animation du burger */
    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
