/*
 * Nom du fichier : style.css
 * Description : Feuille de style principale du site public (Design 2026 - Quiet Luxury)
 * Palette : Or (#D4AF37), Noir (#1A1A1A), Beige Sable (#F9F8F6)
 * Date de mise à jour : 08 Janvier 2026
 */

:root {
    --gold: #D4AF37;
    --gold-light: #f3e5ab;
    --beige-bg: #F9F8F6;
    --beige-warm: #F2EFE9;
    --dark: #121212;
    --text-grey: #4A4A4A;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.04);
    --container-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; overflow-x: hidden; font-family: 'Open Sans', sans-serif; background: var(--beige-bg); color: var(--text-grey); line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); font-weight: 700; }

/* HEADER */
header { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); box-shadow: 0 2px 15px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 1000; height: 90px; width: 100%; transition: all 0.3s ease; }
.header-container { max-width: var(--container-width); height: 100%; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo-container { height: 60px; cursor: pointer; display: flex; align-items: center; }
.logo-img { height: 100%; width: auto; object-fit: contain; }

/* NAV */
nav { display: flex; align-items: center; gap: 20px; }
.menu-desktop { list-style: none; display: flex; gap: 25px; align-items: center; }
.menu-desktop li { position: relative; }
.menu-desktop a { text-decoration: none; color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; transition: color 0.3s ease; padding: 10px 0; display: flex; align-items: center; gap: 5px; }
.menu-desktop a:hover { color: var(--gold); }
.menu-desktop a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 5px; left: 0; background: var(--gold); transition: width 0.3s ease; }
.menu-desktop a:hover::after { width: 100%; }

/* DROPDOWN */
.dropdown-content { display: none; position: absolute; top: 100%; left: -10px; background: var(--white); min-width: 240px; box-shadow: var(--shadow); border-radius: 8px; padding: 10px 0; z-index: 100; animation: fadeIn 0.2s ease-in-out; border-top: 3px solid var(--gold); }
.menu-desktop li:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 12px 20px; display: block; border-bottom: none; text-transform: none; font-size: 0.95rem; font-weight: 500; }
.dropdown-content a:hover { background: var(--beige-bg); color: var(--gold); }
.dropdown-content a::after { display: none; }

/* BOUTONS */
.btn-reserver-nav { background: var(--dark); color: var(--white); padding: 12px 28px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: all 0.3s ease; display: inline-block; }
.btn-reserver-nav:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

/* MOBILE CONTROLS */
.mobile-nav-controls { display: none; align-items: center; gap: 15px; }
.btn-reserver-mobile { background: var(--gold); color: white; border: none; padding: 8px 15px; border-radius: 50px; font-weight: bold; font-size: 0.75rem; text-transform: uppercase; cursor: pointer; }
.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.burger-menu span { width: 25px; height: 3px; background: var(--dark); transition: 0.3s; }

