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

body {
    font-family: 'Arial', sans-serif;
    padding-top: 70px;
    padding-bottom: 0px;
}

/* NAVBAR STYLES */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #666;
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: black;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 30px;
    position: relative;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.burger span:nth-child(1) {
    top: 6px;
}

.burger span:nth-child(2) {
    top: 13px;
}

.burger span:nth-child(3) {
    top: 20px;
}

.burger.active span:nth-child(1) {
    top: 13px;
    transform: translateX(-50%) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    top: 13px;
    transform: translateX(-50%) rotate(-45deg);
}

/* FOOTER STYLES */
.footer {
    position: relative;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 40px 20px;
    /* Augmenté de 0 20px à 40px 20px */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    /* Changé de height: 80px à min-height: 120px */
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Augmenté de 20px à 25px */
}

.footer-logo {
    font-size: 24px;
    /* Augmenté de 20px à 24px */
    font-weight: bold;
    color: black;
}

.footer-text {
    color: #666;
    font-size: 16px;
    /* Augmenté de 14px à 16px */
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
    /* Augmenté de 25px à 30px */
}

.footer-links li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    /* Augmenté de 14px à 16px */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* ... reste du code inchangé ... */

.social-link {
    text-decoration: none;
    color: black;
    font-size: 16px;
    /* Augmenté de 14px à 16px */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links li a:hover {
    color: #666;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background-color: black;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links li a:hover::after {
    width: 100%;
}

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

.social-link {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: #666;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background-color: black;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.social-link:hover::after {
    width: 100%;
}

/* CONTENT */
.content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 150px);
}

.content h1 {
    margin-bottom: 20px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: left 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    /* Footer responsive */
    .footer-container {
        flex-direction: column;
        min-height: auto;
        /* Changé de height: auto */
        padding: 30px 0;
        /* Augmenté de 20px à 30px */
        gap: 20px;
        /* Augmenté de 15px à 20px */
    }


    .footer-left {
        flex-direction: column;
        gap: 12px;
        /* Augmenté de 8px à 12px */
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }

    .footer-social {
        gap: 12px;
    }

    body {
        padding-bottom: 0px;
    }
}






























.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}


































/* SECTION ÉQUIPE */
.equipe-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.equipe-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.equipe-content {
    z-index: 2;
}

.equipe-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.equipe-title {
    font-size: 52px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.equipe-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.equipe-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.equipe-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipe-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.btn-secondary {
    background-color: white;
    color: #2c3e50;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
    transform: translateY(-3px);
}

.equipe-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.overlay-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* Décoration */
.decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1), rgba(52, 73, 94, 0.1));
    z-index: 0;
}

.circle-1 {
    top: -200px;
    right: -200px;
}

.circle-2 {
    bottom: -200px;
    left: -200px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .equipe-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .equipe-title {
        font-size: 42px;
    }

    .equipe-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .equipe-container {
        padding: 60px 20px;
    }

    .equipe-title {
        font-size: 36px;
    }

    .equipe-subtitle {
        font-size: 20px;
    }

    .equipe-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .equipe-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .image-placeholder {
        height: 400px;
    }

    .decoration-circle {
        display: none;
    }
}





























/* SECTION STADE */
.stade-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.stade-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.stade-header {
    text-align: center;
    margin-bottom: 60px;
}

.stade-title {
    font-size: 48px;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
}

