/* Variables de couleurs */
:root {
    --vert-sauge: #4F5849;
    --blanc-creme: #F2F0E9;
    --rose-poudre: #E0D8D6;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--vert-sauge);
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Container général */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section 1: Bannière Hero */
.hero {
    background: var(--vert-sauge);
    color: var(--blanc-creme);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

/* Bouton principal */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--blanc-creme);
    color: var(--vert-sauge);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Section 2: À Propos */
.about {
    background: var(--blanc-creme);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(224,216,214,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
}

.about-wrapper {
    position: relative;
    z-index: 1;
}

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

.about-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--vert-sauge);
    margin-bottom: 0.5rem;
}

.about-header h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--vert-sauge);
    font-weight: 400;
}
.about-content-new {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-full .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--vert-sauge);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.about-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-point:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.point-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--blanc-creme);
    border-radius: 50%;
}
.about-point p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.about-text-full .emphasis {
    font-weight: 600;
    color: var(--vert-sauge);
    font-style: italic;
    text-align: center;
    font-size: 1.2rem;
}

/* Section 2.3: Mon Parcours */
.my-story {
    background: linear-gradient(135deg, var(--blanc-creme) 0%, white 100%);
    padding: 80px 20px;
}

.my-story h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--vert-sauge);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.story-photo {
    text-align: center;
}
.story-photo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.story-photo img:hover {
    transform: scale(1.02);
}

.story-logo {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.story-logo:hover {
    transform: scale(1.05);
}

.story-logo svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

.story-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.story-text p:first-child {
    font-weight: 600;
    color: var(--vert-sauge);
}
/* Section 2.5: Soins de pieds détaillés */
.foot-care-details {
    background: white;
    padding: 80px 20px;
    position: relative;
}

.foot-care-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-poudre), transparent);
}

.foot-care-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--vert-sauge);
}

.care-content {
    max-width: 800px;
    margin: 0 auto;
}

.care-text {
    text-align: center;
}
.care-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.care-text .highlight {
    font-size: 1.3rem;
    color: var(--vert-sauge);
    font-weight: 600;
    margin-bottom: 2rem;
}

.safety-note {
    background: var(--blanc-creme);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.safety-icon {
    font-size: 2rem;
}

.motto {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--vert-sauge);
    margin-top: 2rem;
}
/* Section 3: Services */
.services {
    background: var(--rose-poudre);
    padding: 80px 20px;
}

.services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--vert-sauge);
}

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

.service-item {
    background: rgba(255,255,255,0.7);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--vert-sauge);
}
/* Section 4: Certifications */
.certifications {
    background: var(--blanc-creme);
    padding: 80px 20px;
    text-align: center;
}

.certifications h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--vert-sauge);
}

.cert-list {
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    background: white;
    padding: 25px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.cert-icon {
    color: var(--vert-sauge);
    font-size: 1.5rem;
}
/* Section 5: Contact */
.contact {
    background: var(--vert-sauge);
    color: var(--blanc-creme);
    padding: 80px 20px;
    text-align: center;
}

.contact-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info a {
    color: var(--blanc-creme);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}
.policy {
    font-style: italic;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 2rem auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .about-header h4 {
        font-size: 1.5rem;
    }

    .about-text-full .lead {
        font-size: 1.1rem;
    }

    .about-point {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-visual {
        margin-bottom: 2rem;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .story-photo img {
        max-width: 150px;
    }

    .story-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .care-text p {
        font-size: 1rem;
    }

    .motto {
        font-size: 1.5rem;
    }
}

/* Éléments décoratifs */
.leaf-decoration {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}