/* Section équipe partenaires aérée comme l'accueil */
.equipe-membres-wrapper {
    background: rgba(34,34,34,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 22px;
    border-left: 6px solid #dc143c;
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.18);
    padding: 3rem 2rem 2.5rem 2rem;
    margin: 60px auto 40px auto;
    max-width: 1350px;
}
.equipe-membres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 36px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
}
.membre {
    background: linear-gradient(135deg, #232323 80%, #dc143c22 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px #0007;
    padding: 36px 22px 26px 22px;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    border: 2.5px solid #fff;
    margin-bottom: 0;
}
.membre:hover {
    transform: translateY(-8px) scale(1.045);
    box-shadow: 0 12px 36px #dc143cbb;
    border-color: #fff200;
}
.membre img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 18px;
    background: #222;
    box-shadow: 0 2px 10px #0006;
}
.nom-membre {
    font-weight: 700;
    font-size: 1.22em;
    margin-bottom: 2px;
    color: #fff200;
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px #fff20055, 0 1px 0 #222;
}
.role-membre {
    font-size: 1.04em;
    color: #fff;
    opacity: 0.92;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.2px;
}
.btn-site {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 18px;
    background: #dc143c;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 1em;
    box-shadow: 0 1px 6px #0003;
    border: none;
}
.btn-site:hover {
    background: #fff;
    color: #dc143c;
    box-shadow: 0 2px 16px #dc143c55;
}

@media (max-width: 1100px) {
    .equipe-membres {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
        max-width: 98vw;
    }
    .equipe-membres-wrapper {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}
@media (max-width: 700px) {
    .equipe-membres {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 98vw;
    }
    .membre {
        min-width: 0;
        max-width: 98vw;
        padding: 22px 8vw 18px 8vw;
    }
    .equipe-membres-wrapper {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
    }
}

.img-large {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #bbb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    background: #222;
    margin: 0 auto;
    display: block;
}

.img-tete-joueur {
    object-fit: cover;
    object-position: 50% 10%; 
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    border: 3px solid transparent;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    background: #222;
    margin: 0 auto;
    display: block;
}

.titre-galerie {
    text-align: center;
    font-size: 3rem;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px #000000,
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c,
        0 0 100px #dc143c;
    margin: 40px 0 24px 0;
    position: relative;
    z-index: 2;
}
.titre-galerie::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #dc143c 0%, #fff 100%);
    margin: 18px auto 0 auto;
    border-radius: 3px;
    box-shadow:
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c,
        0 0 100px #dc143c;
}

.galerie {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    padding: 18px;
    margin: 30px auto 40px auto;
    max-width: 900px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.10);

}

.galerie img {

    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 2px solid #bbb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: filter 0.3s, box-shadow 0.3s;
    filter: grayscale(100%);
    background: #222;
    margin: 0 auto;
    display: block;
}

.galerie img:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 8px 32px #dc143c99, 0 2px 8px #0008;
    border-color: #fff200;
    z-index: 2;
    filter: none;
}

.galerie h2, .galerie p {
    grid-column: 1/-1;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px #000a;
}

