/* RESET & BASICS */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #0f0a06; /* Dark coffee brown */
    --bg-card: #1a120b;
    --primary: #d4af37; /* Gold luxe */
    --text-main: #fcf9f2;
    --text-muted: #a89f91;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, .logo-text { font-family: 'Playfair Display', serif; }
.highlight { color: var(--primary); }

/* NAVBAR */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; background: transparent; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(15, 10, 6, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 5%;
}
.logo { text-decoration: none; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: white; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: white; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); padding-bottom: 5px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }

.btn-primary {
    background: var(--primary); color: var(--bg-dark) !important;
    padding: 0.7rem 1.5rem; border-radius: 4px; font-weight: bold; border: none; cursor: pointer; display: inline-block; text-decoration: none; transition: var(--transition);
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-outline {
    border: 1px solid var(--primary); color: var(--primary) !important;
    padding: 1rem 2rem; border-radius: 4px; text-decoration: none; font-weight: bold; display: inline-block; transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: var(--bg-dark) !important; }

.mobile-menu-btn { display: none; font-size: 1.8rem; color: white; cursor: pointer; z-index: 1001; }

/* HERO IMMERSIVE */
.hero-immersive { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 5%; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; animation: slowZoom 20s infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: -1; }
.hero-content { max-width: 800px; z-index: 1; }
.badge { display: inline-block; padding: 5px 15px; border: 1px solid var(--primary); color: var(--primary); border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.hero-immersive h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-immersive p { font-size: 1.2rem; color: #ddd; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; }

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

/* SECTIONS */
.section-padding { padding: 6rem 5%; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; margin-bottom: 1rem; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; }
.dark-bg { background-color: #120c08; }

/* TEASER GRID (Accueil) */
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.teaser-card { position: relative; height: 400px; border-radius: 12px; overflow: hidden; display: block; text-decoration: none; border: 1px solid rgba(212, 175, 55, 0.2); }
.teaser-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.teaser-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); display: flex; align-items: flex-end; padding: 2rem; }
.teaser-card:hover .teaser-img { transform: scale(1.1); }
.teaser-overlay h3 { color: white; font-size: 1.5rem; font-weight: bold; transition: color 0.3s; display: flex; align-items: center; gap: 10px; }
.teaser-card:hover h3 { color: var(--primary); }

/* INFO BOXES (Accueil) */
.info-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.info-box i { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; }
.info-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.info-box p { color: var(--text-muted); }
.text-link { color: var(--primary); text-decoration: none; font-weight: bold; display: inline-flex; align-items: center; gap: 5px; margin-top: 1rem; }
.text-link:hover { text-decoration: underline; }

/* FOOTER */
footer { background: #0a0604; padding: 4rem 5% 2rem; border-top: 1px solid rgba(212, 175, 55, 0.2); text-align: center; }
.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto 3rem; flex-wrap: wrap; gap: 2rem; }
.footer-brand p { color: var(--text-muted); margin-top: 0.5rem; }
.footer-contact p { color: var(--text-main); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; justify-content: center; }
.footer-contact i { color: var(--primary); }
.copyright { color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: var(--transition); text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; } .delay-3 { animation-delay: 0.6s; }
@keyframes fadeUpAnim { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translate(0); }

/* MOBILE */
@media (max-width: 900px) {
    .hero-immersive h1 { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links.active {
        display: flex; position: fixed; top: 70px; left: 0; width: 100%; height: 100vh;
        background: rgba(15,10,6,0.98); flex-direction: column; align-items: center; padding-top: 2rem;
    }
}