:root {
    --cream: #f9f5f0;
    --beige: #e9e0d2;
    --deep-beige: #c5b49f;
    --text-taupe: #5a524a;
}

body {
    margin: 0;
    background-color: var(--cream); /* Cream background */
    color: var(--text-taupe);
    font-family: 'Montserrat', sans-serif;
}

nav {
    background-color: var(--beige); /* Beige navigation */
    padding: 1.5rem;
    text-align: center;
}

.nav-container a {
    text-decoration: none;
    color: var(--text-taupe);
    margin: 0 20px;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo-img {
    max-width: 300px;
    border-radius: 50%;
    border: 8px solid var(--beige);
}

h1 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    color: var(--deep-beige);
}

.script-font {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--deep-beige);
}

footer {
    background-color: var(--beige);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--deep-beige);
    margin: 15px auto;
}

/* Treatment & Pricing Specifics */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--beige);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.pricing-card {
    display: inline-block;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--beige);
    margin: 2rem 0;
}

.pricing-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.info-box, .cta-section {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid var(--beige);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background-color: var(--deep-beige);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--text-taupe);
}

/* Contact Page Styling */
.contact-section {
    padding: 40px 20px;
}

.contact-card {
    background-color: var(--white);
    border: 1px solid var(--beige);
    padding: 40px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 0.9rem;
    color: var(--deep-beige);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-item a {
    color: var(--text-taupe);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--deep-beige);
}

.cta-box {
    margin-top: 40px;
    font-style: italic;
    color: var(--deep-beige);
}