   /* partie générale */
   /* partie générale */
   /* partie générale */
   
   :root {
    --primary-color: #0A2540;    
    --secondary-color: #CBAA5C;
    --text-dark: #333333;        
    --text-light: #666666;       
    --bg-light: #F8F9FA;       
    --white: #FFFFFF;          
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 800; 
}
h2 { 
    font-size: 2rem; 
    font-weight: 700; 
    text-align: center; 
}
p { 
    margin-bottom: 1rem; 
    color: var(--text-light); 
}

.highlight {
    color: var(--secondary-color);
}

/* les boutons */
/* les boutons */
/* les boutons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px); 
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large { padding: 16px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* le header (navigation) */
/* le header (navigation) */
/* le header (navigation) */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky; /* Reste en haut au scroll : le CTA est toujours dispo ! */
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--secondary-color); }

.nav-links {
    display: none; /* Caché sur mobile pour la simplicité, on gardera juste le bouton RDV */
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--secondary-color); }

/* la section Hero */
/* la section Hero */
/* la section Hero */
.hero {
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative; 
    overflow: hidden;   
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;        
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
}

.hero h1, .hero p, .hero .badge, .hero .social-proof-micro span {
    color: var(--white);
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal-hidden.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    background-color: rgba(203, 170, 92, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-proof-micro {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-proof-micro i { 
    color: #FFD700; 
}

/* partie expertise et avis client */
/* partie expertise et avis client */
/* partie expertise et avis client */
.expertise, .testimonials {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid, .reviews-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
}

.service-card, .review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(10, 37, 64, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin: 20px 0;
}

.review-card .author {
    font-size: 1rem;
    color: var(--primary-color);
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* partie contact et formulaire */
/* partie contact et formulaire */
/* partie contact et formulaire */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.contact-section h2, .contact-section p { 
    color: var(--white); 
    text-align: left; 
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.info-list { 
    list-style: none; 
    margin-top: 30px; 
}
.info-list li { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}
.info-list i { 
    color: var(--secondary-color); 
    font-size: 1.2rem; 
}
.info-list a { 
    color: var(--white); 
    text-decoration: none; 
}

.form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

.form-card h3 { 
    text-align: center; 
    margin-bottom: 20px; 
}

form input, form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

form input:focus, form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

.info-list iframe {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* pied de page footer */
/* pied de page footer */
/* pied de page footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 { 
    color: var(--secondary-color); 
    margin-bottom: 5px; 
}
.footer-brand p { 
    color: var(--white); 
    opacity: 0.7; 
    font-size: 0.9rem; 
    margin: 0; 
}

.footer-links {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-links a { 
    color: var(--white); 
    text-decoration: none; 
    opacity: 0.8; 
}
.footer-links a:hover { 
    color: var(--secondary-color); 
}

.footer-bottom {
    padding-top: 20px;
    font-size: 0.75rem;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-social p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (min-width: 768px) {
    .footer-simple { 
        flex-direction: row; 
        justify-content: space-between; 
        text-align: left; 
    }
    .footer-social { align-items: flex-start; }
}
/* pour le responsive */
/* pour le responsive */
/* pour le responsive */
@media (min-width: 768px) {
    h1 { 
        font-size: 3.5rem; 
    }
    
    .nav-links { 
        display: flex; 
    }
    
    .services-grid, .reviews-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    
    .contact-container { 
        grid-template-columns: 1fr 1fr; 
        align-items: center; 
    }
    
    .hero-actions { 
        flex-direction: row; 
        align-items: center; 
    }
}

/* news Nos Montures */
/* news Nos Montures */
/* news Nos Montures */
.news-cont{
    margin-top: 2rem;
}
.news-cont .box{
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}
.news-cont .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.news-cont .box img:hover{
    transform: translateY(-10px);
}
.news-cont .box .content{
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(0, 0%, 91%,0.5);
    overflow: hidden;
    transition: .2s ease-in-out;
}
.news-cont .box:hover .content{
    top: 0;
}