       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #c19a6b;
            --secondary: #8e0000;
            --dark: #1a1a1a;
            --light: #f8f5f0;
            --accent: #5d8a82;
			--fermer: #880015;
			--normal: #000C7B;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

		
		.brioche_logo {
			width:170px;
		}
		
		select , input {
			padding: 5px 10px;
			margin: 10px 0px;
			border-radius: 4px;
			width: 250px;
			font-size:14px;
			box-shadow: 0 5px 15px rgba(142, 0, 0, 0.4);
		}
		
		textarea {
			padding: 5px 10px;
			border-radius: 4px;
			width: 90%;
			font-size:14px;
			box-shadow: 0 5px 15px rgba(142, 0, 0, 0.4);
		}	
		
	    input[type=radio] {
			padding: 5px 10px;
			margin: 15px 0px;
			width: 20px;
		}
		
		input[type=reset] {width:130px;margin-left:5px;background-color:#525252;color:white;border: 1px solid #F2F2F2;}
		input[type=submit] {width:130px;margin-left:5px;background-color:#0080B8;color:white;border: 1px solid #F2F2F2;}
		input[type=button] {width:130px;margin-left:5px;background-color:maroon;color:white;border: 1px solid #F2F2F2;}
		label{font-size:16px;font-weight:bold;margin-left:5px;}
		
        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
            animation: spin 15s linear infinite;
        }
		
		.nav-link {
			font-family: 'Times New Roman', 'Arial';
			margin-left: 30px;
			font-size:1.15em;
			color:#0024FF;
			text-decoration: none;
			transition: all 0.3s ease;
		}
		
		.nav-link:hover {
			font-size:1.0em;
			color:#880015;
			border-bottom-color: #880015;
			border-bottom-style: solid;
			border-bottom-width: 2px;
		}
		
		.fermer {
            background: var(--fermer);
            color: var(--light);
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            font-weight: 500;
			min-width:90px;
            cursor: pointer;
            font-size: 1rem;
			box-shadow: 0 5px 15px rgba(142, 0, 0, 0.3);
        }

		.normal {
			width:150px;
            background: var(--normal);
            color: var(--light);
            padding: 6px 8px;
            border: none;
            border-radius: 30px;
            font-weight: 500;
			min-width:90px;
            cursor: pointer;
            font-size: 1rem;
			box-shadow: 0 5px 15px rgba(142, 0, 0, 0.3);
        }
        
        .hero-btn {
            display: inline-block;
            background: #6F4E47;
            color: white;
            padding: 8px 50px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin: 10px;
            border: 2px solid white;
            animation: fadeIn 2s ease;
			max-width: 300px;
        }

        .hero-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
        }

        /* About Section */
        .section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            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: 4px;
            background: var(--primary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            transform: scale(1);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }
		.specialty-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 8px 10px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 200;
            font-size: 1.0rem;
            transition: all 0.3s ease;
            margin: 10px;
            border: 1px solid gold;
            animation: fadeIn 2s ease;
			width: 190px;
        }

        .specialty-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }
		
		@keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
			.brioche_logo {
				width: 150px;
			}
			nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
			
        }

        @media (max-width: 768px) {
			.brioche_logo {
				width: 120px;
			}
			
            nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
			.specialties-grid {display: block }
            
        }

        @media (max-width: 576px) {
			.brioche_logo {
				width: 90px;
			}

        }

}
