/* Global Styles */
:root {
    --primary-orange: #d9531e;
    --dark-orange: #b83d0c;
    --bg-cream: #faf6f0;
    --bg-card: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --dark-footer: #111111;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.logo {
    height: 65px;
    width: auto;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-orange);
}

.btn-reserver-nav {
    background-color: var(--primary-orange);
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.phone-link {
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1em;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('poulet_hero.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 8%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(250, 246, 240, 0.95) 35%, rgba(250, 246, 240, 0.4) 65%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-logo-img {
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

.title-sub {
    font-size: 1.1em;
}

.divider-line {
    margin: 15px 0;
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    padding: 4px 0;
    text-align: center;
}

.divider-line span {
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.95em;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6em;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    background: #111111;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: var(--primary-orange);
}

/* Sections Common */
.section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.icon-header {
    font-size: 1.8em;
}

.section-title-wrapper h2 {
    font-size: 1.6em;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0 10px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    margin: 10px auto 0;
}

/* Marchés */
.marches-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.marche-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.pin-icon {
    font-size: 2em;
    color: var(--primary-orange);
}

.marche-card h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
}

.marche-card .jour {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.1em;
}

.marche-card .horaires {
    color: var(--text-muted);
}

/* Produits */
.produits-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.produit-card {
    width: 180px;
    text-align: center;
}

.img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-card h4 {
    font-size: 0.9em;
    font-weight: 700;
    line-height: 1.2;
}

.sub-label {
    font-size: 0.85em;
    margin-top: 5px;
}

.sub-label.orange {
    color: var(--primary-orange);
    font-weight: 600;
}

.sub-label.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-orange);
}

/* Booking Section */
.booking-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-icon {
    font-size: 2.5em;
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 0 20px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-num {
    width: 35px;
    height: 35px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
}

.step p {
    font-size: 0.85em;
    font-weight: 600;
}

.step-arrow {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2em;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.booking-form label {
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 6px;
}

.booking-form input, .booking-form select {
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95em;
}

.btn-submit {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--dark-orange);
}

/* Footer */
footer {
    background: var(--dark-footer);
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-phone {
    font-size: 1.3em;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .hero {
        padding: 40px 20px;
        min-height: auto;
    }
    .hero-overlay {
        background: rgba(250, 246, 240, 0.9);
    }
    .steps-row {
        flex-direction: column;
        gap: 15px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
    .form-row {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
