/* =========================================
   Lumière Salon | Style Guide
   ========================================= */

:root {
    /* Color Palette - Chic Rose Gold & Soft Pink */
    --primary: #c88f98; /* Dusty Rose */
    --primary-light: #e8b4b8;
    --primary-dark: #a56873;
    --secondary: #f9f5f6; /* Very soft pink/cream */
    --accent: #d4af37; /* Rose Gold metallic hint */
    
    /* Neutral Colors */
    --text-main: #2b2b2b; /* Soft Black */
    --text-muted: #6b6b6b;
    --bg-light: #fdfcfc; /* Almost white with a hint of pink */
    --bg-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(200, 143, 152, 0.08);
    --shadow-md: 0 10px 30px rgba(200, 143, 152, 0.12);
    --shadow-lg: 0 20px 40px rgba(200, 143, 152, 0.2);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

/* Buttons & Badges */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 400;
    font-family: var(--font-heading);
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 400;
    font-family: var(--font-heading);
    border: 1px solid var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary-full, .btn-outline-full {
    display: block; width: 100%; text-align: center; padding: 1rem;
    border-radius: var(--radius-md); font-weight: 400; font-family: var(--font-heading);
    font-size: 1rem; cursor: pointer; border: none; transition: var(--transition);
    letter-spacing: 1px; text-transform: uppercase;
}

.btn-primary-full { background-color: var(--text-main); color: var(--bg-white); }
.btn-primary-full:hover { background-color: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-full { background-color: transparent; color: var(--text-main); border: 1px solid var(--text-main); }
.btn-outline-full:hover { background-color: var(--text-main); color: var(--bg-white); }

.btn-link { color: var(--primary); font-weight: 400; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid transparent; padding-bottom: 2px;}
.btn-link:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

.badge-pill {
    display: inline-block; background-color: var(--secondary); color: var(--primary-dark);
    padding: 0.5rem 1rem; border-radius: var(--radius-pill); font-size: 0.75rem;
    font-weight: 400; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem;
}

/* Typography Utilities */
.section-subtitle { color: var(--primary); font-size: 0.85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.section-title { font-size: 2.8rem; font-weight: 300; color: var(--text-main); margin-bottom: 1.5rem; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(253, 252, 252, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 400; font-family: var(--font-heading); color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; letter-spacing: 2px; text-transform: uppercase;}
.logo i { color: var(--primary); }
.logo span { font-weight: 300; color: var(--primary); }
.navbar.scrolled .logo { color: var(--text-main); }
.nav-links { display: flex; gap: 3rem; }
.nav-links a { color: var(--text-main); font-weight: 300; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background-color: var(--text-main); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(253,252,252,0.95) 0%, rgba(253,252,252,0.7) 50%, rgba(253,252,252,0.2) 100%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero-text-wrapper { max-width: 600px; }
.hero h1 { font-size: 4.5rem; font-weight: 300; margin-bottom: 1.5rem; color: var(--text-main); line-height: 1.1; letter-spacing: -1px;}
.hero h1 span { color: var(--primary); font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 450px; font-weight: 300;}
.hero-buttons { display: flex; gap: 1rem; }
.hero-stats { display: flex; gap: 3rem; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-top: 3rem; align-self: flex-start; }
.stat-item h3 { font-size: 2.5rem; color: var(--text-main); margin-bottom: 0.2rem; font-weight: 300;}
.stat-item p { font-size: 0.8rem; color: var(--primary); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* Section Base */
.classes-section, .pricing-section { padding: 8rem 0; background-color: var(--secondary); }
.instructor-section, .join-section { padding: 8rem 0; background-color: var(--bg-white); }

/* Services Grid */
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.class-card { background: var(--bg-white); border-radius: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.class-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.class-image { position: relative; height: 350px; overflow: hidden; }
.class-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.class-card:hover .class-image img { transform: scale(1.05); }
.class-level { position: absolute; top: 1rem; left: 1rem; background: var(--bg-white); padding: 0.4rem 1.2rem; font-size: 0.75rem; font-weight: 400; color: var(--text-main); text-transform: uppercase; letter-spacing: 2px;}
.class-content { padding: 2.5rem 2rem; text-align: center;}
.class-content h3 { font-size: 1.4rem; margin-bottom: 1rem; font-weight: 400; letter-spacing: 1px; }
.class-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300;}
.class-meta { display: flex; justify-content: center; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); gap: 2rem;}
.class-meta span { color: var(--text-main); font-size: 0.9rem; font-weight: 500;}

/* Stylist / About Grid */
.instructor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.instructor-image { position: relative; padding-right: 2rem; padding-bottom: 2rem;}
.instructor-image::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80%; height: 80%; background-color: var(--secondary); z-index: -1; }
.instructor-image img { width: 100%; height: 600px; object-fit: cover; box-shadow: var(--shadow-md); }
.instructor-text p { color: var(--text-muted); font-size: 1.1rem; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.8;}
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-list li { display: flex; gap: 1.5rem; align-items: flex-start;}
.icon-box { font-size: 1.5rem; color: var(--primary); padding-top: 0.2rem;}
.feature-list h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 400; letter-spacing: 1px;}
.feature-list p { font-size: 0.95rem; margin-bottom: 0; font-weight: 300;}

/* Pricing Section */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; align-items: center; }
.price-card { background: var(--bg-white); padding: 4rem 3rem; box-shadow: var(--shadow-sm); text-align: center; position: relative; border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.popular { transform: scale(1.05); border: 1px solid var(--primary); box-shadow: var(--shadow-lg); background: var(--bg-white); z-index: 1;}
.price-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--text-main); color: var(--bg-white); padding: 0.5rem 1.5rem; font-size: 0.75rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;}
.price-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 400; letter-spacing: 1px;}
.price { font-size: 3rem; font-weight: 300; font-family: var(--font-heading); color: var(--primary); margin-bottom: 1.5rem; display: flex; justify-content: center; align-items: flex-start; }
.price span:first-child { font-size: 1.2rem; margin-top: 0.6rem; font-weight: 400;}
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; font-weight: 300;}
.plan-features { text-align: left; margin-bottom: 3rem; }
.plan-features li { padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-main); display: flex; justify-content: space-between; font-size: 0.95rem; font-weight: 300;}

