       * {
            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;
			background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url('images/contacts.jpg') center/cover no-repeat;
        }
		

		#contacts {
			height: 450px;
			margin: 120px 0px;
			background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6))
		}
		
	  .flag-section { margin:75px 0px;}
		
		.brioche_logo {
			width:170px;
		}

		select {
			padding: 5px 10px;
			border-radius: 4px;
			width:200px;
			font-size:14px;
			box-shadow: 0 5px 15px rgba(142, 0, 0, 0.4);
		}
	
        .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;
		}
		
    .return {
		background: #880015;
		color: white;
	}
	
	 .return:hover  {
		 background: transparent;
		color: #880015;
	}

	.map {
		background: #3da3f3;
		border: 2px solid darkblue;
		color: black;
	}
	
	 .map:hover  {
		 background: transparent;
		color: #880015;
	}
	
    /* 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;
        }


        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }
				
		.sociallink {
			margin-left: 20px;
			margin-right: 10px;
			color: white;
			transition: all 0.3s ease;
		}

		.sociallink:hover {
			color: orange;
			font-size: 24px;
			margin-right: 20px;
		}
		
        .social-links {
            display: flex;
            margin-top: 20px;
        }
		
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        
        .copyright {
            text-align: center;
            padding-top: 5px;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* 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;
			}
			.flag-section { margin:25px 0px;}
			nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 3.5rem;
            }
            .about-content {
                flex-direction: column;
            }
			.specialties-grid {display: block }
			
			.footer-content {
				display: block;
				width: 80%;
				margin-left: 10%;
				margin-right: 10%;
			}
			
        }

        @media (max-width: 768px) {
			.brioche_logo {
				width: 120px;
			}
			
			.flag-section { margin:15px 0px;}
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
			
			.about-text h3 { font-size: 1.4em}
			
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
			.specialties-grid {display: block }
            
			.footer-content {
				display: block;
			}
            .social-links {
				margin-bottom: 20px;
			}
        }

        @media (max-width: 576px) {
			.brioche_logo {
				width: 90px;
			}
			.flag-section { margin:15px 0px;}
			
		}
			
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-btn {
                display: block;
                margin: 15px auto;
                padding: 10px;
            }
			.tab-btn {
				margin-top: 10px;
			}
			.about-text h3 { font-size: 1.2em}
			
            .menu-grid {
                grid-template-columns: 1fr;
            }
            .section-title h2 {
                font-size: 1.5rem;
            }
			.testimonial p {
				font-size: 1.0rem;
				margin-bottom: 15px;
				line-height: 1.2;
			}
			 .client-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
			}

		   footer {
			margin-top:100px;
			margin-bottom:200px;
		   }
        }
