:root {
    --beige: #F5F1E8;
    --sand: #E8DCC4;
    --sage: #A8B5A0;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
}

*{ 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    font-weight: 300;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Hero */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    background: var(--beige);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,241,232,0.3) 0%, rgba(245,241,232,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeIn 1.5s ease;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 3rem;
    animation: fadeIn 2s ease;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: var(--charcoal);
    line-height: 1;
}

.hero .subtitle {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.promo-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--sage);
    margin-bottom: 3rem;
    font-size: 0.95rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}

.hero-cta {
    padding: 1.2rem 3.5rem;
    font-size: 0.95rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.hero-cta:hover {
    background: var(--sage);
    color: var(--white);
}

/* About */
.about {
    background: var(--white);
    min-height: 60vh;
}

.about-content {
    max-width: 800px;
    text-align: center;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}

.about p {
    font-size: 1.15rem;
    color: var(--charcoal);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Programs */
.programs {
    background: var(--beige);
}

.programs-container {
    max-width: 1100px;
    width: 100%;
}

.programs .intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 5rem;
    letter-spacing: 0.03em;
}

.program-card {
    background: var(--white);
    padding: 4rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border-left: 1px solid var(--sand);
}

.program-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.program-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--sage);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.program-card .description {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.75;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.program-topics {
    background: var(--beige);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--sage);
}

.program-topics h4 {
    color: var(--sage);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.program-topics p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1rem;
}

.program-target {
    font-style: italic;
    color: var(--charcoal);
    opacity: 0.65;
    font-size: 1rem;
    padding-left: 2rem;
    border-left: 1px solid var(--sand);
}

/* Sessions */
.sessions {
    background: var(--white);
}

.sessions-container {
    max-width: 1100px;
    width: 100%;
}

.sessions .intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.session-card {
    padding: 0;
    background: var(--beige);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--sand);
    overflow: hidden;
}

.session-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.session-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.session-content {
    padding: 3rem;
}

.session-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.session-card .duration {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--sage);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.session-card p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.7;
}

/* Testimonials Text */
.testimonials {
    background: var(--beige);
}

.testimonials-container {
    max-width: 1100px;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
}

/* Audio Testimonials Section */
.audio-testimonials {
    background: var(--white);
}

.audio-testimonials-container {
    max-width: 1100px;
    width: 100%;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.audio-card {
    background: var(--beige);
    padding: 3rem;
    transition: all 0.3s ease;
}

.audio-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.audio-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.audio-player {
    width: 100%;
    margin-top: 1.5rem;
}

.audio-player audio {
    width: 100%;
    height: 40px;
    outline: none;
}

.audio-player audio::-webkit-media-controls-panel {
    background-color: var(--white);
}

/* Video Testimonials Section */
.video-testimonials-section {
    background: var(--beige);
}

.video-testimonials-container {
    max-width: 1100px;
    width: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 9/16;
    position: relative;
}

.video-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.video-card iframe,
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.instagram-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    overflow: hidden;
    background: var(--white);
}

.instagram-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Me */
.about-me {
    background: var(--white);
}

.about-me-container {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-me-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-me-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-me-video:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-me-images {
    display: flex;
    gap: 1.5rem;
}

.about-me-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-me-image:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-me-text {
    text-align: left;
}

.about-me h2 {
    text-align: left;
}

.about-me h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--sage);
    letter-spacing: 0.05em;
    text-align: left;
}

.about-me p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: left;
}

.mission {
    background: var(--beige);
    padding: 3rem;
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--charcoal);
    border-left: 2px solid var(--sage);
    font-style: italic;
    text-align: left;
}

/* Contact */
.contact {
    background: var(--beige);
    text-align: center;
    min-height: 70vh;
}

.contact h2 {
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.contact-btn {
    padding: 1.2rem 3.5rem;
    font-size: 0.95rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-btn:hover {
    background: var(--sage);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--sand);
    background: var(--white);
}

.social-icon:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
    transform: translateY(-3px);
}

/* Google Translate Custom Button */
.translate-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.translate-btn:hover {
    background: var(--sage);
    transform: scale(1.1);
}

.translate-dropdown {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 1001;
    min-width: 140px;
    display: none;
}

.translate-dropdown.active {
    display: block;
}

.translate-option {
    padding: 1rem 1.2rem;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.2s ease;
    font-weight: 400;
}

.translate-option:hover {
    background: var(--beige);
    color: var(--sage);
}

.translate-option.active {
    background: var(--sage);
    color: var(--white);
}

/* Cacher complètement le widget Google Translate par défaut */
#google_translate_element {
    display: none !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-gadget-simple,
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .sessions-grid, .testimonials-grid, .audio-grid { grid-template-columns: 1fr; }
    .social-links { padding: 2rem 0; gap: 1rem; }
    .social-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    .program-card, .session-content { padding: 2.5rem; }
    .about-me-container { grid-template-columns: 1fr; }
    .about-me-images { flex-direction: column; }
    .about-me-image { height: 300px; }
    .about-me-video { height: 300px; }
    .about-me h2, .about-me h3, .about-me p, .mission { text-align: center; }
    .hero-logo { width: 100px; margin-bottom: 2rem; }
}