@charset "UTF-8";
/* CSS Document */

/* Couleurs & Variables Personnalisées */
:root {
    --color-dark: #000000;
    --color-primary: #ff4d00;
    --color-secondary: #ff9000;
    --color-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* Bandeau Top */
.top-bar {
    background-color: var(--color-dark);
    color: #ffffff;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--color-primary);
}
.top-bar a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar a:hover {
    color: #ffffff;
}

/* Header & Bouton d'appel */
header {
    background-color: var(--color-dark);
    border-bottom: 4px solid var(--color-primary);
}
header h1 {
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
}
.btn-call {
    background-color: #d90429; /* Rouge vif pour inciter au clic */
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
    transition: transform 0.3s, background-color 0.3s;
}
.btn-call:hover {
    transform: scale(1.05);
    background-color: #b3001f;
}

/* Navigation & Burger */
.navbar {
    background-color: var(--color-primary) !important;
    padding: 0.8rem 1rem;
}
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0.5rem 1.2rem !important;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background-color: var(--color-dark);
    color: var(--color-secondary) !important;
}
.navbar-toggler {
    border-color: #ffffff !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}
.navbar-nav {
    gap: 10px
}
iframe {
    display: block
}
/* Section Contenu & SEO */
.content-section {
    padding: 5rem 0;
    background-color: #ffffff;
}
.seo-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}
.seo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}
.seo-text {
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

/* Swiper Slider */
.swiper-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: #ffffff;
    border-top: 5px solid var(--color-secondary);
}
footer a {
    color: var(--color-secondary);
    text-decoration: none;
}
.no-link {
    color: var(--color-secondary);
    text-decoration: none !important;
    pointer-events: none;
}
/* Mobile Fixes (Smartphone) */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    .btn-call {
        display: flex;
        width: 100%;
        justify-content: center;
        border-radius: 0;
        margin-top: 10px;
    }
    .swiper-container {
        height: 280px;
    }
}