        :root {
            --primary-color: #5D4C3B;
            --secondary-color: #C3AC80;;
            --accent-color: #C9A96E;
            --text-dark: #B5A98B;
    
        /* --menu-color:#C3AC80; */
        /* --second-color:#5D4C3B; */
        --troisieme-color:#B5A98B;
        --quatriéme-color:#F3EEE1;
            }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .hero-section {
     
            background: linear-gradient(135deg, #5D4C3B,#B5A98B );
            color: white;
            padding: 100px 0;
            text-align: center;
            border-radius: 50px;
          
        }

        .mosque-visual {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--accent-color);
            position: relative;
            overflow: hidden;
            margin: 2rem 0;
        }

        .mosque-illustration {
            font-size: 150px;
            color: var(--primary-color);
            opacity: 0.7;
        }

        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--secondary-color);
            margin: 1rem 0;
            position: relative;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid var(--secondary-color);
            border-radius: 10px;
        }

        .plan-section {
            background: #f8f9fa00;
            padding: 28px 0;
        }

        .plan-container {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 3px solid var(--accent-color);
        }

        .architectural-plan {
            width: 100%;
            height: 500px;
            background: 
                linear-gradient(90deg, transparent 24px, #e0e0e0 25px, #e0e0e0 26px, transparent 27px),
                linear-gradient(transparent 24px, #e0e0e0 25px, #e0e0e0 26px, transparent 27px);
            background-size: 25px 25px;
            border: 2px solid #333;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .plan-element {
            position: absolute;
            border: 2px solid var(--primary-color);
            background: rgba(44, 95, 45, 0.1);
        }

        .main-prayer-hall {
            width: 250px;
            height: 200px;
            top: 150px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .minaret {
            width: 30px;
            height: 150px;
            top: 50px;
            left: 100px;
            background: var(--primary-color);
        }

        .dome {
            width: 80px;
            height: 80px;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50%;
            background: var(--accent-color);
        }

        .entrance {
            width: 60px;
            height: 40px;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--secondary-color);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* .gallery-section {
            /* padding: 80px 0; */
        /* } */ 

        .gallery-item {
            background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 2px dashed var(--secondary-color);
            height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            border-style: solid;
        }

        .specs-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .specs-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            border: none;
        }

        .specs-table td {
            padding: 1rem;
            border-color: #e9ecef;
        }

        .contribute-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 50px;
        }

        .btn-contribute {
            background: var(--accent-color);
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            color: white;
        }

        .btn-contribute:hover {
            background: #D4AF37;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: white;
        }

        .contact-info {
            background: var(--primary-color);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .legend {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 3px;
            margin-right: 10px;
        }