/* ===== VARIABLES CSS PERSONNALISABLES ===== */
:root {
    /* Couleurs - Modifiables via le Customizer */
    --sage-green: #8FA498;
    --sand-beige: #E8DED2;
    --light-grey-blue: #B8C5CC;
    --terracotta: #CC8B73;
    --ivory: #F7F4F0;
    --dark-text: #2C3E50;
    --soft-black: #1A2930;
    
    /* Typographies */
    --font-display: 'Josefin Sans', sans-serif;
    --font-body: 'Comfortaa', cursive;
    
    /* Espacements */
    --section-padding: 120px;
    --container-width: 1200px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Goutte décorative */
.droplet-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}

.droplet-small {
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.droplet-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 15px;
    opacity: 0.6;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== HEADER NAVIGATION ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 244, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(143, 164, 152, 0.15);
    transition: all 0.3s ease;
}

.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-text);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-green);
    transition: width 0.3s ease;
}

nav a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: var(--sage-green);
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 164, 152, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sand-beige) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(143, 164, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="20" r="15" fill="%238FA498"/><ellipse cx="50" cy="60" rx="35" ry="30" fill="%238FA498" opacity="0.7"/><ellipse cx="50" cy="85" rx="20" ry="15" fill="%238FA498" opacity="0.5"/></svg>');
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 68px);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--soft-black);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.tagline {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--sage-green);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-cta {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-cta:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(143, 164, 152, 0.3);
}

/* ===== SECTIONS COMMUNES ===== */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-black);
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
    padding: var(--section-padding) 40px;
    background: white;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-text);
    position: relative;
    padding: 40px;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--sage-green);
    opacity: 0.2;
    font-family: var(--font-display);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--ivory);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    overflow: visible;
}

.philosophy-icon svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.philosophy-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--sage-green);
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--soft-black);
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
}

/* ===== OFFERS SECTION ===== */
.offers {
    padding: var(--section-padding) 40px;
    background: linear-gradient(180deg, white 0%, var(--sand-beige) 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--sage-green);
}

.offer-header {
    padding: 40px 35px 30px;
    border-bottom: 1px solid rgba(143, 164, 152, 0.15);
}

.offer-label {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.offer-label::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="20" r="15" fill="white"/><ellipse cx="50" cy="60" rx="35" ry="30" fill="white" opacity="0.8"/></svg>');
    background-size: contain;
    opacity: 0.5;
}

.offer-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--soft-black);
}

.offer-target {
    font-size: 14px;
    color: var(--dark-text);
    font-style: italic;
}

.offer-body {
    padding: 35px;
}

.offer-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
    padding: 20px;
    background: var(--ivory);
    border-radius: 12px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--terracotta);
}

.price-details {
    font-size: 14px;
    color: var(--dark-text);
}

.offer-features {
    list-style: none;
    margin: 25px 0;
}

.offer-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.offer-cta {
    display: block;
    text-align: center;
    background: var(--sage-green);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.offer-cta:hover {
    background: var(--terracotta);
    transform: scale(1.02);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 40px;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--dark-text);
    text-align: center;
}

.singularity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.singularity-item {
    padding: 30px;
    background: var(--ivory);
    border-left: 4px solid var(--sage-green);
    border-radius: 8px;
}

.singularity-item h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--soft-black);
}

.singularity-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding) 40px;
    background: var(--sand-beige);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--sage-green);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-grey-blue) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: var(--sage-green);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--sage-green);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--soft-black);
    color: white;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(143, 164, 152, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sage-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--sage-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--sage-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* ===== GUTENBERG EDITOR STYLES ===== */
.wp-block {
    max-width: 1200px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(247, 244, 240, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 20px 60px;
    }
    
    .offers-grid,
    .philosophy-grid,
    .singularity-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 22px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
