/* ============================================================
   HELVETIA SALON - CSS Principal
   Police: Playfair Display + Lato
   Thème: Élégant doré sur fond sombre/crème
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;400;600&display=swap');

:root {
    --or:       #C9A84C;
    --or-light: #E8C96A;
    --noir:     #0F0F0F;
    --sombre:   #1A1A1A;
    --gris:     #2C2C2C;
    --creme:    #F5F0E8;
    --creme2:   #EDE6D6;
    --blanc:    #FFFFFF;
    --texte:    #333333;
    --texte-clair: #666666;
    --rouge:    #C0392B;
    --vert:     #27AE60;
    --shadow:   0 8px 40px rgba(0,0,0,0.15);
    --radius:   4px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--creme);
    color: var(--texte);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title h2 { color: var(--noir); margin-bottom: 0.5rem; }
.section-title p { color: var(--texte-clair); font-size: 1.05rem; font-weight: 300; }
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--or);
    margin: 1rem auto 0;
}

/* ---- NAVIGATION ---- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(10px);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: var(--transition);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--or);
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-logo span { color: var(--blanc); font-weight: 300; font-size: 0.75rem; display: block; letter-spacing: 3px; text-transform: uppercase; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    font-weight: 300;
}
.nav-links a:hover { color: var(--or); }
.nav-cta {
    background: var(--or) !important;
    color: var(--noir) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--or-light) !important; }

/* Hamburger mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--blanc);
    transition: var(--transition);
}

/* ---- HERO ---- */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--noir) 0%, #1c1008 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 4rem;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1400&q=80') center/cover;
    opacity: 0.18;
}
#hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--creme));
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
    display: inline-block;
    border: 1px solid var(--or);
    color: var(--or);
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}
.hero-content h1 { color: var(--blanc); margin-bottom: 0.5rem; }
.hero-content h1 em { color: var(--or); font-style: italic; }
.hero-content p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin: 1rem 0 2rem; font-weight: 300; }
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rouge);
    animation: pulse 2s infinite;
}
.status-dot.open { background: var(--vert); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-gold { background: var(--or); color: var(--noir); }
.btn-gold:hover { background: var(--or-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--blanc); border: 1px solid rgba(255,255,255,0.4); margin-left: 1rem; }
.btn-outline:hover { border-color: var(--or); color: var(--or); }

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ---- À PROPOS ---- */
#about { background: var(--creme); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid var(--or);
    z-index: 1;
    pointer-events: none;
}
.about-badge {
    position: absolute;
    bottom: 2rem; right: -1rem;
    background: var(--or);
    color: var(--noir);
    padding: 1rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow);
}
.about-text h2 { margin-bottom: 1rem; color: var(--noir); }
.about-text p { color: var(--texte-clair); margin-bottom: 1rem; font-weight: 300; }
.about-diplome {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--noir);
    color: var(--or);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.about-diplome span { font-size: 1.5rem; }

/* ---- VIDEO ---- */
#video-section {
    background: var(--noir);
    padding: 5rem 0;
    text-align: center;
}
#video-section .section-title h2 { color: var(--creme); }
#video-section .section-title p { color: rgba(255,255,255,0.5); }
#video-section .section-title::after { background: var(--or); }
.video-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(201,168,76,0.3);
}
.video-wrap video,
.video-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gris);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    gap: 1rem;
}
.video-placeholder .play-icon { font-size: 4rem; color: var(--or); }

/* ---- SERVICES ---- */
#services { background: var(--creme2); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--blanc);
    border-radius: var(--radius);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--or);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-info h3 { font-size: 1rem; color: var(--noir); margin-bottom: 0.25rem; }
.service-info small { color: var(--texte-clair); font-size: 0.82rem; font-weight: 300; }
.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--or);
    white-space: nowrap;
}
.service-rabais {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 4px;
}

/* ---- HORAIRES ---- */
#horaires { background: var(--noir); }
#horaires .section-title h2 { color: var(--creme); }
#horaires .section-title p { color: rgba(255,255,255,0.5); }
#horaires .section-title::after { background: var(--or); }
.horaires-table {
    max-width: 500px;
    margin: 0 auto;
    background: var(--gris);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.horaire-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row.today { background: rgba(201,168,76,0.12); }
.horaire-row .jour { color: rgba(255,255,255,0.9); font-weight: 400; }
.horaire-row .jour.today-label { color: var(--or); font-weight: 700; }
.horaire-row .heures { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.horaire-row .ferme { color: var(--rouge); font-size: 0.85rem; }
.horaire-note {
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ---- AVIS GOOGLE ---- */
#avis { background: var(--creme); }
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.avis-card {
    background: var(--blanc);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.avis-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.avis-header { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.8rem; }
.avis-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--or);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--noir);
    font-weight: 700;
    flex-shrink: 0;
}
.avis-nom { font-weight: 700; font-size: 0.9rem; color: var(--noir); }
.avis-date { font-size: 0.78rem; color: var(--texte-clair); }
.avis-stars { color: #FBBC04; font-size: 0.9rem; letter-spacing: 1px; }
.avis-text { font-size: 0.9rem; color: var(--texte-clair); font-weight: 300; line-height: 1.6; }
.avis-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--texte);
    border: 2px solid #ddd;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}
.btn-google:hover { border-color: var(--or); color: var(--or); }
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.google-score {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--noir);
    line-height: 1;
}
.google-score-detail { text-align: left; }
.google-score-detail .stars { color: #FBBC04; font-size: 1.3rem; }
.google-score-detail small { color: var(--texte-clair); font-size: 0.82rem; }

/* ---- CONTACT ---- */
#contact { background: var(--creme2); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 { margin-bottom: 1.5rem; color: var(--noir); }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 42px; height: 42px;
    background: var(--noir);
    color: var(--or);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--texte-clair); margin-bottom: 0.2rem; }
.contact-detail a { color: var(--texte); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.contact-detail a:hover { color: var(--or); }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 250px; margin-top: 1.5rem; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Formulaire contact */
.contact-form h3 { margin-bottom: 1.5rem; color: var(--noir); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--texte-clair); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    background: var(--blanc);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--texte);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--or); }
.form-group textarea { height: 120px; resize: vertical; }
.form-success { background: #d4edda; color: #155724; padding: 1rem; border-radius: var(--radius); margin-top: 1rem; display: none; }
.form-success.show { display: block; }

/* ---- FOOTER ---- */
footer {
    background: var(--noir);
    color: rgba(255,255,255,0.5);
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--or); margin-bottom: 0.5rem; }
.footer-brand p { font-weight: 300; line-height: 1.8; }
.footer-col h4 { color: var(--blanc); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; font-family: 'Lato', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--or); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--or); color: var(--noir); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-img-wrap { aspect-ratio: 3/2; }
}
@media (max-width: 680px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--noir); padding: 1.5rem 2rem; gap: 1rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 0 1rem; }
    .btn-outline { margin-left: 0; margin-top: 0.5rem; display: block; }
    .services-grid { grid-template-columns: 1fr; }
}

/* ---- ADMIN LINK ---- */
.admin-bar {
    background: var(--noir);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 0.4rem;
    font-size: 0.75rem;
}
.admin-bar a { color: var(--or); text-decoration: none; }
