/* LES BASIQUES */

html {
    scroll-behavior: smooth;    
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #f5f5f5;
    line-height: 1.6;
}

p {
    font-family: 'Play', sans-serif;
}

/* LOADER */
/* CODE EXPORTE DEPUIS https://cssloaders.github.io --> */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 130px;
    height: 48px;
    display: inline-block;
    background: 
    linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000 100%), 
    linear-gradient(45deg, #000 25%, white 25%, white 75%, #000 75%, #000 100%);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(181, 3, 3, 0.5);
    animation: raceBoard 0.6s linear infinite;
}

@keyframes raceBoard {
    0% { background-position: 0 0, 16px 16px; }
    100% { background-position: 32px 0px, 48px 16px; }
}

.loader-text {
    margin-top: 20px;
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* HEADER ET NAVIGATION */

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 25px 0;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    position: sticky;
    z-index: 1000;
    border-bottom: 3px solid #f40404;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

nav a {
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bold;
}

nav a:hover {
    color: #f40404;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #f40404, #ff6b6b);
    transition: width 0.3s ease;
}

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

/* PAGE ACCUEIL */

.img-present-mxgp {
    width: 80%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 10px;
    border: 2px solid #B50303;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
}

.accueil p {
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    text-align: center;
    margin: 50px 0;
}

.main-accueil {
    margin: 0;
    margin-top: -3px;
    background-image: url('../images/banner-accueil.jpg');
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    background-size: cover;
    background-position: 0px -50px;
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-accueil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.main-accueil h1 {
    animation: slideDown 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 80px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.main-accueil p {
    animation: slideDown 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Play', sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

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

.main-accueil .btn-accueil {
    animation: slideDown 1s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #B50303;
    color: white;
    font-family: 'Play', sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid #B50303;
}

.main-accueil .btn-accueil:hover {
    background-color: white;
    color: #B50303;
    border: none;
}

.countdown-section {
    max-width: 1080px;
    margin: 80px auto;  
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #B50303;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    position: relative;
}

.countdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 450px;
}

.countdown-left {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.countdown-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(181, 3, 3, 0.5);
}

.countdown-subtitle {
    font-family: 'Play', sans-serif;
    font-size: 22px;
    color: #fb0000;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.countdown-location {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.6;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.countdown-box {
    background: rgba(181, 3, 3, 0.1);
    border: 2px solid #B50303;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    background: rgba(181, 3, 3, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(181, 3, 3, 0.3);
}

.countdown-number {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    color: #B50303;
    font-weight: bold;
    display: block;
    text-shadow: 0 0 10px rgba(181, 3, 3, 0.5);
}

.countdown-label {
    font-family: 'Play', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 2px;
}

.countdown-right {
    position: relative;
    overflow: hidden;
}

.countdown-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.countdown-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0d0d0d 0%, transparent 30%);
    z-index: 1;
}

.btn-terrain {
    animation: slideDown 1s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    display: inline-block;
    padding: 12px 30px;
    background-color: #B50303;
    color: white;
    font-family: 'Play', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 2px solid #B50303;
}

.btn-terrain:hover {
    background-color: white;
    color: #B50303;
    border: none;
}

.mxgp-present {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.mxgp-content {
    width: 1080px;
    max-width: 100%;
    margin-top: -100px;
}

.mxgp-text h2 {
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.mxgp-text p {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.mxgp-text p:last-child {
    margin-bottom: 0;
}

.mxgp-calendar {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.calendar-content {
    width: 1080px;
    max-width: 100%;
    margin-top: -100px;
}

.calendar-text h2 {
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.calendar-text p {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.calendar-text p:last-child {
    margin-bottom: 0;
}

/* PAGE DONNEES */

.main-donnees {
    margin: 0;
    margin-top: -3px;
    background-image: url('../images/adamo.jpg');
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    background-size: cover;
    background-position: 0px -px;
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-donnees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.main-donnees h1 {
    animation: slideDown 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 80px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.main-donnees p {
    animation: slideDown 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Play', sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.corps-donnees {
    width: 1080px;
    margin: 80px auto;
    border: #B50303 3px solid;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
}

.corps-donnees p {
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    margin-bottom: 30px;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
}

table, th, td {
    border-bottom: 1px solid #B50303;
}

th {
    background-color: #B50303;
    color: white;
    font-family: 'Audiowide', sans-serif;
    padding: 5px 10px;
}

tbody tr {
    font-family: 'Play', sans-serif;
    text-align: center;
}

table.dataTable thead th, 
table.dataTable thead td {
    text-align: center !important;
}

table.dataTable tbody td {
    text-align: center !important;
}

#table-donnees tbody tr:hover {
    background-color: rgba(181, 3, 3, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dt-button {
    margin-top: 25px !important;
    padding: 8px 15px;
    margin-left: 20px !important;
    background-color: #B50303 !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    font-family: 'Play', sans-serif !important;
}

.dt-button:hover {
    background-color: #ffffff !important;
    color: #B50303 !important;
}

#table-donnees_wrapper .dataTables_info {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-top: 25px;
    margin-left: 30px;
    background-color: transparent;
    letter-spacing: 1px;
}

#table-donnees_wrapper .dataTables_filter {
    font-family: 'Play', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 30px;
}

#table-donnees_wrapper .dataTables_filter label {
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
}

#table-donnees_wrapper .dataTables_filter input {
    font-family: 'Play', sans-serif;
    background-color: #2b2b2b;
    border: 1px solid #555;
    color: #ffffff;
    padding: 8px 15px;
    margin-left: 20px;
    border-radius: 4px;
}

#table-donnees_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: #c41e3a;
}

#table-donnees_wrapper .dataTables_length,
#table-donnees_wrapper .dataTables_filter,
#table-donnees_wrapper .dataTables_info,
#table-donnees_wrapper .dataTables_paginate {
    font-family: 'Play', sans-serif;
}

#table-donnees_wrapper .dataTables_paginate .paginate_button {
    font-family: 'Play', sans-serif;
    font-weight: 600;
}

#table-donnees_wrapper .dataTables_paginate {
    background-color: #2b2b2b;
    padding: 10px;
    margin-top: 20px;
}

#table-donnees_wrapper .dataTables_paginate .paginate_button {
    background-color: transparent;
    color: #fff !important;
    border: none;
    padding: 8px 15px;
}

#table-donnees_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #B50303;
    color: #fff !important;
}