/* MOBILE MENU */
.mobile-menu { position: fixed; top: 90px; left: 0; width: 100%; background: var(--white); display: none; flex-direction: column; text-align: center; border-bottom: 2px solid var(--gold); box-shadow: 0 5px 10px rgba(0,0,0,0.1); z-index: 999; max-height: 80vh; overflow-y: auto; }
.mobile-menu.open { display: flex; animation: slideDown 0.3s ease; }
@keyframes slideDown { from{opacity:0; transform:translateY(-20px);} to{opacity:1; transform:translateY(0);} }
.mobile-menu a { padding: 15px; border-bottom: 1px solid #eee; text-decoration: none; color: var(--dark); font-weight: bold; font-family: 'Montserrat'; text-transform: uppercase; cursor: pointer; }
.mobile-submenu { background: var(--beige-bg); display: none; flex-direction: column; }
.mobile-submenu a { font-size: 0.9em; padding: 10px; border-bottom: 1px solid #ddd; color: #555; text-transform: none; }
.has-submenu.active .mobile-submenu { display: flex; }

.whatsapp-top-right { position: fixed; bottom: 30px; right: 30px; z-index: 1100; background: var(--whatsapp); color: white; padding: 12px 20px; border-radius: 50px; font-weight: bold; text-decoration: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); font-size: 1rem; transition: transform 0.3s; }
.whatsapp-top-right:hover { transform: scale(1.05); }

/* VUES SPA */
.view { display: none; opacity: 0; transition: opacity 0.4s ease; width: 100%; }
.view.active { display: block; opacity: 1; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* HERO */
.hero-slider { height: 90vh; width: 100%; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; transform: scale(1.05); animation: zoomOut 10s infinite alternate; }
@keyframes zoomOut { from { transform: scale(1.1); } to { transform: scale(1); } }
.slide.active { opacity: 1; z-index: 1; }
.overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)); z-index: 2; }
.slide-content { position: relative; z-index: 3; text-align: center; color: var(--white); max-width: 800px; padding: 20px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; animation: fadeInUp 0.8s ease-out 0.1s backwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.slide-content h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 20px; color: var(--white); text-shadow: 0 4px 20px rgba(0,0,0,0.3); text-align: center; }
.slide-content p { font-family: 'Montserrat', sans-serif; font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; color: rgba(255,255,255,0.9); text-align: center; }
.btn-hero { background: var(--white); color: var(--dark); padding: 18px 45px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-hero:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* SECTIONS */
.section { padding: 100px 20px; }
.container { max-width: var(--container-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-subtitle { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.section-title { font-size: 3rem; margin-bottom: 20px; position: relative; display: inline-block; line-height: 1.2; }

/* VIGNETTES */
.vignettes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.vignette-card { position: relative; height: 350px; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.vignette-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.vignette-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: background 0.3s; }
.vignette-card:hover img { transform: scale(1.1); }
.vignette-card:hover .vignette-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2)); }
.vignette-title { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 5px; transform: translateY(0); transition: transform 0.3s; }
.vignette-btn { color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; opacity: 0; transform: translateY(20px); transition: all 0.3s; }
.vignette-card:hover .vignette-title { transform: translateY(-5px); }
.vignette-card:hover .vignette-btn { opacity: 1; transform: translateY(0); }

/* CONCEPT */
.concept-section { background: var(--beige-warm); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.concept-img-wrapper { position: relative; height: 500px; border-radius: var(--radius); overflow: hidden; box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2); }
.concept-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.concept-content h3 { font-size: 2.2rem; margin-bottom: 25px; }
.concept-content p { font-size: 1.05rem; margin-bottom: 20px; color: var(--text-grey); }

/* PRESTATIONS */
.page-header { background: var(--beige-dark); padding: 100px 20px; text-align: center; margin-bottom: 50px; }
.page-header h1 { font-family: 'Playfair Display'; font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--dark); margin-bottom: 10px; }
.category-title { font-family: 'Playfair Display'; font-size: 2.2rem; color: var(--dark); margin: 80px 0 40px; text-align: center; position: relative; }
.category-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 20px auto 0; }
.services-grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.service-img-container { height: 240px; width: 100%; overflow: hidden; position: relative; }
.service-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img-container img { transform: scale(1.05); }
.service-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.service-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; border-bottom: 1px solid var(--beige-dark); padding-bottom: 15px; }
.service-card h3 { font-size: 1.4rem; margin: 0; line-height: 1.3; color: var(--dark); }
.service-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold); font-size: 1.2rem; white-space: nowrap; margin-left: 15px; }
.service-desc { font-size: 0.95rem; color: var(--text-grey); margin-bottom: 20px; flex-grow: 1; }
.service-quote { font-style: italic; color: var(--dark); font-size: 0.9rem; background: var(--beige-bg); padding: 12px; border-left: 3px solid var(--gold); margin-bottom: 25px; }
.btn-book-card { display: block; width: 100%; text-align: center; padding: 14px; background: var(--dark); color: var(--white); text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 6px; transition: 0.3s; border: 1px solid var(--dark); cursor: pointer; }
.btn-book-card:hover { background: var(--white); color: var(--dark); }

