/* //////// Global \\\\\\\ Global -_-_-_-_-_- Global -_-_-_-_-_- Global \\\\\\\ Global /////// */

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

body {
   font-family: Arial, Helvetica, sans-serif;
   background-color: #353535;
   color: #ffffff;
   line-height: 1.6;
   padding-top: 70px;
   width: 100%;
}

main {
   margin-top: 50vh;
   background: #353535;
   position: relative;
   z-index: 1;
}

/* //////// Header \\\\\\\ Header -_-_-_-_-_- Header -_-_-_-_-_- Header \\\\\\\ Header /////// */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    background: rgba(90, 90, 90, 0.75);
    z-index: 10;
}

header nav {
    max-width: 1200px;
    padding: 15px 30px;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #1e9aff; /* bleu Red Bull */
}

.logo:hover {
    opacity: 0.8;
    color: #261eff;
}

nav ul {
    font-size: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 5px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    border-bottom: 3px solid #1e41ff;
}

nav ul li a.active {
    border-bottom: 3px solid #1e41ff;
}

/* //////// Index \\\\\\\ Index -_-_-_-_-_- Index -_-_-_-_-_- Index \\\\\\\ Index /////// */

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_redbull_4xwc_2.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}

.titlePrincipal {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-top: 30px;
    color: #ffffff;
    text-align: center;
}

table {
    width: 100%;
    margin-top: 20px;
    background-color: white;
}

section {
  color: #ffffff;
  padding: 80px 0;
}
section .content {
   max-width: 1200px;
   margin: auto;
   padding: 0 30px;

   display: flex;
   gap: 40px;
   align-items: center;
}

section.reverse .content {
   flex-direction: row-reverse;
}

section .text {
    flex: 1;
}

section .text h3 {
    font-size: 35px;
    margin-bottom: 20px;
}

section .text p {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
}

section .images {
   flex: 1;
   display: flex;
   gap: 30px;
   max-width: 50%;
}

.img-box {
   flex: 1;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 15px 35px rgba(0,0,0,0.35);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-box img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   display: block;
   border-radius: 12px;
}

.img-box:hover {
   transform: scale(1.03); /* très léger */
   box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* //////// Donnees \\\\\\\ Donnees -_-_-_-_-_- Donnees -_-_-_-_-_- Donnees \\\\\\\ Donnees /////// */

.data-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_redbull_victoire_8.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.data-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.data-hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.data-hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.data-hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}

.table-blockV {
    max-width: 80%;
    margin: 0 auto 100px;
    padding-top: 40px;
}
.table-blockC {
    max-width: 95%;
    margin: 0 auto 100px;
    padding-top: 40px;
}

