/* Style pour La Clinique du Bleu Préau - Thème new-age/médecine alternative */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
    --primary-color: #4a90e2; /* Bleu apaisant */
    --secondary-color: #7ed6df; /* Bleu clair */
    --accent-color: #8e44ad; /* Violet mystique */
    --bg-color: #f9f9ff; /* Blanc avec légère teinte bleue */
    --text-color: #2c3e50;
    --light-text: #6c7a89;
    --energy-color1: rgba(126, 214, 223, 0.5); /* Bleu clair transparent */
    --energy-color2: rgba(142, 68, 173, 0.3); /* Violet transparent */
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Particules d'énergie en arrière-plan */
.energy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, var(--energy-color1) 0%, transparent 20%),
                radial-gradient(circle at 80% 40%, var(--energy-color2) 0%, transparent 25%),
                radial-gradient(circle at 40% 70%, var(--energy-color1) 0%, transparent 15%),
                radial-gradient(circle at 90% 90%, var(--energy-color2) 0%, transparent 20%);
    opacity: 0.4;
}

/* En-tête */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 15px var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.logo-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.8rem;
}

nav {
    display: flex;
    justify-content: center;
}

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

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Sections principales */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 3px;
}

/* Section Hero */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), 
                url('/api/placeholder/1200/800') center/cover no-repeat;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 50%, var(--energy-color1) 140%);
    opacity: 0.7;
}

.hero-content {
    max-width: 700px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

/* Section À Propos */
.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mission-text {
    flex: 3;
}

.mission-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

.mission-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.energy-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 0 30px var(--secondary-color);
    position: relative;
    overflow: hidden;
    animation: pulse 4s infinite alternate;
}

.energy-circle::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px var(--secondary-color);
        transform: scale(0.95);
    }
    100% {
        box-shadow: 0 0 50px var(--secondary-color);
        transform: scale(1.05);
    }
}

/* Section Thérapies */
.therapy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.herbal {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.acupuncture {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.naturopathy {
    background: linear-gradient(45deg, #f39c12, #f1c40f);
}

.energy {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.therapy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.therapy-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Section Équipe */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 0 0 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 200px;
    background: url('/api/placeholder/400/300') center/cover;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p:not(.member-title) {
    color: var(--light-text);
    padding: 0 1.5rem;
    line-height: 1.6;
}

/* Section Témoignages */
.testimonial-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.quote {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    color: var(--accent-color);
    font-weight: 500;
    text-align: right;
}

/* Pied de page */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 2rem 3rem;
}

footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

footer i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.newsletter input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Adaptabilité pour mobile */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-container {
        flex-direction: column;
    }
}