/* ======================= GLOBAL STYLES & VARIABLES ======================= */
:root {
    /* CUSTOMIZE: New pastel color palette */
    --primary-color: #6a8e9e;      /* Soft, dusty blue */
    --secondary-color: #f5c7b8;    /* Muted pastel pink/peach */
    --accent-color: #8db596;       /* Gentle sage green */
    --background-color: #fdfaf7;   /* Warm off-white */
    --text-color: #4a5568;         /* Soft charcoal/slate gray */
    --white-color: #FFFFFF;
    --border-color: #e2e8f0;

    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.4rem; text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 500;}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--white-color);
}

.section-title {
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

#cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 14px 32px;
    border-radius: 50px; /* Rounded pill shape */
    font-weight: bold;
    font-family: var(--font-headings);
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

#cta-button:hover {
    background-color: #e8b6a6; /*Slightly darker accent; */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* ======================= HEADER & NAVIGATION ======================= */
#header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 60px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 2.5rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}
.nav-menu a:hover {
    color: var(--primary-color);
}


/* ======================= HERO SECTION ======================= */
.hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.hero-text {
    flex: 1;
}
.hero-text .subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.hero-image {
    flex: 1;
}
.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px -10px rgba(106, 142, 158, 0.2);
}

/* ======================= TEXT-ONLY SECTIONS ======================= */
#about {
    background-color: var(--white-color);
}
.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.text-container h2 {
    margin-bottom: 2rem;
}

/* ======================= "WHO IS IT FOR" SECTION ======================= */
#for-whom ul {
    list-style-type: none;
    padding-left: 0;
}
#for-whom li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}
#for-whom li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 3px;
}
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 12px;
}
.column h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

/* ======================= ABOUT THERAPIST SECTION ======================= */
#therapist {
    background-color: var(--background-color);
}
.therapist-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.therapist-image {
    flex: 1;
    max-width: 400px;
}
.therapist-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px -10px rgba(106, 142, 158, 0.2);
}
.therapist-text {
    flex: 1.2;
}
.therapist-text h2 {
    text-align: left;
}
.qualification {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}
.qualification h4 {
    margin-bottom: 0.2rem;
}
.qualification p {
    margin-bottom: 0;
    font-style: italic;
    color: #777;
}


/* ======================= SERVICES SECTION ======================= */
.services-grid {
    display: grid;
    gap: 1.5rem;
}
.service-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-content {
    flex-grow: 1;
}
.service-content h3 {
    margin-bottom: 0.5rem;
}
.service-content p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.service-content ul {
    list-style-type: none;
    padding-left: 0;
    color: #666;
}
.service-content li {
    margin-bottom: 0.25rem;
}
.service-price {
    padding-left: 2rem;
    text-align: right;
}
.service-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-headings);
    color: var(--primary-color);
}


/* ======================= CONTACT SECTION ======================= */
#contact {
    background-color: var(--background-color);
}
.contact-container {
    display: flex;
    gap: 4rem;
}
.contact-form, .contact-info {
    flex: 1;
}
.contact-form h3, .contact-info h3 {
    margin-bottom: 1rem;
}
form input, form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--white-color);
}
form input:focus, form textarea:focus {
    outline: 2px solid var(--secondary-color);
    border-color: var(--secondary-color);
}
form button {
    width: 100%;
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}
.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border-color);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ======================= FOOTER ======================= */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2.5rem 0;
}
footer a {
    color: var(--white-color);
    font-weight: bold;
}

/* ======================= RESPONSIVE DESIGN ======================= */
@media (max-width: 992px) {
    .hero-container, .therapist-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-container {
        flex-direction: column;
    }
    .hero-text, .therapist-text {
        margin-top: 2rem;
    }
    .therapist-text h2 {
        text-align: center;
    }
    .therapist-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-menu { display: none; } 
    .nav-cta { display: none; } 
    
    section { padding: 3rem 0; }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form {
        margin-bottom: 3rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .service-price {
        padding-left: 0;
        text-align: left;
    }
}