/*. ========================================
   E-JARNAULD SOFT - À PROPOS
   Professional CSS - White & Bright Red
   ======================================== */

/* ===== VARIABLES ===== */
:root {
    --primary-red: #FF0000;
    --bright-red: #FF0000;
    --dark-red: #CC0000;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #F5F5F5;
    --dark-gray: #1A1A1A;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 45px;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

nav ul li a:hover::after { width: 100%; }

.btn-booking {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-booking:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}
/* ===== STAGE MARQUEE ===== */
.stage-marquee {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.stage-marquee p {
    text-align: center;
    font-weight: 600;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== HERO ABOUT ===== */
.hero-about {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920') center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 115px;
}

.hero-about h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-about p {
    font-size: 20px;
    color: var(--off-white);
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-about .btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
}

.hero-about .btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
}

/* ===== MISSION ===== */
.mission {
    padding: 80px 0;
    background: var(--off-white);
}

.mission h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

.mission p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.8;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    padding: 20px 0;
}

/* ===== TEAM ===== */
.team {
    padding: 80px 0;
    background: var(--white);
}

.team h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

.team p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: var(--primary-red);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat h2 {
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    color: var(--off-white);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials h2 {
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-red);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 500;
}

/* ===== CTA ===== */
.cta-service {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1920') center/cover;
    padding: 60px 0 0 0;
    text-align: center;
    margin: 0;
    border: 0;
}

.cta-service .overlay {
    padding: 0;
    margin: 0;
    background: transparent;
}

.cta-content {
    margin: 0;
    padding: 0;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--off-white);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Booking Button */
.btn-booking {
    padding: 12px 28px;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-booking:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
    margin: 0;
    width: 100%;
    border: 0;
}

footer * {
    margin: 0;
    padding: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}


/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    .btn-booking {
        display: inline-block;
        margin-top: 20px;
    }

    .about-container, .team-container { 
        grid-template-columns: 1fr; 
    }
    .testimonial-cards { 
        grid-template-columns: 1fr; 
    }
    .footer-columns { 
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-about h1 { 
        font-size: 36px; 
    }
    .stats-container { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .hero-about h1 { 
        font-size: 28px; 
    }
    .hero-about p { 
        font-size: 16px; 
    }
    .mission h2, .team h2, .testimonials h2 { 
        font-size: 28px; 
    }
    .stat h2 { 
        font-size: 36px; 
    }
    .mission, .team, .testimonials {
        padding: 60px 20px;
    }
    .about-image img, .team-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-about h1 { 
        font-size: 24px; 
    }
    .hero-about p { 
        font-size: 14px; 
    }
    .hero-about {
        min-height: 300px;
    }
    .mission h2, .team h2, .testimonials h2 { 
        font-size: 24px; 
    }
    .stat h2 { 
        font-size: 30px; 
    }
    .testimonial-card {
        padding: 20px;
    }
}
