* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
        }

        

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            color: #2c5530;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-button {
            background: #2c5530;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #1e3a21;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(44, 85, 48, 0.3);
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Workshops Section */
        .workshops {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .loading-message {
            grid-column: 1 / -1;
            text-align: center;
            padding: 2rem;
            color: #666;
            font-style: italic;
        }

        .no-workshops {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: #666;
        }

        .no-workshops h3 {
            color: #2c5530;
            margin-bottom: 1rem;
        }

        .workshops-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .workshops h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 3rem;
        }

        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .workshop-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .workshop-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .workshop-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .workshop-card:nth-child(1) .workshop-icon {
            background: #fff3cd;
        }

        .workshop-card:nth-child(2) .workshop-icon {
            background: #b3e5fc;
        }

        .workshop-card:nth-child(3) .workshop-icon {
            background: #c8e6c9;
        }

        .workshop-card h3 {
            font-size: 1.5rem;
            color: #2c5530;
            margin-bottom: 0.5rem;
        }

        .workshop-card .age {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .workshop-card .date {
            color: #e8744a;
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .workshop-card .time {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .workshop-image {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .workshop-image img {
            transition: transform 0.3s ease;
        }

        .workshop-card:hover .workshop-image img {
            transform: scale(1.05);
        }

        .workshop-card .price {
            color: #2c5530;
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .workshop-card .description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        .workshop-btn {
            background: #2c5530;
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .workshop-btn:hover {
            background: #1e3a21;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
        }

        .workshop-btn:full {
            background-color: #e53935 !important;
            color: white;
            cursor: not-allowed;
            pointer-events: none;
        }

        .workshop-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .workshop-img {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .workshop-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .workshop-img:nth-child(1) {
            background-image: url(../../images/cochonsMims.jpg);
        }

        .workshop-img:nth-child(2) {
            /* background-image: url(../../images/chevres-garcon.jpg); */
            background-image: url(../../images/poneyChapeau.jpg);
        }

        .workshop-img:nth-child(3) {
            background-image: url(../../images/tortuesEnfants.jpg);
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: white;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #2c5530;
        }

        .service-card h3 {
            font-size: 1.3rem;
            color: #2c5530;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.3s;
                z-index: 1000;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .workshops-grid {
                grid-template-columns: 1fr;
            }

            .workshop-images {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .hero-container,
            .workshops-container,
            .services-container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .workshops h2,
            .services h2 {
                font-size: 2rem;
            }

            .workshop-card,
            .service-card {
                padding: 1.5rem;
            }
        }

        /* Tablet specific */
        @media (min-width: 769px) and (max-width: 1024px) {
            .workshops-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .workshop-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }