:root {
            --primary: #076616;
            --secondary: #f39c12;
            --light: #f8f9fa;
            --dark: #30502c;
            --success: #27ae60;
            --gray: #7f8c8d;
            --text: #2c502c;
            --background: #ffffff;
            --card-bg: #ffffff;
            --shadow: rgba(0,0,0,0.1);
        }
        
        [data-theme="dark"] {
            --primary: #3498db;
            --secondary: #f1c40f;
            --light: #2c3e50;
            --dark: #ecf0f1;
            --success: #2ecc71;
            --gray: #bdc3c7;
            --text: #ecf0f1;
            --background: #1a1a2e;
            --card-bg: #16213e;
            --shadow: rgba(0,0,0,0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            opacity: 0;
            transition: opacity 0.8s ease;
            background-color: var(--background);
        }
        
        body.loaded {
            opacity: 1;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .accessibility-toolbar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background: #0766163b;
    border-radius: 8px 0 0 8px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--background);
            box-shadow: 0 2px 10px var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                       box-shadow 0.3s ease;
        }
        
        header.visible {
            transform: translateY(0);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s ease 0.2s;
        }
        
        .logo.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
          margin-left:50px!important;
        }
        .logo-slogan {
    margin-left: 50px!important;
    font-family: times new roman;
    font-style: italic;
}
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
            margin-left: 25px;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            padding: 10px 0;
            display: block;
            position: relative;
        }
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-menu li a:hover:after, .nav-menu li a.active:after {
            width: 100%;
        }
        
        .nav-menu li a:hover, .nav-menu li a.active {
            color: var(--secondary);
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--background);
            min-width: 220px;
            box-shadow: 0 8px 16px var(--shadow);
            z-index: 1;
            padding: 15px 0;
            border-top: 3px solid var(--secondary);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .dropdown-content li {
            margin: 0;
            padding: 0 20px;
        }
        
        .dropdown-content li a {
            padding: 8px 0;
            border-bottom: 1px solid var(--light);
        }
        
        .dropdown-content li:last-child a {
            border-bottom: none;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgb(26 118 49 / 80%), rgb(26 67 4 / 90%)), url(https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .hero-content.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }
        
        /* Sections générales */
        section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        /* Section À propos */
        .about {
            background-color: var(--light);
        }
        
        .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 var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Section Dirigeants */
        .team {
            background-color: var(--background);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .member-info p {
            color: var(--gray);
            font-style: italic;
        }
        
        /* Section Points de service */
        .services {
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px var(--shadow);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Section Produits et Services */
        .products {
            background-color: var(--background);
        }
        
        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--light);
        }
        
        .tab {
            padding: 15px 30px;
            cursor: pointer;
            font-weight: 600;
            color: var(--gray);
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
            position: relative;
        }
        
        .tab:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .tab.active:after {
            width: 100%;
            left: 0;
        }
        
        .tab.active {
            color: var(--primary);
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow);
        }
        
        .product-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .product-card ul {
            list-style-type: none;
            margin-bottom: 20px;
        }
        
        .product-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--light);
            position: relative;
            padding-left: 25px;
            transition: padding-left 0.3s ease;
        }
        
        .product-card:hover ul li {
            padding-left: 30px;
        }
        
        .product-card ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--success);
            position: absolute;
            left: 0;
            transition: left 0.3s ease;
        }
        
        .product-card:hover ul li:before {
            left: 5px;
        }
        
        /* Section Publications */
        .publications {
            background-color: var(--light);
        }
        
        .publications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .publication-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .publication-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .publication-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        
        .publication-image {
            /*height: 200px;*/
            overflow: hidden;
        }
        
        .publication-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .publication-card:hover .publication-image img {
            transform: scale(1.1);
        }
        
        .publication-info {
            padding: 20px;
        }
        
        .publication-date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .publication-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* Section Contact */
        .contact {
            background-color: var(--background);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
        }
        
        .contact-icon {
            background-color: var(--light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: var(--secondary);
            color: white;
            transform: scale(1.1);
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid var(--light);
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
            background-color: var(--card-bg);
            color: var(--text);
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
            outline: none;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Section Devenir Membre */
        .membership {
            background: linear-gradient(rgb(26 118 49 / 80%), rgb(26 67 4 / 90%)), url('/assets/images/IMG-20250513-WA0033.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .membership h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .membership p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            text-decoration: none
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Scroll progress bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            z-index: 1001;
            transition: width 0.1s ease;
        }
        
        /* Loading animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .faq-category {
            padding: 10px 20px;
            background-color: var(--card-bg);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .faq-category.active {
            background-color: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }
        
        .faq-category:hover:not(.active) {
            border-color: var(--secondary);
        }
        
        .accordion {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            margin-bottom: 15px;
        }
        
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .accordion-header:hover {
            background-color: var(--light);
        }
        
        .accordion-header i {
            transition: transform 0.3s;
        }
        
        .accordion.active .accordion-header i {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .accordion.active .accordion-content {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Rendez-vous Section */
        .appointment {
            background-color: var(--background);
        }
        
        .appointment-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .appointment-info {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
        }
        
        .appointment-form input,
        .appointment-form select,
        .appointment-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid var(--light);
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
            background-color: var(--card-bg);
            color: var(--text);
        }
        
        .appointment-form input:focus,
        .appointment-form select:focus,
        .appointment-form textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
            outline: none;
        }
        
        /* Blog Section */
        .blog {
            background-color: var(--light);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .blog-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-info {
            padding: 20px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .blog-category {
            background-color: var(--secondary);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        .blog-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .chat-button {
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px var(--shadow);
            transition: all 0.3s;
        }
        
        .chat-button:hover {
            transform: scale(1.1);
        }
        
        .chat-container {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 350px;
            height: 450px;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 25px var(--shadow);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }
        
        .chat-container.active {
            display: flex;
        }
        
        .chat-header {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chat-close {
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            font-size: 0.9rem;
        }
        
        .message.bot {
            background-color: var(--light);
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }
        
        .message.user {
            background-color: var(--secondary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }
        
        .chat-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid var(--light);
        }
        
        .chat-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--light);
            border-radius: 30px;
            outline: none;
            background-color: var(--card-bg);
            color: var(--text);
        }
        
        .chat-input button {
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .chat-input button:hover {
            background-color: #e67e22;
        }
        
        /* Accessibilité */
        .accessibility-toolbar {
            position: fixed;
            top: 200px;
            right: 20px;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            padding: 15px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
    width: 200px!important;
    height: 50px!important;
        }
        
        .accessibility-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light);
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .accessibility-btn:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .text-size-controls {
            display: flex;
            gap: 5px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--background);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px var(--shadow);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                margin: 0;
                width: 100%;
            }
            
            .nav-menu li a {
                padding: 12px 0;
                border-bottom: 1px solid var(--light);
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                border-top: none;
                padding: 0 0 0 20px;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .accessibility-toolbar {
                top: auto;
                bottom: 90px;
                right: 20px;
                flex-direction: row;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .tab {
                width: 100%;
                text-align: center;
            }
            
            .chat-container {
                width: 300px;
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .chat-container {
                width: 280px;
                right: -20px;
            }
        }
/* Dans votre CSS */
.flash-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
}

.flash-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.availability-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.availability-list {
    margin-top: 10px;
}

.availability-item {
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}
/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark, #2c3e50);
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    visibility: hidden;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
  padding-top:50px;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px!important;
    text-align: left;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 50px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /*width: 300px!important;*/
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    /*width: 600px!important;*/
}

.hero-buttons {
    
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background: var(--secondary, #f39c12);
    color: white;
    border-color: var(--secondary, #f39c12);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary, #1a5276);
    transform: translateY(-2px);
}

/* Contrôles du carousel */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary, #f39c12);
    transform: scale(1.1);
}

/* Indicateurs */
.carousel-indicators {
    position: absolute;
    top:20vh!important;
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary, #f39c12);
    border-color: var(--secondary, #f39c12);
    transform: scale(1.2);
}

/* Widget News */
.news-widget {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px 0 0 0;
    padding: 25px;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.1);
    z-index: 4;
    max-height: 500px;
    overflow: hidden;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary, #1a5276);
}
.news-item{gap:5px!important;}
.news-header h3 {
    color: var(--primary, #1a5276);
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-all {
    color: var(--secondary, #f39c12);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.see-all:hover {
    gap: 10px;
}

.news-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.news-item {
    min-width: 100%;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.news-item:hover {
    transform: translateY(-2px);
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray, #7f8c8d);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-item h4 {
    color: var(--primary, #1a5276);
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-item p {
    font-size: 0.85rem;
    color: var(--text, #2c3e50);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-link {
    color: var(--secondary, #f39c12);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 8px;
}

.news-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.news-prev,
.news-next {
    background: var(--light, #f8f9fa);
    border: none;
    color: var(--primary, #1a5276);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.news-prev:hover,
.news-next:hover {
    background: var(--secondary, #f39c12)!important;
    color: white;
}
.news-link:hover{color:#f39c12!important;}

.btn-video-watch:hover {
    background: #f39c12!important;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .news-widget {
        width: 350px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .news-widget {
        position: relative;
        width: 100%;
        border-radius: 0;
        max-height: none;
    }
    
    .slide-content {
        text-align: center;
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 90%;
      margin-top:300px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-indicators {
        bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 99vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .news-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Badge 25ème anniversaire */
.anniversary-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #8B0000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    z-index: 1000;
    animation: badgePulse 2s infinite;
    border: 4px solid #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.anniversary-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

/* Animation de rotation des étoiles */
.anniversary-badge::before,
.anniversary-badge::after {
    content: '★';
    position: absolute;
    color: #FFD700;
    font-size: 20px;
    animation: starRotate 4s linear infinite;
}

.anniversary-badge::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.anniversary-badge::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes starRotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MontserratVariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Couvre toutes les graisses de la police variable */
    font-style: normal;
    font-display: swap;
}

/* Application globale sur votre site */
body {
    font-family: 'Montserrat', sans-serif;
}
