/* Styles Généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body { background-color: #f9f9f9; color: #333; line-height: 1.6; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; color: #d4af37; letter-spacing: 2px; }

.nav-links { display: flex; list-style: none; }

.nav-links li { margin-left: 20px; }

.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: 0.3s; }

.nav-links a:hover { color: #d4af37; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover { background: #b8962d; }

/* Sections */
.section-title { text-align: center; margin: 40px 0; font-size: 2rem; position: relative; }

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto;
}

/* Services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 5%;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-card i { font-size: 2.5rem; color: #d4af37; margin-bottom: 15px; }

/* Galerie d'actualité */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0 5%;
}

.news-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: 0.3s;
}

.news-item:hover .overlay { transform: translateY(0); }
.news-item:hover img { scale: 1.1; }

/* Contact */
.contact { background: #333; color: #fff; padding: 50px 5%; text-align: center; }

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.info-item i { font-size: 1.5rem; color: #d4af37; margin-bottom: 10px; }

footer { text-align: center; padding: 20px; background: #222; color: #777; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; } /* On pourrait ajouter un menu burger ici */
    .hero-content h1 { font-size: 2rem; }
}