form {
    background: rgba(0,0,0,0.55);
    padding: 18px 24px;
    border-radius: 12px;
    max-width: 420px;
    margin: 32px auto 0 auto;
    box-shadow: 0 2px 12px #dc143c33;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
form label {
    color: #fff;
    font-weight: bold;
    margin-bottom: 6px;
}
form input[type="file"] {
    background: #fff;
    border-radius: 6px;
    padding: 12px 18px;
    border: 1px solid #dc143c;
    width: 100%;
    font-size: 1.1rem;
    box-sizing: border-box;
}
form input[type="submit"] {
    background: linear-gradient(90deg, #dc143c 0%, #b3003c 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
form input[type="submit"]:hover {
    background: #fff200;
    color: #b3003c;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



body {
    background-image: url(../images/arsenalfcc.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
    
  
    min-height: 100vh;     
    display: flex;          
    flex-direction: column; 
    margin: 0;          
}

header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

header nav img#logo {
    width: auto;
    height: auto;
    max-width: 10%;
    max-height: 10%;
    position: absolute;
    left: 50px;
}

header nav ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
}

header nav ul li a {
    text-decoration: none;
    font-weight: bold;
    padding: 14px 20px;
    color: white;
}

header nav a{
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bold;

}
header nav a:hover {
    color: #ff0000;
}

header nav a.active {
    color: #fe0b0b;
    border-bottom: 2px solid #ff0000;
    background: rgba(255,255,255,0.08);
    border-radius: 8px 8px 0 0;
}


main {
    width: 1080px;
    margin: 0 auto;
    flex: 1;
    display: flex;        
    flex-direction: column; 
}
footer {
    width: 100%;
    margin-top: auto;
    position: relative;
    padding: 2rem 1rem; 
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(12px);         
    -webkit-backdrop-filter: blur(12px);  
    border-top: 4px solid #dc143c; 
    box-shadow: 0 -10px 30px rgba(220, 20, 60, 0.25); 
    text-align: center;
    color: white;
    font-size: 0.95rem;
    letter-spacing: 1px;
}


    footer p {
    margin: 0;
    padding: 5px;
    text-shadow: 2px 2px 4px #000000; 
}


    footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}


    footer a:hover {
    color: #fff;
    background-color: #b3003c; 
    box-shadow: 0 0 15px #dc143c; 
    text-shadow: 0 0 5px #fff;
}


.titre {
    text-align: center;
    font-weight: bold;
    position: absolute;
    margin: -50px 0;
    font-size: 30px;
}

span.demo {
    color: rgb(255, 255, 255);
    position: absolute;
    font-size: 13px;
    margin: -30px 0;
}

h1 {
    color: whitesmoke;
}

header {
    padding: 10px;
}

.logo {
    height: 50px;
}

#montableau {
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 1000px;
    margin: 120px auto 100px auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid #dc143c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.3);
}

#montableau thead {
    background: linear-gradient(90deg, #dc143c 0%, #b3003c 100%);
}

#montableau thead th {
    padding: 16px 12px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

#montableau thead th:last-child {
    border-right: none;
}

#montableau tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#montableau tbody tr:nth-child(odd) {
    background-color: rgba(220, 20, 60, 0.08);
}

#montableau tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

#montableau tbody tr:hover {
    background-color: rgba(220, 20, 60, 0.25);
    transform: scale(1.01);
    box-shadow: inset 0 0 20px rgba(253, 185, 19, 0.2);
}

#montableau tbody td {
    padding: 14px 12px;
    color: #ffffff;
    font-size: 0.95rem;
}

#montableau tbody td:first-child {
    font-weight: bold;
    color: #ffffff;
}


.dataTables_wrapper {
    max-width: 1000px;
    margin: 120px auto 100px auto;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid #dc143c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.3);
    padding: 0;
}

.dataTables_length,
.dataTables_filter {
    padding: 15px 20px !important;
    color: #ffffff !important;
}

.dataTables_filter input {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    margin-left: 10px;
}

.dataTables_filter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dt-buttons {
    padding: 15px 20px !important;
}

.dt-button {
    background-color: #dc143c !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.dt-button:hover {
    background-color: #b3003c !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5) !important;
}

.dataTables_info {
    padding: 15px 20px !important;
    color: #ffffff !important;
}

.dataTables_paginate {
    padding: 15px 20px !important;
}

.paginate_button {
    background-color: rgba(220, 20, 60, 0.3) !important;
    color: #ffffff !important;
    border: 1px solid #dc143c !important;
    padding: 6px 12px !important;
    border-radius: 5px !important;
    margin: 0 3px;
    transition: all 0.3s ease !important;
}

.paginate_button:hover {
    background-color: #dc143c !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
}

.paginate_button.current {
    background-color: #dc143c !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

.content {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    position: absolute;
    margin-top: 0px;
    margin-left: 150px;
}

.social-icons a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #fff;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    width: 40px;
    margin: 0 8px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    font-size: 20px;
    color: #f8f4f4;
    transition: all 0.3s ease;
    
}

