/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f0;
}

/* En-tête */
header {
    background-color: #5a1a1a;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4a762;
}

/* Hero section */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    max-width: 600px;
    background-color: rgba(90, 26, 26, 0.7);
    padding: 2rem;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Contenu principal */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d4a762;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #5a1a1a;
    margin-bottom: 0.5rem;
}

/* Sections */
.about, .terroir-section, .innovation {
    margin-bottom: 3rem;
}

.about h2, .terroir-section h2, .innovation h2 {
    color: #5a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.content-image, .terroir-image, .innovation-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Articles de blog */
.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.blog-post h2 {
    color: #5a1a1a;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #5a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #d4a762;
}

.read-more:hover {
    color: #d4a762;
}

/* Pied de page */
footer {
    background-color: #2c0a0a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.contact {
    margin-bottom: 1.5rem;
}

.contact h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact a {
    color: #d4a762;
    text-decoration: none;
}

.social {
    margin: 1.5rem 0;
}

.social a {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero-text {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }
}