:root {
    --primary-color: #E38B2B;
    --secondary-color: #C6004B;
    --light-bg: #fff9f2;
    --dark-text: #333;
    --light-text: #fff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary-color);
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(198, 0, 75, 0.05), rgba(227, 139, 43, 0.05));
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.about-text {
    max-width: 600px;
}

.about-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Therapist Section */
.therapist {
    padding: 5rem 0;
    background-color: white;
}

.therapist h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.therapist-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.therapist-image {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.second-image {
    margin-top: 0;
}

.therapist-info {
    padding: 1rem;
}

.therapist-info h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.therapist-info .title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.therapist-info .description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.specialties h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.specialties ul {
    list-style: none;
}

.specialties li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialties i {
    color: var(--primary-color);
}

/* Responsive adjustments for therapist section */
@media (max-width: 1200px) {
    .therapist-content {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .main-image {
        min-height: 500px;
    }
}

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

    .therapist-image {
        margin: 0 auto;
        max-width: 500px;
    }

    .main-image {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .main-image {
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .main-image {
        min-height: 350px;
    }
    
    .therapist-content {
        padding: 0 1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.gallery h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #19b22b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    /* box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3); */
}

.whatsapp-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    /* box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); */
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    text-align: center;
    padding: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

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