/* SOLIDAIRE */
.solidarity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 40px; }
.solidarity-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius); border-top: 4px solid var(--gold); box-shadow: var(--shadow); text-align: center; transition: transform 0.3s; display: flex; flex-direction: column; }
.solidarity-card:hover { transform: translateY(-5px); }
.solidarity-icon { font-size: 3rem; margin-bottom: 20px; color: var(--dark); display: block; }
.solidarity-title { font-family: 'Playfair Display'; font-size: 1.6rem; margin-bottom: 10px; font-weight: bold; }
.solidarity-objective { font-family: 'Montserrat'; font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; }
.solidarity-content { text-align: left; font-size: 0.95rem; color: var(--text-grey); line-height: 1.8; flex-grow: 1; }
.creole-phrase { text-align: center; margin-top: 80px; font-family: 'Playfair Display'; font-size: 2.2rem; color: var(--gold); font-style: italic; text-shadow: 1px 1px 2px rgba(0,0,0,0.05); }

/* FOOTER */
footer { background: var(--dark); color: var(--white); padding: 80px 20px; text-align: center; }
.footer-logo { font-family: 'Playfair Display'; font-size: 2.5rem; margin-bottom: 30px; display: block; color: var(--gold); }
.footer-links { margin-bottom: 30px; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--white); }
.social-footer { display: flex; justify-content: center; gap: 20px; }
.social-footer a { color: var(--white); font-size: 1.5rem; transition: 0.3s; }
.social-footer a:hover { color: var(--gold); }

/* MODAL */
.modal-overlay { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); justify-content: center; align-items: center; animation: fadeInModal 0.3s ease; }
@keyframes fadeInModal { from{opacity:0;} to{opacity:1;} }
.modal-card { background: var(--white); width: 90%; max-width: 500px; border-radius: 15px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); position: relative; border-top: 5px solid var(--gold); max-height: 90vh; overflow-y: auto; animation: slideUpModal 0.3s ease; }
@keyframes slideUpModal { from{transform:translateY(50px);} to{transform:translateY(0);} }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: #aaa; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--gold); }
.booking-form .form-row { display: flex; gap: 15px; }
.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.booking-form input, .booking-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; font-family: 'Open Sans', sans-serif; background: #fdfdfd; transition: 0.3s; }
.booking-form input:focus, .booking-form select:focus { border-color: var(--gold); outline: none; background: white; box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
.btn-submit-booking { width: 100%; padding: 15px; background: var(--dark); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.btn-submit-booking:hover { background: var(--gold); transform: translateY(-2px); }
.booking-alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.booking-alert.success { background: #e8f5e9; color: #27ae60; border-left: 4px solid #27ae60; }
.booking-alert.error { background: #ffebee; color: #c0392b; border-left: 4px solid #c0392b; }

/* MEDIA */
@media (max-width: 900px) {
    .menu-desktop, .btn-reserver-nav { display: none; }
    .burger-menu { display: flex; }
    .mobile-nav-controls { display: flex; }
    .header-container { padding: 0 15px; }
    .logo-img { max-height: 50px; }
    .hero-slider h1 { font-size: 2.5rem; }
    .concept-grid { grid-template-columns: 1fr; }
    .concept-img-wrapper { height: 300px; margin-bottom: 30px; box-shadow: 10px 10px 0px rgba(212, 175, 55, 0.2); }
    .vignettes-grid, .services-grid-layout, .solidarity-grid { grid-template-columns: 1fr; }
    .whatsapp-top-right .wa-text { display: none; }
    .whatsapp-top-right { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; bottom: 20px; right: 20px; }
}