/* =============================================
   LUXE Beauty Salon — Soft Elegance Theme
   Feminine "Rose Gold & Silk" Redesign v3.1 (High Contrast)
   ============================================= */

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

:root {
    /* -- Palette -- */
    --rose-gold: #D4A373;
    /* Darker Rose Gold for better visibility */
    --rose-dark: #C58F60;
    /* Even darker for hover states */
    --rose-light: #F7EAE1;
    /* Soft background accent */
    --champagne: #FDFBF7;
    /* Main background */
    --silk: #FFFFFF;
    /* Card background */

    /* -- Text Colors (Darkened for contrast) -- */
    --text-main: #2C2C2C;
    /* Almost black for primary text */
    --text-muted: #555555;
    /* Dark gray for secondary text */

    --border: #E0D0C5;

    /* -- Effects -- */
    --shadow-soft: 0 10px 40px rgba(212, 163, 115, 0.15);
    --radius: 24px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background: var(--champagne);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    /* Increased from 300 */
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo span {
    color: var(--rose-gold);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--rose-gold);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

/* --- Hero --- */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--rose-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--rose-gold);
    color: white;
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--rose-gold);
    color: white;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    border-radius: 300px 300px 0 0;
    /* Arch */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Sections Common --- */
section {
    padding: 100px 0;
}

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

.section-subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    margin: 0;
}

/* --- Services --- */
.services {
    background: var(--silk);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--champagne);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    border-color: var(--rose-gold);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--rose-gold);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 15px;
}

.service-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 15px;
}

/* --- Masters --- */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.master-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--ease);
}

.master-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.master-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.master-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.master-role {
    font-size: 14px;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* --- Booking --- */
.booking {
    background: var(--rose-light);
    border-radius: 60px;
    margin: 0 30px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
}

/* --- Footer --- */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-logo {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer p {
    opacity: 0.6;
    font-size: 14px;
}

/* --- Mobile / Responsive --- */
@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list a {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrap {
        height: 400px;
        order: -1;
    }

    .section-title {
        font-size: 32px;
    }

    .container {
        padding: 0 25px;
    }
}

/* Floating button for mobile */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

@media (min-width: 769px) {
    .floating-cta {
        display: none;
    }
}