/* ==========================================================================
   LUMIÈRE - SALÓN DE BELLEZA DEMO
   ========================================================================== */

:root {
    --bg-main: #FAFAFA; /* Pure Off-White */
    --bg-soft: #F8EAE6; /* Soft Blush Pink */
    --accent: #D2B4A2; /* Muted Rose Gold / Beige */
    --accent-hover: #C1A28F;
    
    --text-dark: #2C2A29; /* Soft Charcoal */
    --text-muted: #7A7571;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* Buttons & Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    border-radius: 40px; /* Soft pill shape */
}

.btn-primary { background: var(--text-dark); color: #FFF; border: 1px solid var(--text-dark); }
.btn-primary:hover { background: transparent; color: var(--text-dark); }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 400; border-bottom: 1px solid transparent; transition: var(--transition); }
.link-arrow:hover { gap: 15px; border-bottom-color: var(--text-dark); }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2.2rem; font-style: italic; font-weight: 500; }

.nav { display: flex; gap: 40px; }
.nav-link { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); }
.nav-link:hover { color: var(--accent); }

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.hero-inner { display: flex; align-items: center; gap: 80px; }

.hero-content { flex: 1; }
.hero-subtitle { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); display: block; margin-bottom: 20px; }
.hero-title { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 30px; }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 450px; }
.hero-actions { display: flex; align-items: center; gap: 30px; }

.hero-image { flex: 1; position: relative; height: 75vh; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 200px 200px 0 0; /* Arch shape */ z-index: 2; position: relative; }
.image-decoration { position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--accent); border-radius: 200px 200px 0 0; z-index: 1; }

/* Sections */
.section { padding: 120px 0; }
.bg-soft { background-color: var(--bg-soft); }

.section-title { font-size: 3.5rem; margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 60px; }

/* Philosophy */
.philosophy-container { max-width: 800px; }
.philosophy-text { font-size: 1.4rem; line-height: 1.8; color: var(--text-dark); margin-bottom: 50px; font-weight: 300; }
.philosophy-img { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.service-card { display: block; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-img-wrap { width: 100%; height: 450px; overflow: hidden; border-radius: 10px; margin-bottom: 30px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }

.service-info h3 { font-size: 2rem; margin-bottom: 15px; }
.service-info p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

/* Margin utility for staggered look */
.mt-card { margin-top: 100px; }

/* Testimonials */
.quote-icon { font-size: 3rem; color: var(--accent); margin-bottom: 30px; opacity: 0.5; }
.testimonial-quote { font-size: 2.2rem; line-height: 1.4; max-width: 900px; margin: 0 auto 30px; font-style: italic; }
.testimonial-author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* Footer */
.footer { padding: 80px 0 40px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.brand-col .logo { margin-bottom: 10px; display: inline-block; }
.brand-col p { color: var(--accent); font-size: 0.9rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #EAEAEA; color: var(--text-dark); }
.social-links a:hover { background: var(--bg-soft); border-color: var(--bg-soft); }

.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-weight: 500; }
.footer-col p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* Responsive */
@media (max-width: 900px) {
    .nav { display: none; }
    .btn-nav { padding: 10px 20px; font-size: 0.7rem; letter-spacing: 1px; }
    .logo { font-size: 1.5rem; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-image { width: 100%; height: 500px; margin-top: 40px; }
    .hero-actions { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .mt-card { margin-top: 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .social-links { justify-content: center; }
}
