/* =================================================== */
/* styles.css – Version finale 2025 (toutes les pages) */
/* =================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* ================== HEADER & NAVIGATION ================== */
header {
    background: linear-gradient(135deg, #FF4500, #FFA500);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 65px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 12px;
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.25);
}

.nav-links li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FF4500;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.nav-links li:hover > ul {
    display: block;
}

.nav-links li ul a {
    padding: 12px 20px;
    font-size: 0.95rem;
    display: block;
}

/* Menu hamburger mobile */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #FF4500;
        margin-top: 15px;
        padding: 15px 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 8px 0; text-align: center; }
    .nav-links li ul { position: static; box-shadow: none; }
}

/* ================== BANNIÈRE DÉFILANTE ================== */
.banner {
    background: #FF4500;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.banner span {
    display: inline-block;
    padding-left: 100%;
    animation: defile 28s linear infinite;
}

@keyframes defile {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ================== HERO SECTION ================== */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.hero-text { flex: 2; min-width: 300px; }
.hero-cards { flex: 1; min-width: 300px; text-align: center; }

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #FF4500;
}

.hero-text h2 {
    font-size: 1.9rem;
    margin: 25px 0;
}

/* Vidéo */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 50px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Boutons */
.quick-links {
    margin: 40px 0 20px 0;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 10px;
    background: #FF4500;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #e03e00;
    transform: translateY(-4px);
}

.small-btn {
    background: transparent;
    border: 2px solid #FF4500;
    color: #FF4500;
}

.small-btn:hover {
    background: #FF4500;
    color: #fff;
}

/* Images hero */
.hero-cards img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.hero-cards img:hover {
    transform: scale(1.08);
}

/* Tags */
.tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: #f0f0f0;
    color: #333;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tag:hover {
    background: #FF4500;
    color: #fff;
}

/* ================== TÉMOIGNAGES (identique sur toutes les pages) ================== */
.testimonials {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.4rem;
    color: #FF4500;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    width: 340px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ================== FOOTER ================== */
footer {
    background: #333;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 600;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text h2 { font-size: 1.7rem; }
    .testimonials h2 { font-size: 2.1rem; }
    .testimonial-card { width: 100%; max-width: 400px; }
    .hero-content { flex-direction: column; }
    .hero-cards { order: -1; }
}