/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    z-index: 1002;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px 30px 40px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    gap: 0;
    list-style: none;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    font-size: 1rem;
    display: block;
    width: 100%;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    color: #333;
    padding: 150px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(246, 238, 234, 0.1), rgba(246, 238, 234, 0.1)), 
                url('./assets/Header.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    will-change: background-position;
    z-index: 0;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: #F6EEEA;
    color: #333;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(246, 238, 234, 0.3);
}

.cta-button:hover {
    background: #E8D5C4;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246, 238, 234, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #F6EEEA;
}

.cta-button.secondary:hover {
    background: #F6EEEA;
    color: #333;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-white {
    background: white;
}

.section-light {
    background: #F5F5F5;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Cards avec images */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 2rem;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.card li:last-child {
    border-bottom: none;
}

.card li:before {
    content: "✓";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    background: #F6EEEA;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Images spécifiques pour chaque carte */
.card-1 { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.card-2 { background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.card-3 { background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.card-4 { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }

/* Pricing */
.pricing-section {
    color: #333;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    will-change: background-position;
}

.background-image.active {
    opacity: 1;
}

.pricing-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}

.carousel-container {
    overflow: hidden;
    border-radius: 25px;
}

.pricing-cards {
    display: flex;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 300%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #333;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 25px;
    width: calc(33.333% - 60px);
    flex-shrink: 0;
    border: 1px solid rgba(246, 238, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.92);
    opacity: 0.7;
}

.pricing-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

.pricing-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    font-style: italic;
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #F6EEEA;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-arrow-left {
    left: 15px;
}

.carousel-arrow-right {
    right: 15px;
}

.carousel-arrow:hover {
    background: #F6EEEA;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.container {
    position: relative;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}


/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.process-note {
    background: #F6EEEA;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: #333;
    border-left: 4px solid #333;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    background: url('./assets/la_maman.jpeg') center/cover;
    height: 400px;
    border-radius: 25px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(246, 238, 234, 0.8));
    border-radius: 25px;
}




.about-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Contact */
.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    height: auto;
}

.contact-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(246, 238, 234, 0.3), rgba(232, 213, 196, 0.3)), 
                url('./assets/Call_to_action.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    will-change: background-position;
    z-index: 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(246, 238, 234, 0.3);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #F6EEEA;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .hero-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Responsive carousel */
    .pricing-carousel {
        max-width: 100%;
        padding: 0 10px;
    }

    .carousel-container {
        border-radius: 20px;
    }

    /* Responsive carousel arrows */
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .carousel-arrow-left {
        left: 5px;
    }

    .carousel-arrow-right {
        right: 5px;
    }

    /* Responsive carousel cards */
    .pricing-card {
        margin: 0 10px;
        padding: 2rem 1.5rem;
        width: calc(33.333% - 20px);
    }

    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .price {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .price span {
        font-size: 0.9rem;
    }

    .pricing-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card,
    .contact-card {
        padding: 1.5rem;
    }

    /* Ultra responsive carousel for small screens */
    .pricing-carousel {
        padding: 0 5px;
    }

    .pricing-card {
        margin: 0 5px;
        padding: 1.5rem 1rem;
        width: calc(33.333% - 10px);
    }

    .pricing-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .price {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .price span {
        font-size: 0.8rem;
        display: block;
        margin-top: 0.3rem;
    }

    .pricing-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-width: 1px;
    }

    .carousel-arrow-left {
        left: 3px;
    }

    .carousel-arrow-right {
        right: 3px;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.4rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .pricing-card .cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Hover Effects */