/* Join Section */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.join-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 300;}
.join-text p { color: var(--text-muted); font-size: 1.1rem; font-weight: 300; margin-bottom: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-item i { font-size: 1.5rem; color: var(--primary); }
.contact-item h4 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: 400; letter-spacing: 1px; text-transform: uppercase;}
.contact-item p { margin-bottom: 0; font-size: 0.95rem; font-weight: 300;}
.join-form { background: var(--secondary); padding: 4rem 3rem; border: none; }
.join-form h3 { font-size: 1.8rem; margin-bottom: 2rem; font-weight: 300; text-align: center;}
.input-group { margin-bottom: 1.5rem; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 1.2rem; border: 1px solid transparent; font-family: var(--font-body); font-size: 0.95rem; font-weight: 300; transition: var(--transition); background: var(--bg-white); }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { outline: none; border-color: var(--primary); }

/* Footer */
footer { background: var(--text-main); color: var(--bg-white); padding: 6rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { color: var(--bg-white); margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 300px; font-weight: 300; line-height: 1.8;}
.footer-links h4, .footer-socials h4 { font-size: 1rem; margin-bottom: 2rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--bg-white);}
.footer-links ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-weight: 300; transition: var(--transition);}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--bg-white); transition: var(--transition); }
.social-icons a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300;}

/* Responsive */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text-wrapper { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { align-self: center; justify-content: center; }
    .classes-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .instructor-grid, .join-grid { grid-template-columns: 1fr; gap: 4rem;}
    .footer-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .desktop-btn { display: none; }
    .nav-links { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--bg-white); flex-direction: column; gap: 0; padding-top: 80px; transition: var(--transition); z-index: 999; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-links.active { right: 0; }
    .nav-links a { display: block; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 1rem; color: var(--text-main); }
    .hero h1 { font-size: 3rem; }
    .classes-grid, .pricing-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-5px); }
    .footer-content { grid-template-columns: 1fr; }
    .instructor-image img { height: 400px; }
    .join-form { padding: 2rem; }
}
