/* ===================================
   PREMIUM — Luxury Beauty Salon
   Fonts: Playfair Display, Georgia
   Accent: Gold (#c9a96e)
   =================================== */

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

:root {
    --bg: #fefefe;
    --text: #2c2c2c;
    --accent: #c9a96e;
    --accent-hover: #b8954e;
    --light-bg: #f8f6f1;
    --border: #e8e0d0;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
    --font: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-bg: #fefefe;
    --footer-bg: #f0ece4;
    --hero-gradient: linear-gradient(135deg, #f8f6f1 0%, #f0ece4 50%, #e8e0d0 100%);
    --section-alt: #f8f6f1;
    --nav-font: 'Inter', sans-serif;
    --letter-spacing: 0.02em;
}

body { font-family: var(--font-body); color: var(--text); background: var(--bg); }

/* --- Typography --- */
h1, h2, h3, .logo, .card-title, .staff-detail-name, .location-name {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: var(--letter-spacing);
}
.section-title { font-size: 2rem; letter-spacing: 0.03em; position: relative; }
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 12px auto 0;
}

/* --- Header --- */
.header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.logo {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent);
    letter-spacing: 0.05em;
}
.nav a {
    font-family: var(--nav-font);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: #666;
}

/* --- Hero --- */
.hero {
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero h1 { font-size: 3rem; font-style: italic; color: #3a2a1a; }
.hero-subtitle { font-family: var(--font-body); font-weight: 300; }

/* --- Buttons --- */
.btn {
    font-family: var(--nav-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 0;
}
.btn-primary {
    background: var(--accent);
    border: 1px solid var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* --- Cards --- */
.card {
    border-radius: 0;
    background: white;
    border: 1px solid var(--border);
    box-shadow: none;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.card-img { height: 220px; }
.card-body { padding: 24px; }
.card-title { font-size: 1.2rem; }
.card-price { font-family: var(--font-body); color: var(--accent); }

/* Staff card */
.card-staff .card-img img {
    border-radius: 0;
    width: 160px;
    height: 160px;
    border: 3px solid var(--accent);
}

/* --- Reviews --- */
.review-card {
    border-left: 3px solid var(--accent);
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow);
}

/* --- Staff detail --- */
.staff-detail {
    border-radius: 0;
    background: white;
    box-shadow: var(--shadow);
}
.staff-detail-img img {
    border-radius: 0;
    border: 3px solid var(--accent);
}
.staff-detail-name { font-size: 2.2rem; font-style: italic; }

/* --- Locations --- */
.location-card {
    border-radius: 0;
    border: 1px solid var(--border);
}

/* --- Booking --- */
.booking-form {
    border-radius: 0;
    background: white;
    border: 1px solid var(--border);
}

/* --- Filter links --- */
.filter-link {
    border-radius: 0;
    background: white;
    border: 1px solid var(--border);
}
.filter-link.active, .filter-link:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav a { font-size: 0.9rem; text-transform: none; letter-spacing: normal; }
}
