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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background-color: #ffffff;
    color: #3a3a3a;
    line-height: 1.8;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 40px;
    background: url('https://res.cloudinary.com/dz2jnfig9/image/upload/f_auto,q_auto/meditation.jpg');
    background-size: cover;
    background-position: center 60%;
}

.hero-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.hero-logo img.logo {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

.hero-logo img.nom {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

/* Sections Contenu */
.content-section {
    display: flex;
    align-items: center;
    padding: 80px 100px;
    gap: 80px;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.content-section img {
    width: 50%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 20px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

.content-text p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.9;
}

/* Ambiance */
.ambiance-section {
    background: #f9f9f9;
    padding: 100px;
    text-align: center;
}

.ambiance-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.ambiance-section p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #6a6a6a;
}

.ambiance-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    background: #ffffff;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

/* Bouton CTA */
.cta-button {
    display: inline-block;
    background: #8b9d77;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background: #7a8c68;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 157, 119, 0.3);
}

/* À propos */
.about-section {
    display: flex;
    align-items: center;
    padding: 80px 100px;
    gap: 60px;
    background: #ffffff;
}

.about-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 20px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.9;
    margin-bottom: 15px;
}

.certifications {
    margin-top: 20px;
    font-size: 13px;
    color: #8b9d77;
    letter-spacing: 1px;
}

/* Témoignages */
.testimonials-section {
    background: #f9f9f9;
    padding: 80px 100px;
    text-align: center;
}

.testimonials-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: 4px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.testimonial p {
    font-style: italic;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 400;
    color: #3a3a3a;
    font-size: 14px;
}

.stars {
    color: #d4a574;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Horaires & Tarifs */
.schedule-section {
    padding: 80px 100px;
    background: #ffffff;
}

.schedule-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: 4px;
    text-align: center;
}

.schedule-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-card {
    text-align: center;
    max-width: 300px;
}

.schedule-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.schedule-card p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 2;
}

.price {
    font-size: 28px;
    color: #8b9d77;
    margin-top: 15px;
    font-weight: 400;
}

/* Contact */
.contact-section {
    background: #3a3a3a;
    color: #ffffff;
    padding: 80px 100px;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #8b9d77;
}

.contact-item p {
    font-size: 15px;
    color: #cccccc;
}

.contact-item a {
    color: #cccccc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b9d77;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8b9d77;
}

/* Formulaire Contact */
.contact-form {
    max-width: 500px;
    margin: 0 auto 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #555;
    background: #4a4a4a;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b9d77;
}

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

.contact-form button {
    background: #8b9d77;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #7a8c68;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding: 50px 25px;
    }

    .hero-logo img.logo {
        height: 45px;
    }

    .hero-logo img.nom {
        height: 50px;
    }

    .content-section {
        flex-direction: column !important;
        padding: 50px 30px;
        gap: 40px;
    }

    .content-section img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
    }

    .ambiance-section {
        padding: 50px 30px;
    }

    .about-section {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }

    .about-photo {
        width: 200px;
        height: 200px;
    }

    .testimonials-section {
        padding: 50px 30px;
    }

    .schedule-section {
        padding: 50px 30px;
    }

    .schedule-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-section {
        padding: 50px 30px;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 0 10px;
    }
}