#table-donnees_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #B50303 !important;
    color: #fff !important;
}

/*  PAGE GALERIE */

.galerie p {
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    text-align: center;
    margin: 50px 0;
}

.main-galeriee {
    margin: 0;
    margin-top: -3px;
    background-image: url('../images/jett.jpg');
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    background-size: cover;
    background-position: 0px -30px;
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-galeriee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.main-galeriee h1 {
    animation: slideDown 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 80px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.main-galeriee p {
    animation: slideDown 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Play', sans-serif;
    font-family: 'Play', sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.upload-section {
    max-width: 1080px;
    margin: 60px auto;
    padding: 0 20px;
}

.upload-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #B50303;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
}

.upload-section label {
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.upload-section input[type="file"] {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    background-color: rgba(181, 3, 3, 0.1);
    border: 2px solid #B50303;
    border-radius: 8px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.upload-section input[type="file"]:hover {
    background-color: rgba(181, 3, 3, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 3, 3, 0.3);
}

.upload-section input[type="file"]::file-selector-button {
    background-color: #B50303;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Play', sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.upload-section input[type="file"]::file-selector-button:hover {
    background-color: white;
    color: #B50303;
}

.upload-section input[type="submit"] {
    font-family: 'Audiowide', sans-serif;
    background-color: #B50303;
    color: white;
    border: 2px solid #B50303;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.upload-section input[type="submit"]:hover {
    background-color: white;
    color: #B50303;
    border-color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(181, 3, 3, 0.6);
}


.galerie {
    max-width: 1080px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.galerie img {
    max-width: calc(32% - 17px);
    height: auto;
    border-radius: 10px;
    border: 3px solid #B50303;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 35, 35, 0.3);
    cursor: pointer;
    filter: grayscale(100%);
}

.galerie img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 30px rgba(181, 3, 3, 0.6),
                0 0 60px rgba(181, 3, 3, 0.4);
    border-color: #ff3333;
    filter: grayscale(0%);
}


/* PAGE CREDITS */

.main-credits {
    margin: 0;
    margin-top: -3px;
    background-image: url('../images/prado.jpg');
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    background-size: cover;
    background-position: 0px -50px;
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-credits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.main-credits h1 {
    animation: slideDown 1s ease-out 1s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 80px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.main-credits p {
    animation: slideDown 1s ease-out 1s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Play', sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.credits-section {
    max-width: 1080px;
    margin: 30px auto;  
    overflow: hidden;
    padding: 40px;
}

.credits-section ul li a {
    color: #fb0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-section h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.credits-section ul {
    list-style-type: disc;
    padding-left: 20px;
    padding-bottom: 40px;
}

.credits-section ul li {
    font-family: 'Play', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* PAGE CONTACT */

.cart {
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1080px;
    min-height: 550px;
    height: auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 3px solid #f40404;
    box-shadow: 0 4px 8px rgba(251, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    gap: 20px;
}

.form-part {
    flex: 1;
    padding-right: 20px;
}

.form-part h1 {
    font-family: 'Audiowide', sans-serif;
    color: white;
    margin-top: 0;
    font-size: 60px;
    margin-bottom: 0px;
    text-align: center;
    letter-spacing: 2px;
}

.form-part form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-part label {
    color: white;
    font-weight: bold;
    font-family: 'Play', sans-serif;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    margin-top: 11px;
}

.form-part input,
.form-part textarea {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Play', sans-serif;
    font-size: 14px;
    background-color: white;
    color: rgb(50, 50, 50);
    margin-bottom: 8px;
}

.form-part input::placeholder,
.form-part textarea::placeholder {
    color: rgb(150, 150, 150);
}

.form-part input:focus,
.form-part textarea:focus {
    outline: none;
    border: 2px solid #f40404;
    box-shadow: 0 0 8px rgba(244, 4, 4, 0.5);
}

.form-part button {
    padding: 12px 25px;
    background-color: #B50303;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Audiowide', sans-serif;
    margin-top: 5px;
}

.form-part button:hover {
    background-color: #ffffff;
    color: #B50303;
}

.image-part {
    width: 500px;
    min-height: 590px;
    position: relative;
    border-radius: 5px 5px 5px 5px;
    background-image: url('../images/simon.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin: -20px -20px -20px 0;
    align-self: stretch;
}

#span-contact {
    color: #B50303;
    font-weight: bold;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #B50303;
    margin: 0;
}

.radio-item label {
    margin: 0;
    cursor: pointer;
    font-family: 'Play', sans-serif;
    color: white;
    font-weight: normal;
}

.message-confirmation {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    background-color: rgba(181, 3, 3, 0.2);
    border: 2px solid #B50303;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
}

/*  PAGE PARTENAIRES */

.partenaires p {
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    text-align: center;
    margin: 50px 0;
}

.main-partenaires {
    margin: 0;
    margin-top: -3px;
    background-image: url('../images/herlings.jpg');
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    background-size: cover;
    background-position: 0px -150px;
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-partenaires::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.main-partenaires h1 {
    animation: slideDown 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Audiowide', sans-serif;
    color: white;
    font-size: 80px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.main-partenaires p {
    animation: slideDown 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'Play', sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.partenaires-container {
    max-width: 1080px;
    margin: 80px auto;
    padding: 0 20px;
}

.motivation-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #B50303;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4); 
}

.motivation-section h2 {
    font-family: 'Audiowide', sans-serif;
    color: #B50303;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.motivation-section p {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.documents-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #B50303;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
}

.documents-section h2 {
    font-family: 'Audiowide', sans-serif;
    color: #B50303;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.document-item {
    background: rgba(181, 3, 3, 0.1);
    border: 2px solid #B50303;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(181, 3, 3, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(181, 3, 3, 0.3);
}

.document-item h3 {
    font-family: 'Audiowide', sans-serif;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.document-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #B50303;
    color: white;
    font-family: 'Play', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #B50303;
}

.document-btn:hover {
    background-color: white;
    color: #B50303;
    border-color: white;
    transform: scale(1.05);
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-items: center;
}

.partenaire-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #B50303;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
}

.partenaire-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(181, 3, 3, 0.6),
                0 0 60px rgba(181, 3, 3, 0.4);
}

.partenaire-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.partenaire-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.partenaire-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(13, 13, 13, 1) 0%, transparent 100%);
}

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

.partenaire-name {
    font-family: 'Audiowide', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partenaire-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #B50303;
    color: white;
    font-family: 'Play', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #B50303;
}

.partenaire-btn:hover {
    background-color: white;
    color: #B50303;
    border-color: white;
    transform: scale(1.05);
}

/* FOOTER */

footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 3px solid #f40404;
    color: #ffffff;
}

footer a {
    color: #f40404;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}


footer p {
    margin: 10px 0;
    font-size: 14px;
}

footer p:first-child {
    font-family: 'Audiowide', sans-serif;
    color: #f40404;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;
}

/* RESPONSIVE - FORMULAIRE DE CONTACT */

@media (max-width: 1120px) {
    .cart {
        max-width: 95%;
        margin: 50px auto;
    }
}

@media (max-width: 900px) {
    .cart {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .image-part {
        width: 100%;
        height: 300px;
        min-height: 300px;
        margin: 0;
        border-radius: 0 0 5px 5px;
    }
    
    .form-part {
        padding-right: 0;
    }
    
    .form-part h1 {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .form-part h1 {
        font-size: 40px;
    }
    
    .cart {
        padding: 15px;
        margin: 30px auto;
    }
    
    .image-part {
        height: 200px;
        min-height: 200px;
    }
    
    .radio-group {
        gap: 8px;
    }
}

/* SLIDER CALENDRIER MXGP 2026 */

.calendar-slider-section {
    max-width: 1080px;
    margin: 60px auto;
    padding: 0 20px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-wrapper {
    overflow: hidden;
    flex: 1;
    padding: 15px 0;
    margin: -15px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.calendar-card {
    min-width: 320px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #B50303;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 6px 20px rgba(220, 35, 35, 0.4);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.5;
    overflow: hidden;
}

.calendar-card:nth-child(1),
.calendar-card:nth-child(2),
.calendar-card:nth-child(3) {
    opacity: 1;
}

.calendar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(181, 3, 3, 0.6),
                0 0 60px rgba(181, 3, 3, 0.4);
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Audiowide', sans-serif;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1) 0%, transparent 100%);
}

.card-date {
    font-family: 'Audiowide', sans-serif;
    font-size: 24px;
    color: #B50303;
    text-align: center;
    margin: 15px 0 10px 0;
    font-weight: bold;
    padding: 0 20px;
}

.card-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
    min-height: 50px;
    padding: 0 20px;
}

.card-location {
    font-family: 'Play', sans-serif;
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 0 20px;
}

.card-category {
    font-family: 'Play', sans-serif;
    font-size: 13px;
    color: #cccccc;
    text-align: center;
    min-height: 35px;
    padding: 0 20px 20px 20px;
}

.slider-btn {
    background-color: #B50303;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(181, 3, 3, 0.4);
    flex-shrink: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #ffffff;
    color: #B50303;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}
