/* Treatments Section */
nav{
    background: linear-gradient(135deg, #9370DB, #FFB6C1);
}


.treatments {
    margin-top: 100px;
    padding: 6rem 6rem;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-italiana);
    font-size: 3.5rem;
    color: var(--color-purple);
    margin-bottom: 1.5rem;
}

.section-header .divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-purple);
    margin: 0 auto 2rem;
}

.section-header p {
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.treatment-card {
    text-decoration: none;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.treatment-card a:nth-child(1){
    text-decoration: none;
}
.treatment-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-content {
    padding: 2rem;
    text-align: center;
}

.treatment-content h3 {
    font-family: var(--font-italiana);
    font-size: 1.8rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.treatment-content p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.treatment-content .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}
.treatment-cta{
    background: white!important;
    color: var(--color-purple)!important;
}
.treatment-cta .btn{
    background: var(--color-purple)!important;
    color: white!important;
}

.treatment-card .btn{
    background: var(--color-purple)!important;
}
/* Media Queries */
@media (max-width: 1400px) {
    .treatments {
        padding: 5rem 4rem;
    }

    .treatments-grid {
        gap: 2.5rem;
    }

    .treatment-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .treatments {
        padding: 4rem 3rem;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .treatments {
        padding: 3rem 2rem;
    }

    .treatment-content h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .treatments {
        padding: 2.5rem 1.5rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .treatment-image {
        height: 250px;
    }

    .hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-features p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .treatments {
        padding: 2rem 1rem;
        width: 80%;
    }

    .treatment-content {
        padding: 1.5rem;
    }

    .treatment-content h3 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
    .contact-content{
        width: 80%!important;
    }
} 