/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #4B2E5C; /* Deep purple for text */
    background-color: #e7e0dc; /* Soft beige background */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(75, 46, 92, 0.05);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #4B2E5C;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4B2E5C;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7c3a8a; /* Purple accent */
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px;
        padding-left: 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(75, 46, 92, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Hero Section */
.hero {
    height: 30vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4B2E5C;
    padding: 4rem 1rem;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #e4dad7;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #7c3a8a; /* Purple accent */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4B2E5C;
}

/* Sections */
section {
    padding: 5rem 10%;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4B2E5C;
    font-size: 2.0em;
}

/* Who We Are Section */
.who-we-are {
    background-color: #f3eeea; /* Lighter beige for sections */
}

.who-we-are-text {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #4B2E5C;
    text-align: left;
}

.who-we-are-img {
    display: block;
    margin: 0 auto 3rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(75,46,92,0.07);
}

.essence-section,
.path-section,
.commitment-section {
    margin-bottom: 4rem;
    position: relative;
}

.essence-section:last-child,
.path-section:last-child,
.commitment-section:last-child {
    margin-bottom: 0;
}

.essence-section h3,
.path-section h3,
.commitment-section h3 {
    color: #7c3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.essence-section h3 i,
.path-section h3 i,
.commitment-section h3 i {
    font-size: 1.8rem;
    color: #7c3a8a;
    opacity: 0.9;
}

.essence-section h3::after,
.path-section h3::after,
.commitment-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #7c3a8a;
    margin: 1rem auto 0;
    opacity: 0.3;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.text-block {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(75,46,92,0.07);
}

.text-block p {
    margin-bottom: 2rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block .highlight {
    font-size: 1.5rem;
    color: #7c3a8a;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        height: 25vh;
        min-height: 180px;
        padding: 0;
        margin-top: 72px;
    }
    
    .hero-image {
        object-fit: contain;
        object-position: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .who-we-are-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .text-block {
        padding: 1.5rem;
    }
    
    .text-block .highlight {
        font-size: 1.3rem;
    }
    
    .essence-section h3,
    .path-section h3,
    .commitment-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 13vh;
        min-height: 104px;
    }
}

/* Therapists Section */
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.therapist-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(75,46,92,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.therapist-card:hover {
    box-shadow: 0 4px 24px rgba(75,46,92,0.13);
}

.therapist-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #e7e0dc;
}

.therapist-card h3 {
    margin: 0.5rem 0 0.25rem 0;
    color: #7c3a8a;
    font-size: 1.3rem;
}

.specialties {
    font-size: 1rem;
    color: #7c3a8a;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em 0.2em; /* row-gap column-gap */
}

.specialties span {
    color: #7c3a8a;
    background: #f3eeea;
    border-radius: 12px;
    padding: 0.2em 0.8em;
    margin: 0 0.2em 0 0;
    display: inline-block;
    font-size: 0.98em;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(124,58,138,0.07);
    border: 1px solid #e7e0dc;
}

.specialties span:last-child {
    margin-right: 0;
}

.description {
    font-size: 1rem;
    color: #4B2E5C;
    margin-bottom: 1rem;
}

.therapist-card .contact {
    font-size: 0.95rem;
    color: #7c3a8a;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.instagram-link {
    color: #4B2E5C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}
.instagram-link:hover {
    color: #7c3a8a;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background-color: #f3eeea; /* Lighter beige for sections */
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #7c3a8a;
    font-size: 1.5rem;
}

.contact-divider {
    border: none;
    border-top: 2px solid #e7e0dc;
    margin: 1.5rem auto 2.5rem auto;
    width: 60px;
}

.contact-link {
    color: #7c3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-link:hover {
    color: #4B2E5C;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .therapists-grid {
        grid-template-columns: 1fr;
    }
}

.approach {
    font-size: 1.05rem;
    color: #4B2E5C;
    margin-bottom: 0.5rem;
    text-align: center;
}

.about {
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 1.2rem;
    text-align: center;
}

.therapist-contacts {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 0.5rem;
}
.therapist-contacts .contact-link {
    font-size: 1.3rem;
    color: #7c3a8a;
    background: #f3eeea;
    border-radius: 50%;
    padding: 0.4em;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.therapist-contacts .contact-link:hover {
    background: #7c3a8a;
    color: #fff;
}
.therapist-contacts .whatsapp-link {
    color: #25D366;
    background: #e7e0dc;
}
.therapist-contacts .whatsapp-link:hover {
    background: #25D366;
    color: #fff;
}
.therapist-contacts .website-link {
    color: #4B2E5C;
} 