.stade-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.stade-viewer {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.stade-image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stade-image {
    width: 100%;
    height: auto;
    display: block;
}

.stade-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Points interactifs */
.hotspot {
    position: absolute;
    cursor: pointer;
}

.hotspot-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-button {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.hotspot-text {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Positions des hotspots */
.hotspot-1 {
    top: 20%;
    left: 15%;
}

.hotspot-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hotspot-3 {
    top: 20%;
    right: 10%;
}

.hotspot-4 {
    bottom: 25%;
    right: 10%;
}

/* Modal vidéo */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.video-header {
    padding: 20px 25px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-title {
    font-size: 20px;
    font-weight: 600;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player {
    display: none;
}

.video-player.active {
    display: block;
}

.video-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    background-color: #f8f9fa;
}

.nav-video-btn {
    padding: 12px 16px;
    background-color: white;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-video-btn:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.nav-video-btn.active {
    background-color: #2c3e50;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stade-section {
        padding: 60px 15px;
    }

    .stade-title {
        font-size: 32px;
    }

    .stade-viewer {
        padding: 20px;
    }

    .stade-placeholder {
        height: 400px;
    }

    .hotspot-button {
        padding: 10px 15px;
        gap: 8px;
    }

    .hotspot-text {
        font-size: 13px;
    }

    .play-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .video-content {
        width: 95%;
    }

    .video-header {
        padding: 15px 20px;
    }

    .video-title {
        font-size: 16px;
    }

    .video-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 15px;
    }

    .nav-video-btn {
        font-size: 12px;
        padding: 10px 12px;
    }
}


.stade-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.stade-cta .btn {
    padding: 18px 45px;
    font-size: 18px;
}




















/* SECTION BOUTIQUE */
.boutique-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.boutique-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.boutique-header {
    text-align: center;
    margin-bottom: 60px;
}

.boutique-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.boutique-title {
    font-size: 52px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.boutique-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:nth-child(4) .product-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-icon {
    font-size: 80px;
    color: white;
    opacity: 0.9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-image img.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image img.img-default {
    opacity: 0;
}

.product-card:hover .product-image img.img-hover {
    opacity: 1;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.product-price-label {
    font-size: 12px;
    color: #999;
    display: block;
}

.product-btn {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-btn:hover {
    background-color: #1a252f;
    transform: scale(1.05);
}

.boutique-cta {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2c3e50;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Décoration */
.decoration-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #2c3e50;
    top: 10%;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #667eea;
    bottom: 15%;
    right: -100px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .boutique-section {
        padding: 60px 15px;
    }

    .boutique-title {
        font-size: 36px;
    }

    .boutique-subtitle {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 250px;
    }

    .cta-title {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}





/* CORRECTION POUR LE LOGO CLIQUABLE */
.logo a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #666;
}

/* CORRECTION POUR LE LOGO FOOTER CLIQUABLE */
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-logo a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

.footer-logo:hover,
.footer-logo a:hover {
    color: #666;
    transform: translateY(-2px);
}

/* AMÉLIORATION DES EFFETS HOVER FOOTER */
.footer-links li a:hover {
    color: #666;
    transform: translateY(-2px);
}

.social-link:hover {
    color: #666;
    transform: translateY(-2px);
}

/* CORRECTION POUR LES BOUTONS PRODUITS */
.product-btn {
    background-color: #2c3e50;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-btn:hover {
    background-color: #1a252f;
    transform: scale(1.05);
    color: white !important;
}

/* CORRECTION POUR TOUS LES BOUTONS */
.btn-primary {
    background-color: #2c3e50 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
    background-color: #1a252f !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white !important;
    color: #2c3e50 !important;
    transform: translateY(-3px);
}

/* CORRECTION POUR LES BOUTONS HERO */
.hero .btn-primary {
    background-color: white !important;
    color: #2c3e50 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    background-color: #f8f9fa !important;
    color: #2c3e50 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background-color: white !important;
    color: #2c3e50 !important;
    transform: translateY(-3px);
}

/* CORRECTION POUR LA SECTION ÉQUIPE */
.equipe-section .btn-primary {
    background-color: #2c3e50 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.equipe-section .btn-primary:hover {
    background-color: #1a252f !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* CORRECTION POUR LA SECTION STADE */
.stade-cta .btn-secondary {
    background-color: white !important;
    color: #2c3e50 !important;
    border: 2px solid white;
}

.stade-cta .btn-secondary:hover {
    background-color: #f8f9fa !important;
    color: #2c3e50 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}





















/* HERO ÉQUIPE */
.equipe-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px 60px;
}

.equipe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.equipe-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.equipe-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.equipe-hero-title {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.equipe-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SECTION JOUEURS */
.joueurs-section {
    padding: 80px 20px;
    background-color: #fff;
}

.joueurs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.joueurs-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.joueur-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    min-width: 300px;
    flex-shrink: 0;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c3e50;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #2c3e50;
    width: 30px;
    border-radius: 6px;
}

.joueur-image {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.joueur-card:nth-child(2n) .joueur-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.joueur-card:nth-child(3n) .joueur-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.joueur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joueur-numero {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joueur-info {
    padding: 25px;
    text-align: center;
}

.joueur-nom {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.joueur-poste {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.joueur-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

/* SECTION COMPOSITION */
.composition-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
}

.composition-container {
    max-width: 1400px;
    margin: 0 auto;
}

.composition-header {
    text-align: center;
    margin-bottom: 60px;
}

.composition-title {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.composition-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.terrain-container {
    position: relative;
    background: linear-gradient(135deg, #0f7f30 0%, #0a5f25 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.terrain-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.terrain-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.terrain {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
}

.ligne {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.joueur-position {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.joueur-position:hover {
    transform: scale(1.1);
}

.joueur-badge {
    background-color: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.joueur-position:hover .joueur-badge {
    background-color: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.joueur-badge-numero {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.joueur-position:hover .joueur-badge-numero {
    color: white;
}

.joueur-badge-nom {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.joueur-position:hover .joueur-badge-nom {
    color: white;
}

.joueur-badge-poste {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.joueur-position:hover .joueur-badge-poste {
    color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .equipe-hero-title {
        font-size: 36px;
    }

    .section-title,
    .composition-title {
        font-size: 32px;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .joueur-card {
        min-width: 280px;
    }

    .terrain {
        min-height: 800px;
    }

    .ligne {
        flex-direction: column;
        gap: 15px;
    }

    .joueur-badge {
        min-width: 100px;
        padding: 12px 15px;
    }
}































/* HERO CONTACT */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-hero-title {
    font-size: 52px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* SECTION CONTACT */
.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* FORMULAIRE */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* INFORMATIONS CONTACT */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.info-card:nth-child(2) .info-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.info-card:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.info-card:nth-child(4) .info-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.info-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #764ba2;
}

/* SECTION CARTE */
.map-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-title {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-subtitle {
    font-size: 16px;
    color: #666;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* MODAL DE CONFIRMATION */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.confirmation-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.confirmation-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.confirmation-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.confirmation-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: #555;
}

.confirmation-details strong {
    color: #2c3e50;
}

.confirmation-button {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.confirmation-button:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
    }

    .info-card {
        padding: 20px;
    }
}
























/* STYLES SPÉCIFIQUES POUR LA PAGE CLASSEMENT */

/* Section Position Actuelle */
.classement-stats-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.classement-stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.classement-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-big-number {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-big-number.position {
    color: #2c3e50;
}

.stat-big-number.points {
    color: #43e97b;
}

.stat-big-number.diff {
    color: #667eea;
}

.stat-big-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

/* Tableau de Classement Interactif */
.classement-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.classement-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    border-bottom: 3px solid #667eea;
}

.classement-table-header .table-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.classement-filters {
    display: flex;
    gap: 15px;
}

.classement-filter {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.classement-filter:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.classement-filter option {
    background: #2c3e50;
    color: white;
}

.classement-table-responsive {
    overflow-x: auto;
}

.classement-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.classement-table thead tr {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.classement-table thead th {
    padding: 18px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid #667eea;
}

.classement-table thead th.col-pos {
    text-align: center;
    width: 60px;
}

.classement-table thead th.col-club {
    text-align: left;
    min-width: 200px;
}

.classement-table thead th.col-stat {
    width: 50px;
}

.classement-table thead th.col-pts {
    width: 60px;
    color: #ffd700;
}

.classement-table thead th.col-form {
    min-width: 150px;
}

.classement-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.classement-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.classement-table tbody td {
    padding: 18px 12px;
    text-align: center;
    font-size: 14px;
    color: #2c3e50;
}

.classement-table .col-pos {
    text-align: center;
}

.classement-table .position-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    background: #f0f0f0;
    color: #666;
}

.classement-table .position-badge.first {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.classement-table .position-badge.second {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.classement-table .position-badge.third {
    background: linear-gradient(135deg, #cd7f32 0%, #e89a5d 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

.classement-table .col-club {
    text-align: left;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.team-name {
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
}

.classement-table .col-stat {
    font-weight: 500;
    color: #666;
}

.classement-table .col-stat.positive {
    color: #27ae60;
    font-weight: 700;
}

.classement-table .col-stat.negative {
    color: #e74c3c;
    font-weight: 700;
}

.classement-table .col-pts {
    font-weight: 800;
    font-size: 16px;
    color: #2c3e50;
}

/* Zone de promotion */
.classement-table tbody tr.promotion-zone {
    border-left: 4px solid #27ae60;
    background: linear-gradient(to right, rgba(39, 174, 96, 0.05) 0%, transparent 100%);
}

/* Ligne FC Fulbert en surbrillance */
.classement-table tbody tr.fc-fulbert-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left: 4px solid #667eea;
}

.classement-table tbody tr.fc-fulbert-highlight:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.classement-table tbody tr.fc-fulbert-highlight .team-name {
    color: #667eea;
    font-weight: 800;
}

.classement-table tbody tr.fc-fulbert-highlight .col-pts {
    color: #667eea;
}

/* Indicateurs de forme (5 derniers) */
.form-indicators {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-icon.win {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.4);
}

.form-icon.draw {
    background: linear-gradient(135deg, #95a5a6 0%, #bdc3c7 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(149, 165, 166, 0.4);
}

.form-icon.loss {
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.form-icon:hover {
    transform: scale(1.15);
}

/* Légende du tableau */
.classement-legend {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.promotion {
    background: #27ae60;
}

.legend-separator {
    color: #ccc;
    font-weight: 300;
}

.legend-stats {
    flex: 1;
}

.legend-stats strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .classement-table-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .classement-filters {
        width: 100%;
        flex-direction: column;
    }
    
    .classement-filter {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .classement-table-header {
        padding: 20px;
    }
    
    .table-title {
        font-size: 18px;
    }
    
    .classement-table thead th {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .classement-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .team-logo {
        width: 24px;
        height: 24px;
    }
    
    .team-name {
        font-size: 13px;
    }
    
    .form-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .classement-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 12px;
    }
}

/* Section Résultats */
.resultats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.match-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.match-team {
    display: flex;
    flex-direction: column;
}

.match-team.home {
    text-align: right;
}

.match-team.away {
    text-align: left;
}

.match-team-name {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.match-team-location {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.match-score {
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    min-width: 150px;
}

.match-score.victoire {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.match-score.defaite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.match-score.nul {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.match-score-result {
    font-size: 28px;
    font-weight: bold;
}

.match-score-label {
    font-size: 11px;
    margin-top: 5px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Section Prochains Matchs */
.prochains-matchs-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.match-card-prochain {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.match-prochain-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.match-prochain-team {
    flex: 1;
    text-align: center;
}

.match-prochain-team-name {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.match-prochain-team-location {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.match-prochain-datetime {
    text-align: center;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
}

.match-prochain-date {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.match-prochain-time {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-top: 5px;
}

.match-prochain-cta {
    text-align: center;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .classement-stats-card {
        padding: 30px 20px;
    }

    .classement-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-big-number {
        font-size: 36px;
    }

    /* Tableau responsive */
    .classement-table {
        font-size: 14px;
    }

    .classement-table thead th,
    .classement-table tbody td {
        padding: 10px 5px;
    }

    .classement-table thead th {
        font-size: 12px;
    }

    /* Cartes de match responsive */
    .match-card {
        grid-template-columns: 1fr;
        padding: 20px;
        text-align: center;
    }

    .match-team.home,
    .match-team.away {
        text-align: center;
    }

    .match-team-name {
        font-size: 16px;
    }

    .match-score {
        padding: 12px 25px;
        min-width: 120px;
    }

    .match-score-result {
        font-size: 24px;
    }

    /* Prochains matchs responsive */
    .match-prochain-content {
        flex-direction: column;
    }

    .match-prochain-team-name {
        font-size: 18px;
    }

    .match-prochain-time {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .classement-table thead th:nth-child(3),
    .classement-table thead th:nth-child(4),
    .classement-table thead th:nth-child(5),
    .classement-table thead th:nth-child(6),
    .classement-table tbody td:nth-child(3),
    .classement-table tbody td:nth-child(4),
    .classement-table tbody td:nth-child(5),
    .classement-table tbody td:nth-child(6) {
        display: none;
    }

    .match-score {
        width: 100%;
    }
}




/* ==================== NOUVEAUX STYLES SEO ==================== */

/* Contenu SEO textuel - Section claire */
.seo-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.seo-content p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.seo-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Contenu SEO sur fond sombre */
.seo-content-dark {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    line-height: 1.8;
}

.seo-content-dark p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.seo-content-dark strong {
    color: white;
    font-weight: 600;
}

/* Titre du tableau pour SEO */
.table-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding: 15px 0;
}

/* Amélioration du H2 principal (un seul H1 conservé) */
.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Liens internes optimisés */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.internal-link:hover {
    color: #764ba2;
    border-bottom-color: #667eea;
}

/* Alt text invisible pour images (améliore accessibilité) */
.seo-alt-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Légère amélioration de la lisibilité des tableaux */
.classement-table tbody tr {
    transition: background-color 0.3s ease;
}

.classement-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Amélioration du contraste pour l'accessibilité */
.classement-legend {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 13px;
    color: #333;
    border-left: 3px solid #667eea;
}

.classement-legend strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Optimisation du maillage interne */
.breadcrumb-nav {
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-nav span {
    margin: 0 8px;
    color: #999;
}

/* Responsive pour le contenu SEO */
@media (max-width: 768px) {

    .seo-content,
    .seo-content-dark {
        padding: 20px 15px;
        font-size: 15px;
    }

    .seo-content p,
    .seo-content-dark p {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .table-title {
        font-size: 18px;
    }
}

/* Optimisation des images pour SEO (propriétés image) */
img {
    width: 100%;
    height: auto;
    display: block;
}

/* Schema pour les événements de matchs */
.match-event-schema {
    display: none;
}

/* ========================================================== */
















/* ==================== NOUVEAUX STYLES SEO ==================== */

/* Contenu SEO textuel - Section claire */
.seo-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.seo-content p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.seo-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Contenu SEO sur fond sombre */
.seo-content-dark {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    line-height: 1.8;
}

.seo-content-dark p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.seo-content-dark strong {
    color: white;
    font-weight: 600;
}

/* Titre du tableau pour SEO */
.table-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding: 15px 0;
}

/* Amélioration du H2 principal (un seul H1 conservé) */
.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Liens internes optimisés */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.internal-link:hover {
    color: #764ba2;
    border-bottom-color: #667eea;
}

/* Alt text invisible pour images (améliore accessibilité) */
.seo-alt-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Légère amélioration de la lisibilité des tableaux */
.classement-table tbody tr {
    transition: background-color 0.3s ease;
}

.classement-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Amélioration du contraste pour l'accessibilité */
.classement-legend {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 13px;
    color: #333;
    border-left: 3px solid #667eea;
}

.classement-legend strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Optimisation du maillage interne */
.breadcrumb-nav {
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-nav span {
    margin: 0 8px;
    color: #999;
}

/* Responsive pour le contenu SEO */
@media (max-width: 768px) {

    .seo-content,
    .seo-content-dark {
        padding: 20px 15px;
        font-size: 15px;
    }

    .seo-content p,
    .seo-content-dark p {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .table-title {
        font-size: 18px;
    }
}

/* Optimisation des images pour SEO (propriétés image) */
img {
    width: 100%;
    height: auto;
    display: block;
}

/* Schema pour les événements de matchs */
.match-event-schema {
    display: none;
}

/* ========================================================== */

/* SECTION GALERIE PHOTOS DES MATCHS */
.galerie-matchs-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galerie-container {
    max-width: 1400px;
    margin: 0 auto;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.galerie-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

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

.galerie-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.galerie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galerie-card:hover .galerie-image {
    transform: scale(1.1);
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(102, 126, 234, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galerie-card:hover .galerie-overlay {
    opacity: 1;
}

.galerie-info {
    color: white;
    width: 100%;
}

.galerie-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.galerie-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* Image placeholder si image pas chargée */
.galerie-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

/* CTA de la galerie */
.galerie-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.galerie-cta p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.galerie-cta .internal-link {
    margin-left: 5px;
}

/* RESPONSIVE GALERIE */
@media (max-width: 1024px) {
    .galerie-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .galerie-matchs-section {
        padding: 60px 15px;
    }

    .galerie-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .galerie-card {
        border-radius: 12px;
    }

    .galerie-overlay {
        padding: 20px;
    }

    .galerie-info h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .galerie-info p {
        font-size: 12px;
    }

    .galerie-cta {
        padding: 20px;
    }

    .galerie-cta p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .galerie-card {
        aspect-ratio: auto;
        height: 200px;
    }

    .galerie-info h3 {
        font-size: 14px;
    }

    .galerie-info p {
        font-size: 11px;
    }
}


























/* HERO FAQ */
.faq-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.faq-hero-title {
    font-size: 52px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* SECTION FAQ */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* CATÉGORIES */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background-color: white;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

/* SECTION CATÉGORIE */
.faq-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c3e50;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.faq-category:nth-child(2) .category-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.faq-category:nth-child(3) .category-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.faq-category:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

/* QUESTIONS */
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    background-color: #2c3e50;
    color: white;
}

.question-text {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.faq-item.active .question-text {
    color: white;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background-color: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background-color: white;
    color: #2c3e50;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.answer-content p {
    margin-bottom: 10px;
}

.answer-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.answer-content li {
    margin-bottom: 8px;
}

.answer-content strong {
    color: #2c3e50;
}

/* SECTION CONTACT */
.faq-contact-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 60px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
}

.contact-title {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2c3e50;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-3px);
}

/* BARRE DE RECHERCHE */
.search-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 36px;
    }

    .categories-nav {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .category-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .question-text {
        font-size: 15px;
    }

    .answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .faq-contact-section {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}



















/* Styles pour le lecteur audio */
.audio-reader-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 30px 20px;
    text-align: center;
}

.audio-reader-container {
    max-width: 800px;
    margin: 0 auto;
}

.audio-reader-title {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.audio-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.audio-btn {
    background-color: white;
    color: #2c3e50;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.audio-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.audio-btn.playing {
    background-color: #43e97b;
    color: white;
}

.audio-icon {
    font-size: 20px;
}

.audio-status {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-top: 15px;
}

/* Section Histoire */
.histoire-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.histoire-container {
    max-width: 1000px;
    margin: 0 auto;
}

.histoire-chapter {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
}

.chapter-year {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.chapter-title {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.chapter-text {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 15px;
}

.chapter-highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #43e97b;
}

.chapter-highlight h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-divider {
    text-align: center;
    padding: 30px 0;
}

.timeline-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .histoire-chapter {
        padding: 25px 20px;
    }

    .chapter-title {
        font-size: 24px;
    }

    .chapter-text {
        font-size: 16px;
    }

    .audio-controls {
        flex-direction: column;
        width: 100%;
    }

    .audio-btn {
        width: 100%;
        justify-content: center;
    }
}









































/* HERO BOUTIQUE */
.boutique-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.boutique-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.boutique-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.boutique-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.boutique-hero-title {
    font-size: 52px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.boutique-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* FILTRES */
.filters-section {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-btn {
    padding: 12px 25px;
    background-color: white;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* PRODUITS */
.products-section {
    padding: 80px 20px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.product-image {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.product-card:nth-child(2n) .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-card:nth-child(3n) .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:nth-child(4n) .product-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.product-btn {
    background-color: #2c3e50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #1a252f;
    transform: scale(1.05);
}

/* MODAL PRODUIT */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-details h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.size-selector {
    margin-bottom: 25px;
}

.size-selector h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.selected {
    border-color: #2c3e50;
    background-color: #2c3e50;
    color: white;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #2c3e50;
    background: white;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #2c3e50;
    color: white;
}

.quantity-value {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    min-width: 40px;
    text-align: center;
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* PANIER FLOTTANT */
.cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2c3e50;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-float:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #f5576c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-logo a {
    text-decoration: none;
    color: black;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-links li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 20px;
        transition: left 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .boutique-hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


















.mentions-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.mentions-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mentions-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

.mentions-section h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.mentions-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mentions-section ul {
    color: #555;
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 15px;
}

.mentions-section li {
    margin-bottom: 8px;
}

.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.alert-box strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.alert-box p {
    color: #856404;
    margin: 0;
}

.info-box {
    background: #d1ecf1;
    border-left: 4px solid #0dcaf0;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box strong {
    color: #055160;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box p {
    color: #055160;
    margin: 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    color: #2c3e50;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .mentions-section {
        padding: 25px;
    }

    .mentions-section h2 {
        font-size: 24px;
    }
}