/* --- CSS VARIABLES & RESET --- */
:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light-bg: #fdfdfd;
    --gray-bg: #f8f8f8;
    --text: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    /* Prevent content from hiding behind fixed nav */
    padding-top: 70px; 
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- NAVIGATION BAR (FIXED) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--dark);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- HERO SECTION --- */
.hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.hero-content {
    flex: 1;
    padding: 0 8%;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    flex: 1;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- ABOUT SECTION (LAYERED STYLE) --- */
.about {
    padding: 120px 8%;
    background: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    position: relative;
}

.about-text-box {
    background: var(--dark);
    color: var(--white);
    padding: 5rem;
    width: 50%;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.about-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-img-stack {
    width: 60%;
    margin-left: -10%;
    z-index: 1;
}

.about-img-stack img {
    width: 100%;
    display: block;
    box-shadow: 15px 15px 0 var(--gold);
}

/* --- SPECIALIZATIONS (SERVICES) --- */
.services {
    padding: 100px 8%;
    text-align: center;
    background: var(--gray-bg);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 0 0 2rem 0;
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #777;
}

/* --- BEAUTY RITUALS & PRICING --- */
.rituals, .pricing {
    display: flex;
    height: 80vh;
    align-items: center;
}

.ritual-content, .pricing-content {
    flex: 1;
    padding: 8%;
}

.ritual-image, .pricing-image {
    flex: 1;
    height: 100%;
}

.ritual-image img, .pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-list {
    list-style: none;
    margin-top: 2rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

/* --- REVIEWS (AUTOPLAY) --- */
.reviews {
    padding: 100px 8%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.review-slider {
    max-width: 800px;
    margin: 0 auto;
}

.slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.slide.active {
    display: block;
}

.slide p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- APPOINTMENT SECTION --- */
.appointment {
    padding: 100px 8%;
    text-align: center;
    background: var(--light-bg);
}

#booking-form {
    max-width: 700px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

#booking-form input, 
#booking-form select {
    padding: 1.2rem;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
}

#booking-form button {
    grid-column: span 2;
    cursor: pointer;
    border: none;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #ae8a4b;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
}

/* --- FOOTER --- */
footer {
    background: #0d0d0d;
    color: #999;
    padding: 80px 8% 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-grid h3 { color: var(--white); margin-bottom: 1rem; }

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .about-text-box { padding: 3rem; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    
    .nav-links { display: none; } /* Mobile Menu would go here */
    
    .hero { flex-direction: column; height: auto; }
    .hero-content { padding: 5rem 8%; text-align: center; }
    .hero-image { height: 400px; width: 100%; }

    .about-container { flex-direction: column; }
    .about-text-box, .about-img-stack { width: 100%; margin-left: 0; }
    .about-img-stack { margin-top: 2rem; }

    .rituals, .pricing { flex-direction: column; height: auto; }
    .ritual-image, .pricing-image { height: 350px; width: 100%; }
    .ritual-content, .pricing-content { width: 100%; padding: 4rem 8%; }
    
    .pricing-image { order: 1; }
    .pricing-content { order: 2; }

    #booking-form { grid-template-columns: 1fr; }
    #booking-form button { grid-column: span 1; }
}