/* Base Styles */ :root { --primary-color: #8B0000; /* Burgundy */ --secondary-color: #556B2F; /* Olive Green */ --accent-color: #FFD700; /* Gold */ --light-color: #FFF8E7; /* Cream */ --dark-color: #2F2F2F; /* Dark Gray */ --text-color: #333333; --bg-light: #F9F5F0; --bg-dark: #1E1E1E; --heading-font: 'Playfair Display', serif; --body-font: 'Montserrat', sans-serif; --transition: all 0.3s ease; --border-radius: 4px; --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); --section-padding: 80px 0; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--body-font); font-size: 16px; line-height: 1.6; color: var(--text-color); background-color: #ffffff; overflow-x: hidden; } a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section { padding: var(--section-padding); } .bg-light { background-color: var(--bg-light); } .bg-dark { background-color: var(--bg-dark); color: var(--light-color); } .bg-accent { background-color: var(--primary-color); color: var(--light-color); } /* Buttons */ .btn { display: inline-block; background-color: var(--primary-color); color: white; padding: 12px 24px; border-radius: var(--border-radius); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); border: none; cursor: pointer; font-size: 14px; } .btn:hover { background-color: #6d0000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .btn-outline { display: inline-block; background-color: transparent; color: var(--primary-color); padding: 10px 22px; border-radius: var(--border-radius); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); border: 2px solid var(--primary-color); cursor: pointer; font-size: 14px; } .btn-outline:hover { background-color: var(--primary-color); color: white; transform: translateY(-3px); } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--dark-color); } h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.8rem; } p { margin-bottom: 1rem; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-weight: 700; margin-bottom: 10px; position: relative; display: inline-block; } .separator { height: 3px; width: 70px; background-color: var(--primary-color); margin: 0 auto 20px; } .section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; color: #666; } /* Header */ #header { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); z-index: 1000; transition: var(--transition); } #header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo h1 { font-size: 1.8rem; font-weight: 700; margin: 0; } .logo span { color: var(--primary-color); } .nav-links { display: flex; gap: 25px; } .nav-links a { font-weight: 500; position: relative; padding: 5px 0; } .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: var(--transition); } .nav-links a:hover::after { width: 100%; } .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; } .mobile-menu-btn span { display: block; width: 30px; height: 3px; background-color: var(--dark-color); transition: var(--transition); } /* Hero Section */ #hero { height: 100vh; background-image: url('https://images.pexels.com/photos/6287295/pexels-photo-6287295.jpeg'); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; color: white; } #hero .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); } .hero-content { position: relative; z-index: 1; max-width: 800px; } .hero-content h1 { font-size: 4rem; margin-bottom: 20px; color: white; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .hero-content p { font-size: 1.3rem; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); } /* About Section */ .about-content { display: flex; gap: 50px; align-items: center; } .about-image { flex: 1; } .about-image img { border-radius: 8px; box-shadow: var(--box-shadow); } .about-text { flex: 1; } .about-text h3 { color: var(--primary-color); margin-bottom: 20px; } .about-text p { margin-bottom: 15px; } /* Spécialités Section */ .specialites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .specialite-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); } .specialite-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .specialite-img { height: 250px; overflow: hidden; } .specialite-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); } .specialite-card:hover .specialite-img img { transform: scale(1.05); } .specialite-content { padding: 20px; } .specialite-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-color); } .specialite-meta { display: flex; gap: 15px; margin-top: 15px; color: #777; font-size: 0.9rem; } /* Partenaires Section */ .partenaires-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .partenaire-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); } .partenaire-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .partenaire-img { height: 200px; overflow: hidden; } .partenaire-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); } .partenaire-card:hover .partenaire-img img { transform: scale(1.05); } .partenaire-content { padding: 20px; } .partenaire-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-color); } .partenaire-content p { margin-bottom: 20px; } /* Galerie Section */ .galerie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; } .galerie-item { border-radius: 8px; overflow: hidden; position: relative; height: 250px; box-shadow: var(--box-shadow); } .galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); } .galerie-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; transition: var(--transition); } .galerie-info { color: white; padding: 20px; } .galerie-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: white; } .galerie-item:hover .galerie-overlay { opacity: 1; } .galerie-item:hover img { transform: scale(1.1); } /* Témoignages Section */ .testimonials-slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .testimonial-item { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: var(--box-shadow); padding: 30px; transition: var(--transition); } .testimonial-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .quote-icon { font-size: 2rem; color: var(--primary-color); opacity: 0.3; margin-bottom: 15px; } .testimonial-author { display: flex; align-items: center; margin-top: 20px; } .testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-right: 15px; } .author-info h4 { margin-bottom: 5px; font-size: 1.1rem; } .author-info span { color: #777; font-size: 0.9rem; } /* Newsletter Section */ .newsletter-content { display: flex; align-items: center; gap: 50px; } .newsletter-text { flex: 1; } .newsletter-text h2 { color: white; margin-bottom: 15px; } .newsletter-form { flex: 1; } .newsletter-form .form-group { display: flex; } .newsletter-form input { flex: 1; padding: 15px; border: none; border-radius: var(--border-radius) 0 0 var(--border-radius); font-family: var(--body-font); font-size: 1rem; } .newsletter-form .btn { border-radius: 0 var(--border-radius) var(--border-radius) 0; background-color: var(--accent-color); color: var(--dark-color); } .newsletter-form .btn:hover { background-color: #e6c300; } /* Contact Section */ .contact-content { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 30px; } .contact-item .icon { font-size: 1.5rem; color: var(--primary-color); margin-right: 15px; margin-top: 5px; } .contact-item h3 { font-size: 1.2rem; margin-bottom: 5px; } .social-links { display: flex; gap: 15px; margin-top: 30px; } .social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: var(--bg-light); color: var(--primary-color); border-radius: 50%; font-size: 1.2rem; transition: var(--transition); } .social-link:hover { background-color: var(--primary-color); color: white; transform: translateY(-3px); } .contact-form { flex: 1; } .form-group { margin-bottom: 20px; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: var(--border-radius); font-family: var(--body-font); font-size: 1rem; transition: var(--transition); } .form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); outline: none; } /* Footer */ #footer { background-color: var(--dark-color); color: var(--light-color); padding: 60px 0 20px; } .footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; } .footer-logo h2 { color: white; font-size: 1.8rem; margin-bottom: 15px; } .footer-logo span { color: var(--accent-color); } .footer-logo p { max-width: 300px; } .footer-links { display: flex; gap: 50px; } .footer-links-column h3 { color: white; font-size: 1.2rem; margin-bottom: 20px; } .footer-links-column ul li { margin-bottom: 10px; } .footer-links-column ul li a { color: #aaa; transition: var(--transition); } .footer-links-column ul li a:hover { color: white; padding-left: 5px; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; color: #aaa; } /* Back to Top Button */ .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; } .back-to-top.visible { opacity: 1; visibility: visible; } .back-to-top:hover { background-color: #6d0000; transform: translateY(-5px); }