.table-title {
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

table.dataTable {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

table.dataTable thead th {
    background-color: #111;
    color: white;
    font-weight: bold;
    padding: 10px 8px;
    text-align: center;
    border-bottom: none;
}

table.dataTable tbody td {
    padding: 8px;
    text-align: center;
    font-size: 15px;
    color: #333;
}

table.dataTable tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

table.dataTable tbody tr:hover {
    background-color: #e8ebff;
}

.dataTables_wrapper {
    background-color: white;
    padding: 20px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.table-scroll table {
  min-width: 1200px;
}

.dataTables_filter {
    margin-bottom: 20px;
    font-size: 20px;
}

.dataTables_filter input {
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 6px 12px;
    margin-left: 10px;
    min-width: 220px;
}

.dataTables_length {
    margin-bottom: 20px;
    font-size: 20px;
}

.dataTables_length select {
    border-radius: 8px;
    padding: 5px;
    margin-left: 8px;
}

.dataTables_paginate {
    margin-top: 25px;
    font-size: 20px;
}

.dataTables_paginate .paginate_button {
    border-radius: 8px;
    margin: 0 3px;
    padding: 6px 12px;
}

.dataTables_info {
    margin-top: 20px;
    font-size: 20px;
}

.dt-buttons .dt-button {
    background: #1e35ff;
    color: white;
    border-radius: 20px;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    margin-bottom: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.dt-buttons .dt-button:hover {
    background: #1e74ff;
}

#Carriere {
    font-size: 0.9rem;
}

/* //////// Galerie \\\\\\\ Galerie -_-_-_-_-_- Galerie -_-_-_-_-_- Galerie \\\\\\\ Galerie /////// */

.galerie-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_redbull_Monza_2011.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.galerie-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.galerie-hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.galerie-hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.galerie-hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}

.titleGalerie {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    margin-top: -70px;
}

.upload-zone {
   border: 2px dashed #1e9aff;
   border-radius: 18px;
   padding: 30px;
   text-align: center;
   margin: 40px auto 80px;
   max-width: 600px;
   transition: background 0.3s, border-color 0.3s;
}

.upload-zone p {
   font-size: 18px;
   margin-bottom: 10px;
}

.upload-zone label {
   color: #1e9aff;
   font-weight: bold;
   cursor: pointer;
}

.titleGalerieOriginel{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.galerieBase-main {
   max-width: 100%;
   margin: auto;
   padding: 80px 30px;
   margin-top: 50vh;
}

.gallery {
    max-width: 75%;
    margin: 0 auto;
   column-count: 4;
   column-gap: 30px;
}

.gallery img {
   width: 100%;
   margin-bottom: 30px;
   border-radius: 14px;
   break-inside: avoid;
   display: block;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 2;
}

.galleryP {
    max-width: 85%;
    margin: 0 auto;
   column-count: 5;
   column-gap: 25px;
}

.galleryP img {
   width: 100%;
   margin-bottom: 25px;
   border-radius: 14px;
   break-inside: avoid;
   display: block;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.galleryP img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 2;
}

.lightbox {
  display: none;
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* //////// Contact \\\\\\\ Contact -_-_-_-_-_- Contact -_-_-_-_-_- Contact \\\\\\\ Contact /////// */

.contact-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_hamilton.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.contact-hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.contact-hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.contact-hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}

.contact-title {
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

.contact-form {
  width: 500px;
  margin: 0 auto;
  padding: 25px;
  background: #1E1E1E;
  color: #ffffff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.en-tete {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.champ {
  width: 100%;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
}

form span {
  color: red;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  height: 38px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #1e35ff;
  border-radius: 6px;
}

textarea {
  height: auto;
  resize: vertical;
}

.actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

input[type="submit"],
input[type="reset"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}

select {
  width: 100%;
  height: 38px;
  padding: 8px;
  background-color: #ffffff;
  color: #313131;
  border: 1px solid #1e35ff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

select:hover {
  border-color: #1e74ff;
}

select option {
  background: #ffffff;
  color: #313131;
}

input[type="submit"] {
    background: #006fca;
    color: #ffffff;
}

input[type="reset"] {
    background: #4e4e4e;
    color: #ffffff;
}

input[type="submit"]:hover {
    background: #1e74ff;
}

input[type="reset"]:hover {
    background: #5d5d5d;
}

.contact-container {
    padding: 70px;
    width: 65%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

.contact-image {
    width: 45%;
    padding: 20px;         
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    border-radius: 10px 0 0 10px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.contact-form {
    width: 55%;
    padding: 30px;
}

.message-retour {
   width: 65%;
   margin: 20px auto;
   padding: 15px 20px;
   border-radius: 8px;
   font-weight: bold;
   line-height: 1.5;
}

.message-retour:has(br) {
   background: #3a0f0f;
   border: 1px solid #ff4d4d;
   color: #ffbaba;
}

.message-retour:not(:has(br)) {
   background: #0f3a1f;
   border: 1px solid #3cff8f;
   color: #baffd9;
}


/* //////// Partenaires \\\\\\\ Partenaires -_-_-_-_-_- Partenaires -_-_-_-_-_- Partenaires \\\\\\\ Partenaires /////// */

.partenaire-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_redbull_victoire_3.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.partenaire-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.partenaire-hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.partenaire-hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.partenaire-hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}
 
:root{
  --pp-max: 1080px;
  --pp-pad: 20px;
  --pp-radius: 18px;
  --pp-bg: #0b0b10;
  --pp-card: rgba(255,255,255,0.06);
  --pp-text: rgba(255,255,255,0.88);
  --pp-muted: rgba(255,255,255,0.62);
  --pp-border: rgba(255,255,255,0.12);
}

.pp-container{
  max-width: var(--pp-max);
  margin: 0 auto;
  padding: 0 var(--pp-pad);
}
.pp-title{
  margin: 0; font-size: clamp(2rem, 4vw, 3rem); 
}
.pp-subtitle{ 
  margin: 10px 0 0; color: var(--pp-muted); 
}

.pp-section{ 
  padding: 40px 0; border-top: 1px solid var(--pp-border); 
}
.pp-h2{ 
  margin: 0 0 16px; font-size: 1.6rem; 
}
.pp-h3{
  margin: 0 0 10px; font-size: 1.2rem; 
}
.pp-lead{
  margin: 0; color: #1e74ff; 
}

.pp-grid{
  display: grid;
  gap: 16px;
}
.pp-grid--4{
  grid-template-columns: repeat(2, 1fr);
}

.pp-card{
  border: 1px solid var(--pp-border);
  background: var(--pp-card);
  border-radius: var(--pp-radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.pp-card__media{
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pp-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.pp-card__body{
  padding: 14px 14px 16px; 
}

.pp-card__top{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.pp-card__title{ 
  margin: 0; font-size: 1.1rem; 
  color: #1e74ff;
}

.pp-badge{
  font-size: 0.78rem;
  color: var(--pp-muted);
  border: 1px solid var(--pp-border);
  padding: 4px 8px;
  border-radius: 999px;
}

.pp-card__text{ 
  margin: 10px 0 12px; color: var(--pp-muted); line-height: 1.4; 
}

.pp-link{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}

.pp-link:hover{ 
  border-bottom-style: solid; 
}

.pp-theme__header{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

.pp-split{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.pp-list{
  margin: 10px 0 16px;
  padding-left: 18px;
  color: var(--pp-muted);
}

.pp-cta{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--pp-border);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
.pp-cta:hover{ 
  background: rgba(255,255,255,0.12); 
}

.pp-showcase{
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.pp-showcase img{
  width: 100%;
  display:block;
  height: auto;
}

.pp-docs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.pp-doc{
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--pp-border);
  background: var(--pp-card);
}


.pp-doc__icon{
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 10px;
}

.pp-doc__title{
  display: block;
  color: var(--pp-text);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* //////// Credit \\\\\\\ Credit -_-_-_-_-_- Credit -_-_-_-_-_- Credit \\\\\\\ Credit /////// */

.credit-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;

    background-image: url("images/bandeau/vettel_redbull_6.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: -1;
}

.credit-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.credit-hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.credit-hero-content h1 {
    font-size: 70px;
    margin-bottom: 12px;
}

.credit-hero-content h2 {
    font-size: 30px;
    font-weight: 400;
}

.credit-main {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px 100px;
  margin-top: 50vh;
}

.credit-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin: 80px 0 40px;
  color: #ffffff;
}

.credit-sources {
  max-width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.source-card {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.source-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e9aff;
}

.source-card a {
  font-size: 18px;
  color: #ffffff;
}

.source-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #dddddd;
}

.credit-gallery {
  max-width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.credit-card {
  background: #1b1b1b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.credit-card p {
  padding: 12px;
  font-size: 14px;
  color: #cccccc;
}

.credit-card a {
  font-size: 18px;
  color: #ffffff;
}

.credit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* //////// Footer \\\\\\\ Footer -_-_-_-_-_- Footer -_-_-_-_-_- Footer \\\\\\\ Footer /////// */

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

.titlePrincipal::after,
.credit-title::after,
.titleGalerie::after,
.titleGalerieOriginel::after,
.table-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #1e9aff;
  margin: 15px auto 0;
  border-radius: 2px;
}

