:root {
    --color-primary: #2980b9;
    --color-secondary: #34495e;
    --color-bg: #F0F2F1;
    --color-text: #2c3e50;
    --color-accent: #27ae60;
    --max-width: 1100px;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; padding-top: 50px;}

a { color: #ffffff; text-decoration: none; transition: 0.3s; }
a:hover { color: #fdfdfd; text-decoration: underline; }
a div p {
  display: block;  /* obligatoire si reset CSS */
  color: black;    /* vérifier que le texte n’est pas transparent */
}


/* LANGUAGE SWITCHER */
.lang-switch {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
}

/* HEADER */
header {
    background-color: var(--color-bg);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
header img { height: 60px; }
header h1 {
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    text-align: center;
}

/* NAVIGATION 
nav ul { display: flex; justify-content: center; list-style: none; flex-wrap: wrap; }
nav li { margin: 0 10px; }
nav a {
    color: #F0F2F1;
    padding: 12px 18px;
    display: block;
    font-weight: bold;
    border-radius: 5px;
    
}
nav a:hover { background-color: var(--color-primary); transform: translateY(-2px); }

/* MAIN */
main { max-width: var(--max-width); margin: 30px auto; padding: 0 20px; }
main h2 { margin: 10px 0 15px; text-align: center; }
main p { margin-bottom: 20px; }

/* SERVICE INTRO SECTION */
.service-intro {
    background: white;
    padding: 20px;
    margin: 20px auto 25px;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    text-align: center;
    animation: fadeIn 1s ease;
    border-left: 4px solid var(--color-primary);
}
.service-intro h2 { font-size: 1.6em; margin-bottom: 8px; }
.service-intro p { max-width: 800px; margin: auto 0 10px; font-size: 1em; }
.service-intro ul li {
    font-size: 0.95em;
    margin: 5px 0;
    list-style: none;
}
.service-intro ul li::before {
    content: "✔ ";
    color: var(--color-accent);
    font-weight: bold;
}
.service-intro hr {
    width: 60%;
    margin: 15px auto;
    border: none;
    border-top: 2px solid #e0e0e0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WAVE SEPARATOR */
.wave-separator {
    height: 22px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 30" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 C300,5 3500,0 1200,20 L3200,0 L0,0 Z" fill="%2334495e"/></svg>') no-repeat;
    background-size: cover;
    margin: 30px 0;
}

/* GALLERY CARDS */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card img, .card video {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card p {
    text-align: center;
    font-weight: bold;
    padding: 10px 5px;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { 
    .gallery { grid-template-columns: 1fr; }
    .card img, .card video { height: 160px; }
}

/* CONTAINER */
.container { max-width: var(--max-width); margin: 0 auto; padding:0 18px; }

/* STORE LOGOS */
.store-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
   
}

/* FOOTER */
footer {
    background: var(--color-secondary);
    color: #F0F2F1;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}
footer a { color: #f1c40f; transition: color 0.3s; }
footer a:hover { color: #ffd24d; }

/* Bande jaune fixe */
.site-update {
    background-color: #fffa6a;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 2px solid #ffd700;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    /* IMPORTANT : aucune animation ici ! */
}

/* Animation subtile uniquement sur le texte */
.blink-text {
    display: inline-block;
    color: #34495e;
    animation: text-blink 1.5s infinite;
}

/* Keyframes pour clignotement du texte uniquement */
@keyframes text-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pro-cards{display:flex;gap:12px;justify-content:center}
.pro-card{background:#fff;border-radius:12px;padding:12px;box-shadow:0 6px 18px rgba(30,42,56,0.06);text-align:center;width:150px}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    max-width: 600px;
    margin: 40px auto;
}

.field-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.field-group label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #34495e;
}

.field-group input,
.field-group textarea {
    padding: 12px;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    font-size: 1em;
    outline: none;
    transition: 0.3s;
}

.field-group input:focus,
.field-group textarea:focus {
    border-color: #2980b9;
}

.btn-send {
    background-color: #2980b9;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.btn-send:hover {
    background-color: #1f6791;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}



/* NAV FULL WIDTH */
.main-nav {
    width: 100%;
    background: #34495e; /* ou ta couleur */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* MENU */
.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 10px;
}

.main-nav a {
    color: #F0F2F1;
    padding: 12px 18px;
    display: block;
    font-weight: bold;
    border-radius: 5px;
}

.main-nav a:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}
