/* Styles pour la page d'accueil */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    padding: 20px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.subtitle {
    margin: 5px 0 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.main-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.treatment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.treatment-content {
    padding: 20px;
}

.treatment-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.treatment-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #555;
}

.footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

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

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}