:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --cream: #F5F5DC;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/placeholder-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    max-width: 300px;
    margin: 0 auto 30px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Univers Gourmands Section */
.univers {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--black);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.univers-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--cream);
    transition: all 0.3s ease;
}

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

.univers-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.univers-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

/* Chin Chin Section */
.chinchin {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/placeholder-chinchin.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.chinchin-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.chinchin-btn {
    margin-top: 30px;
}

/* Distributeur Section */
.distributeur {
    padding: 100px 0;
    background-color: var(--gold);
    color: var(--black);
    text-align: center;
}

.distributeur-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.distributeur-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-dark {
    background-color: var(--black);
    color: var(--gold);
    border: 2px solid var(--black);
}

/* Galerie Section */
.galerie {
    padding: 100px 0;
    background-color: var(--cream);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.galerie-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    overflow: hidden;
}

/* Footer */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.copyright {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .univers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    .univers-grid {
        grid-template-columns: 1fr;
    }
    
    .galerie-grid {
        grid-template-columns: 1fr;
    }
}