  :root {
            --primary: #6b4e3d;
            --secondary: #a38f84;
            --accent: #c5a491;
            --light: #f5f0ec;
            --dark: #3a2e26;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            margin: 0;
            padding: 0;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(rgba(58, 46, 38, 0.7), rgba(58, 46, 38, 0.7)), 
                        url('https://images.unsplash.com/photo-1518998053901-5348d3961a04?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .logo {
            width: 150px;
            margin-bottom: 30px;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .slogan {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
        .btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--light);
            transform: translateY(-3px);
        }
        
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }
        
        .nav-logo {
            height: 50px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--primary);
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 100px;
            height: 3px;
            background: var(--accent);
            margin: 20px auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .activities {
            background-color: white;
        }
        
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .activity-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .activity-card:hover {
            transform: translateY(-10px);
        }
        
        .activity-image {
            height: 200px;
            overflow: hidden;
        }
        
        .activity-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .activity-card:hover .activity-image img {
            transform: scale(1.1);
        }
        
        .activity-content {
            padding: 20px;
        }
        
        .activity-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .team {
            text-align: center;
        }
        
        .team-members {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .team-member {
            width: 250px;
        }
        
        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--accent);
        }
        
        .member-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: var(--secondary);
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .contact {
            background-color: var(--primary);
            color: white;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info, .contact-form {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 50%;
            color: var(--primary);
            text-align: center;
            line-height: 40px;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: white;
            transform: translateY(-3px);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            background: rgba(255,255,255,0.9);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        .footer-logo {
            width: 100px;
            margin-bottom: 20px;
        }
        
        .copyright {
            margin-top: 20px;
            color: var(--secondary);
        }
        
        @media (max-width: 768px) {
            .about-content, .contact-container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .slogan {
                font-size: 1.2rem;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        .floating-img {
    position: fixed; /* ou absolute selon votre besoin */
    pointer-events: none;
    z-index: 999;
}
.floating-img {
    position: fixed;
    z-index: 999;
    pointer-events: none;
}

/* 📍 Pinceau : en haut à droite, dépassant un peu */
#pinceau {
    top: 100px;           /* vers le haut pour être coupé */
    right: -200px;         /* vers la droite pour dépasser le bord */
    left: auto;           /* on annule toute valeur left */
    width: 25%;         /* plus grand */
    transform: none;      /* pas besoin de translate ici */
}

/* 💧 Goutte : plus grosse, centrée sous le pinceau */
#goutte {
    top: 500px;           /* en-dessous du pinceau */
    right: 175px;          /* ajusté pour être centré sous le pinceau */
    left: auto;
    width: 35px;          /* plus grand */
    transform: translateY(0);
}