.social-icons a:hover {
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    color: #333;
}

.btn{
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 2px solid #fff9f9;
    box-shadow: 0 0 10px #ffffff;
    color: black;
    text-decoration: none;
    font-weight: 510;
    transition: all 0.3s ease;
}

.btn:hover{
    background:transparent;
    box-shadow:none;
    color: #fff;
}

#titre-accueil {
    text-shadow: 
        2px 2px 4px #000000,
        0 0 10px #000000,
        0 0 20px #000000,
        0 0 30px #000000,
        0 0 40px #000000,
        0 0 70px #000000,
        0 0 80px #000000,
        0 0 100px #000000,
        0 0 150px #000000;
}

.content-section {
    backdrop-filter: blur(10px);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 6px solid #9a2910;
}

.content-section h2,p {
    margin-bottom: 1rem;
    color: #fff;
}


.contact-page {
    min-height: 100vh;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px #000000,
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c,
        0 0 100px #dc143c,
        0 0 150px #dc143c;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.contact-text {
    margin-bottom: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 
        2px 2px 4px #000000,
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c;
    font-weight: 500;
    letter-spacing: 0.5px;
}


.contact-form-glass {
    width: 360px;
    margin: auto;
    padding: 30px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.contact-header {
    display: flex;
    gap: 15px;
}


.contact-field {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.contact-full {
    width: 100%;
}


.contact-field label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.contact-field label span {
    color: #ff3b3b;
}


.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 12px;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;

    color: #fff;
    font-size: 0.9rem;

    box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


.contact-field textarea {
    resize: vertical;
    min-height: 100px;
}


.contact-actions {
    text-align: center;
}

.contact-btn {
    padding: 12px 40px;
    border: none;
    border-radius: 30px;

    background: #b3003c;
    color: #fff;

    font-size: 1rem;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(179, 0, 60, 0.5);
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(179, 0, 60, 0.8);
}


.arsenal {
    width: 50%;
    max-width: 1080px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.accueil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 60vh;
}

.accueil .content {
    flex: 1;
    padding-left: 20px;
}

.video-accueil {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-bottom: 5%;
    box-shadow:
        2px 2px 4px #000000,
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c;
    border-radius: 15px;
}

.video-accueil video {
    width: 100%;
    max-width: 500px;
   
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


.message {
    color: #ffffff;
    text-shadow: 
        2px 2px 4px #000000,
        0 0 10px #dc143c,
        0 0 20px #dc143c,
        0 0 30px #dc143c,
        0 0 40px #dc143c,
        0 0 70px #dc143c,
        0 0 80px #dc143c,
        0 0 100px #dc143c,
        0 0 150px #dc143c;
    font-weight: bold;
    text-align: center;
}

.partenaires-section {
        max-width: 1100px;
        margin: 30px auto;
        background: rgba(0,0,0,0.75);
        border-radius: 18px;
        padding: 40px 36px 36px 36px;
        color: #fff;
        box-shadow: 0 8px 32px #dc143c33, 0 0 16px 4px #dc143c, 0 0 32px 8px #dc143c88;
        border: 2.5px solid #dc143c;
}
.partenaires-titre {
    color: #fff;
    margin-bottom: 18px;
    font-size: 2rem;
    letter-spacing: 1px;
    /* plus de text-shadow néon */
}
.partenaires-texte {
    font-size: 1.13em;
    line-height: 1.7;
}
.accent-rouge {
    color: #dc143c;
    font-weight: bold;
}
.partenaires-docs {
    font-size: 1.1em;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}
.partenaires-docs li {
    margin-bottom: 10px;
}
.partenaires-docs a {
    color: #fff;
    background: #dc143c;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}
.partenaires-docs a:hover {
    background: #fff;
    color: #dc143c;
}
.note-rouge {
    color: #dc143c;
    font-size: 0.98em;
    margin-top: 8px;
}