        /* --- Variables de Design --- */
        :root {
            --primary-color: #7D5A36;
            --secondary-color: #F4D6B8;
            --dark-grey: #2C1810;
            --light-grey: #FFF9F0;
            --white-color: #FFFFFF;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* --- Styles Généraux --- */
        body {
            font-family: var(--font-family);
            margin: 0;
            padding: 0;
            color: var(--dark-grey);
            line-height: 1.6;
            scroll-behavior: smooth;
            background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
            background-attachment: fixed;
        }
        .container {
            width: 90%;
            max-width: 1100px;
            margin: auto;
            overflow: visible;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            font-family: var(--font-heading);
            font-weight: 600;
        }
        section {
            padding: 60px 0;
            overflow: visible;
        }
        section:nth-of-type(even) {
            background-color: transparent;
        }

        /* --- Header & Navigation --- */
        .main-header {
            background: var(--white-color);
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 999;
            transition: top 0.3s ease;
            overflow: visible;
        }
        body.has-announcement {
            padding-top: 48px;
        }
        body.has-announcement .main-header {
            top: 48px; /* Hauteur approximative de la barre d'annonce */
        }
        .main-header .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            max-width: 1500px;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-title {margin:0;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: var(--font-heading);
            letter-spacing: -0.5px;
        }
        .logo-subtitle {
            font-size: 0.65rem;
            color: var(--dark-grey);
            font-weight: normal;
            margin-top: 2px;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .main-nav {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 5px 8px;
            width: 100%;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }
        .main-nav a {
            color: var(--dark-grey);
            text-decoration: none;
            font-weight: 500;
            padding: 5px 6px; white-space: nowrap; font-size: 0.88rem;
            border-radius: 5px;
            transition: all 0.2s ease;
        }
        .main-nav a:hover {
            color: var(--primary-color);
            background: rgba(201, 168, 138, 0.1);
        }
        .header-join-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: var(--white-color);
            padding: 12px 24px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        .header-join-button:hover {
            background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }

        /* --- Section Hero (Bannière) --- */
        .hero {
            background-color: var(--white-color);
            background-image: url('../images/banniere_ACAPSE_v6.png');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            height: 35vh;
            position: relative;
        }

        /* --- Section Slogan --- */
        .slogan-section {
            background: var(--white-color);
            padding: 40px 0;
            text-align: center;
        }
        .slogan-title {
            font-size: 3rem;
            margin: 0;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            display: inline-block;
        }

        /* --- Sections de Contenu --- */
        .text-center {
            text-align: center;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        /* --- Section Notre Projet (4 axes) --- */
        .project-axes {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        .axis-card {
            background: var(--white-color);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .axis-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .axis-number {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white-color);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .axis-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--primary-color);
        }
        .axis-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
        }
        .axis-card ul {
            margin-top: 12px;
            padding-left: 0;
            list-style-position: inside;
            text-align: left;
        }
        .axis-card ul li {
            margin-bottom: 6px;
            color: #555;
            font-size: 0.9rem;
        }

        /* --- Section Actions (Icônes) --- */
        .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .action-item {
            text-align: center;
        }
        .action-item .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .action-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        /* --- Section Projets --- */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .project-card {
            background: var(--white-color);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .project-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            line-height: 1;
        }
        .project-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* --- Section Avantages (Tableau) --- */
        .advantages-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
        }
        .advantages-table th, .advantages-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .advantages-table th {
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        .advantages-table tr:nth-child(even) {
            background-color: var(--light-grey);
        }
        .advantages-table td:first-child {
            font-weight: bold;
        }

        /* --- Section Témoignage --- */
        .testimonial {
            background: linear-gradient(135deg, #7D5A36 0%, #7f6848 100%);
            color: var(--white-color);
            text-align: center;
            position: relative;
        }
        .testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.15);
            z-index: 0;
        }
        .testimonial .container {
            position: relative;
            z-index: 1;
        }
        .testimonial blockquote {
            font-size: 1.3rem;
            font-style: italic;
            border: none;
            padding: 0;
            margin: 0 0 1rem 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .testimonial cite {
            font-weight: bold;
            font-style: normal;
        }
        .testimonial h2 {
            color: var(--white-color);
        }

        /* --- Section Agenda --- */
        .agenda-list {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .agenda-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background: var(--white-color);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--primary-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .agenda-date {
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 8px;
            text-align: center;
            padding: 10px;
            min-width: 70px;
            font-weight: bold;
        }
        .agenda-date .weekday {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 8px;
            opacity: 0.9;
        }
        .agenda-date .day-month {
            display: block;
            font-size: 2rem;
            line-height: 1.1;
            font-weight: 900;
            margin: 5px 0;
        }
        .agenda-date .year {
            display: block;
            font-size: 0.85rem;
            margin-top: 8px;
            font-weight: 500;
            opacity: 0.9;
        }
        .agenda-details {
            flex: 1;
        }
        .agenda-title {
            margin: 0 0 5px 0;
            font-size: 1.5rem;
        }
        .agenda-description {
            margin: 10px 0;
        }
        .agenda-tag {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            color: var(--white-color);
        }
        .tag-action {
            background-color: var(--secondary-color);
            color: var(--dark-grey);
        }
        .tag-reunion {
            background-color: #6c757d;
        }
        .agenda-info {
            font-size: 0.9rem;
            color: #555;
            font-weight: bold;
        }
        
        /* --- Légende des calendriers --- */
        .calendar-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: #555;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }
        .legend-public {
            background: linear-gradient(135deg, #7f6848 0%, #7a6344 100%);
        }
        .legend-adherents {
            background: linear-gradient(135deg, #7D5A36 0%, #7f6848 100%);
        }
        
        /* --- Codes couleur des événements --- */
        .agenda-item.event-public {
            border-left-color: #7f6848;
        }
        .agenda-item.event-public .agenda-date {
            background: linear-gradient(135deg, #7f6848 0%, #7a6344 100%);
        }
        .agenda-item.event-adherents {
            border-left-color: #7D5A36;
        }
        .agenda-item.event-adherents .agenda-date {
            background: linear-gradient(135deg, #7D5A36 0%, #7f6848 100%);
        }
        .agenda-item.event-ca {
            border-left-color: #9c27b0;
        }
        .agenda-item.event-ca .agenda-date {
            background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
        }
        
        .calendar-subscribe {
            text-align: center;
            margin-top: 30px;
        }
        .subscribe-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #926B45 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 168, 138, 0.4);
        }
        
        /* --- Modals --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 450px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
        }
        .modal-close:hover {
            color: #333;
        }
        .modal-content h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        .modal-content p {
            color: #666;
            margin-bottom: 20px;
        }
        .modal-content input[type="password"],
        .modal-content input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
            box-sizing: border-box;
        }
        .modal-content input:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .modal-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .modal-btn:hover {
            transform: scale(1.02);
        }
        .login-error {
            color: #d32f2f;
            font-size: 0.9rem;
            margin-bottom: 15px;
            min-height: 20px;
        }
        
        .subscribe-modal-content {
            max-width: 500px;
        }
        .subscribe-intro {
            color: #666;
            margin-bottom: 20px;
        }
        .subscribe-section {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }
        .subscribe-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .subscribe-section h4 {
            color: var(--primary-color);
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .subscribe-help {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 12px;
        }
        .subscribe-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .subscribe-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: #f5f5f5;
            border-radius: 8px;
            text-decoration: none;
            color: var(--dark-grey);
            transition: all 0.2s;
            position: relative;
        }
        .subscribe-option:hover {
            background: #e8e8e8;
            transform: translateX(5px);
        }
        .subscribe-option .option-icon {
            font-size: 1.3rem;
        }
        .subscribe-option .option-hint {
            margin-left: auto;
            font-size: 0.75rem;
            color: #666;
        }
        .subscribe-download-btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s;
        }
        .subscribe-download-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* --- Choix de calendrier pour abonnement --- */
        .subscribe-calendar-choice {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
        }
        .calendar-choice-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: #f5f5f5;
            border: 2px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }
        .calendar-choice-btn:hover {
            background: #e8e8e8;
        }
        .calendar-choice-btn.active {
            border-color: var(--primary-color);
            background: rgba(201, 168, 138, 0.1);
        }
        .calendar-choice-btn .choice-icon {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            flex-shrink: 0;
        }
        .calendar-choice-btn .choice-label {
            display: flex;
            flex-direction: column;
        }
        .calendar-choice-btn .choice-label strong {
            font-size: 0.95rem;
            color: #333;
        }
        .calendar-choice-btn .choice-label small {
            font-size: 0.8rem;
            color: #666;
        }
        .url-copy {
            display: flex;
            gap: 10px;
        }
        .url-copy input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.85rem;
            background: #f9f9f9;
        }
        .url-copy button {
            padding: 10px 15px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 600;
        }
        .url-copy button:hover {
            background: #926B45;
        }
        
        /* Couleurs des événements par calendrier */
        .agenda-item.public {
            border-left-color: #4caf50;
        }
        .agenda-item.adherents {
            border-left-color: #2196F3;
        }
        .agenda-item.ca {
            border-left-color: #9c27b0;
        }

        /* --- Section Offre --- */
        .offer-box {
            background-color: var(--white-color);
            border: 3px solid var(--secondary-color);
            border-radius: 12px;
            padding: 30px;
            margin: 40px auto;
            max-width: 600px;
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
        }
        .offer-box h3 {
            margin-top: 0;
            font-size: 1.8rem;
        }
        .price {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            letter-spacing: -1px;
        }
        .price-strikethrough {
            text-decoration: line-through;
            color: #666;
            font-size: 1.8rem;
            margin-right: 15px;
        }
        .special-offer {
            font-size: 1.4rem;
            font-weight: bold;
            color: #D4AF37;
            background-color: #fffbea;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
        }
        .details {
            font-size: 1rem;
            color: #666;
            margin-top: 10px;
        }

        /* --- Section Appel à l'Action (CTA) --- */
        @keyframes pulse-zoom {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .join-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: var(--white-color);
            padding: 20px 50px;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-zoom 2s ease-in-out infinite;
        }
        .join-button:hover {
            background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
            animation: none;
        }

        /* --- Indicateur de défilement --- */
        .scroll-indicator {
            display: none; /* Caché par défaut sur desktop */
            flex-direction: column;
            align-items: center;
            margin: -10px 0 15px 0;
            opacity: 0.9;
        }
        .chevron {
            display: block;
            font-size: 3.5rem;
            color: #FF6B35;
            font-weight: bold;
            line-height: 0.5;
            animation: bounce-down 1.5s ease-in-out infinite;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        @keyframes bounce-down {
            0%, 100% {
                transform: translateY(0) rotate(90deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(8px) rotate(90deg);
                opacity: 1;
            }
        }

        /* --- Footer --- */
        .main-footer {
            background-color: var(--dark-grey);
            color: var(--white-color);
            padding: 60px 20px 20px 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }
        .footer-col h3 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: var(--font-heading);
        }
        .footer-col p {
            margin: 8px 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .footer-tagline {
            color: var(--secondary-color);
            font-style: italic;
            margin-top: 15px;
        }
        .footer-contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-icon {
            font-size: 1.2rem;
        }
        .footer-contact-info a {
            color: var(--white-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-contact-info a:hover {
            color: var(--secondary-color);
        }
        .footer-social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .footer-social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: var(--white-color);
            border-radius: 50%;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .footer-social-links svg {
            width: 24px;
            height: 24px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        .footer-legal-name {
            font-size: 0.75rem;
            opacity: 0.8;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }
        .footer-legal-numbers {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-bottom: 10px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .project-axes {
                grid-template-columns: repeat(2, 1fr);
            }
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .main-header .container {
                flex-direction: column;
                gap: 4px;
            }
            .header-top {
                flex-direction: column;
                gap: 5px;
            }
            .header-right {
                width: 100%;
            }
            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 2px 4px;
                padding: 4px 2px;
                border-top: 1px solid #eee;
            }
            .main-nav a {
                font-size: 0.7rem;
                padding: 3px 5px;
                white-space: nowrap;
            }
            .header-join-button {
                width: 100%;
                text-align: center;
                padding: 8px 12px;
                font-size: 0.9rem;
            }
            .hero {
                height: 25vh;
            }
            .slogan-section {
                padding: 25px 0;
            }
            .slogan-title {
                font-size: 1.8rem;
            }
            .agenda-item {
                flex-direction: column;
                align-items: stretch;
            }
            .agenda-date {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-width: 60px;
                padding: 8px;
            }
            .agenda-date .weekday {
                font-size: 0.75rem;
                margin-bottom: 5px;
            }
            .agenda-date .day-month {
                font-size: 1.3rem;
                margin: 3px 0;
            }
            .agenda-date .year {
                font-size: 0.75rem;
                margin-top: 5px;
            }
            .project-axes {
                grid-template-columns: 1fr;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Barre d'Annonce --- */
        .announcement-bar {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: var(--white-color);
            padding: 12px 20px;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 500;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .announcement-bar.active {
            display: flex;
        }
        .announcement-bar .announcement-text {
            flex: 0 1 auto;
            max-width: 800px;
        }
        .announcement-bar .announcement-link {
            background: var(--white-color);
            color: #FF6B35;
            padding: 6px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .announcement-bar .announcement-link:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(255,255,255,0.3);
        }
        .announcement-bar .close-announcement {
            background: none;
            border: none;
            color: var(--white-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .announcement-bar .close-announcement:hover {
            background: rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            .announcement-bar {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }
            .announcement-bar .announcement-text {
                font-size: 0.9rem;
            }
        body.has-announcement {
            padding-top: 48px;
        }
            body.has-announcement .main-header {
                top: 90px; /* Hauteur plus grande sur mobile car l'annonce prend plus de place */
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .footer-contact-info p {
                justify-content: center;
            }
            .footer-social-links {
                justify-content: center;
            }
            /* Afficher l'indicateur de défilement sur mobile */
            .scroll-indicator {
                display: flex;
            }
            /* Réduire l'interligne du cadre de prix sur mobile */
            .offer-box {
                padding: 20px;
            }
            .offer-box h3 {
                font-size: 1.3rem;
                line-height: 1.2;
                margin-bottom: 10px;
            }
            .price {
                font-size: 2.5rem;
                margin: 10px 0;
            }
            .details {
                font-size: 0.9rem;
                line-height: 1.3;
                margin-top: 5px;
            }
        }
/* === Boîte à Idées === */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a08060 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}
.page-header-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Layout deux colonnes */
.idees-section {
    padding: 50px 0;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Formulaire */
.form-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.form-section h2 {
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}
.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.submit-btn:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Liste des idées */
.ideas-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ideas-section h2 {
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.filters-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.filters-bar select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    min-width: 150px;
}
.filters-bar select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}
.idea-card {
    background: var(--light-grey);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.idea-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.idea-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}
.idea-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.idea-tag {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}
.idea-tag.quartier {
    background: #1a3a52;
}
.idea-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin: 0 0 10px 0;
}
.idea-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.idea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}
.idea-author {
    font-style: italic;
}
.idea-date {
    display: flex;
    align-items: center;
    gap: 5px;
}
.no-ideas {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}
.no-ideas-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Messages de feedback */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.message.show {
    display: flex;
}
.msg-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: inherit;
    opacity: .6;
    padding: 4px 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: inherit;
}
.msg-close:hover { opacity: 1; }
.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .filters-bar {
        flex-direction: column;
    }
    .filters-bar select {
        width: 100%;
    }
}

/* Mobile: banners compacts 15vh */
@media (max-width: 768px) {
    .hero {
        height: 15vh;
    }
    .page-header {
        padding: 20px 0;
    }
    .page-header h1 {
        font-size: 1.4rem;
    }
    .page-header p {
        font-size: 0.9rem;
    }
    .page-header-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
}

/* Menu burger mobile avec intitule */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--primary-color, #7D5A36);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.menu-toggle-icon {
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        display: none !important;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid #eee;
    }
    .main-nav.open {
        display: flex !important;
    }
    .main-nav a {
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
        border-bottom: 1px solid #f0f0f0;
        white-space: normal !important;
    }
    .main-nav a:last-child {
        border-bottom: none;
    }
    .header-top {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between;
    }
    .header-right {
        display: flex;
        gap: 8px;
        align-items: center;
        width: auto !important;
    }
    .header-join-button {
        width: auto !important;
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
