@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f5f2;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../image/IMG_2985.JPG');
            background-size: cover;
            background-position: center;
        }
        
        .yoga-card {
            transition: all 0.3s ease;
        }
        
        .yoga-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #c59d5f;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .rotate-180 {
            transform: rotate(180deg);
        }
        
        /* Modal styles */
        .prose {
            color: #4b5563;
            line-height: 1.75;
        }
        
        .prose h4 {
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            color: #111827;
        }
        
        .prose img {
            max-width: 100%;
            height: auto;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Ajoutez ceci dans votre section <style> */
        #news-popup {
            animation: fadeIn 0.3s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        #news-popup-content img {
            max-width: 100%;
            height: auto;
            margin: 1rem 0;
            border-radius: 0.5rem;
        }
        
        #news-popup-content a {
            color: #b7791f;
            text-decoration: underline;
        }
        
        #news-popup-content a:hover {
            color: #975a16;
        }