/* Ethereal Beauty — Botanical Spa Design System 2026 */

:root {
    --primary: #e7bcb4; /* Rose Gold */
    --accent: #b2ac88;  /* Sage Green */
    --bg-cream: #fffbeb;
    --bg-white: #ffffff;
    --text-dark: #2d2a2a;
    --text-muted: #7a7a7a;
    --border-soft: 1px solid rgba(231, 188, 180, 0.3);
    --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Tenor Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-soft);
}
.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}
.nav-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--text-dark) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
                url('https://images.unsplash.com/photo-1540555700478-4be289aef09a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    background: rgba(255, 251, 235, 0.8);
    backdrop-filter: blur(5px);
    padding: 60px;
    border: 1px solid white;
}
.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Service Items */
.spa-card {
    text-align: center;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.spa-card:hover {
    background: var(--bg-cream);
    border: var(--border-soft);
}
.spa-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

/* Buttons */
.btn-rose {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0;
    padding: 15px 40px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition);
}
.btn-rose:hover {
    background: #d4a79f;
    color: white;
    letter-spacing: 0.3em;
}

.btn-outline-rose {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 0;
    padding: 14px 40px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.btn-outline-rose:hover {
    background: var(--primary);
    color: white;
}

/* Treatment Menu */
.treatment-list {
    border-top: var(--border-soft);
}
.treatment-item {
    border-bottom: var(--border-soft);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.treatment-name {
    font-size: 1.1rem;
}
.treatment-price {
    font-weight: 500;
}

/* Visual Utilities */
.soft-fade {
    opacity: 0.8;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.section-spacer {
    height: 100px;
}
