/* ============================================
   SALON ÉCLAT — Coiffure & Beauté
   Theme: Soft pink, elegant, feminine
   ============================================ */

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

:root {
    --bg: #fffbf9;
    --bg-pink: #fdf5f2;
    --bg-card: #ffffff;
    --bg-dark: #1e1518;
    --border: #f0e0da;
    --border-dark: #e0ccc3;
    --text: #2a1f1f;
    --text-secondary: #7a6565;
    --text-muted: #a89090;
    --pink: #c4727a;
    --pink-light: #e8a0a6;
    --pink-dark: #9e555c;
    --pink-bg: rgba(196, 114, 122, 0.06);
    --gold: #c8a87e;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* --- Demo Banner --- */
.demo-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 10px 24px;
    background: rgba(196, 114, 122, 0.95);
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}
.demo-banner a { font-weight: 700; text-decoration: underline; }

/* --- Nav --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 251, 249, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--pink-dark);
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.03em;
}
.nav-link:hover { color: var(--pink); }

.nav-link--cta {
    padding: 10px 24px;
    background: var(--pink);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
}
.nav-link--cta:hover { background: var(--pink-dark); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pink); border-radius: 2px; transition: all var(--transition); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; font-family: var(--font); font-size: 0.9rem;
    font-weight: 600; cursor: pointer; transition: all var(--transition);
    border: none; border-radius: 50px;
}

.btn-primary {
    background: var(--pink);
    color: white;
}
.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 114, 122, 0.25);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* --- Hero --- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}

.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(30,21,24,0.3) 0%, rgba(30,21,24,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    padding: 0 24px;
    color: white;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--pink-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section--pink { background: var(--bg-pink); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Intro --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content .section-tag,
.intro-content .section-title { text-align: left; }

.intro-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-highlights {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 28px; padding-top: 28px;
    border-top: 1px solid var(--border);
}

.highlight {
    display: flex; align-items: center; gap: 14px;
}

.highlight-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--pink-bg);
    color: var(--pink);
}

.highlight strong { display: block; font-size: 0.88rem; }
.highlight span { font-size: 0.8rem; color: var(--text-muted); }

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-xl);
    object-fit: cover;
    height: 520px;
    width: 100%;
}

.intro-float-card {
    position: absolute;
    bottom: -20px; left: -20px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
}

.float-stars {
    display: block;
    color: #e8a838;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin: 4px 0;
}

.float-text {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- Prestations --- */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prestation-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.prestation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.prestation-img img {
    width: 100%; height: 200px;
    object-fit: cover;
}

.prestation-body {
    padding: 28px;
}

.prestation-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tarif-list { display: flex; flex-direction: column; gap: 10px; }

.tarif-row {
    display: flex; align-items: baseline; gap: 8px;
    font-size: 0.88rem;
}

.tarif-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border-dark);
    margin-bottom: 4px;
}

.tarif-price {
    font-weight: 600;
    color: var(--pink);
    white-space: nowrap;
}

/* --- Galerie --- */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}

.galerie-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.galerie-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.galerie-item:hover img { transform: scale(1.06); }
.galerie-item--tall { grid-row: span 2; }
.galerie-item--wide { grid-column: span 2; }

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.team-img {
    width: 120px; height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
}

.team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pink);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Avis --- */
.avis-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.avis-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.avis-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }

.avis-stars {
    color: #e8a838;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.avis-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.avis-card strong { display: block; font-size: 0.88rem; }
.avis-card > span { font-size: 0.75rem; color: var(--text-muted); }

/* --- RDV --- */
.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.rdv-info .section-tag,
.rdv-info .section-title { text-align: left; }

.rdv-info > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.rdv-details { display: flex; flex-direction: column; gap: 20px; }

.rdv-detail {
    display: flex; gap: 14px; align-items: flex-start;
}

.rdv-detail svg { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.rdv-detail strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.rdv-detail span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

.rdv-form {
    display: flex; flex-direction: column; gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    background: var(--bg-pink); border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font); font-size: 0.9rem;
    color: var(--text); transition: all var(--transition); outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-bg);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; }

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: var(--pink-light);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-social {
    display: flex; gap: 12px; margin-top: 16px;
}

.social-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--pink-light);
    color: var(--pink-light);
    background: rgba(196,114,122,0.1);
}

.footer-col h4 {
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-col .muted { color: rgba(255,255,255,0.3); margin-top: 8px; }

.footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--pink-light); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .prestations-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        flex-direction: column; background: rgba(255,251,249,0.98); backdrop-filter: blur(20px);
        padding: 100px 40px; gap: 24px; transition: right var(--transition);
        border-left: 1px solid var(--border);
    }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .intro-grid, .rdv-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-float-card { position: relative; bottom: auto; left: auto; display: inline-block; margin-top: -30px; }
    .galerie-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .galerie-item--tall { grid-row: span 1; }
    .galerie-item--wide { grid-column: span 1; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .avis-carousel { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-title { font-size: 3.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}
