@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif; /* Typo simple et moderne pour les textes */
    background-color: #1a1a1a; 
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: center;
    align-items: center; 
    color: #e0e0e0; 
}

/* TITRES PUISSANTS */
h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff; /* Texte bien contrasté */
}

/* PARAGRAPHES LISIBLES */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 18px;
    color: #d6d6d6;
}



main{
    max-width: 1080px; 
    margin: 0 auto; 
    box-sizing: border-box;
    padding: 20px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}


body::-webkit-scrollbar{
    display: none;
}

/*------------------HEADER--------------------*/
header {
    background-color: #1a1a1a;
    padding: 13px 0;
    text-align: center;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding:5px;
    
}
/* Logo */
header .logo img {
    height: 50px; 
}


header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 8px;
    margin: 0;
}

header nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 0 15px;
    transition: color 0.3s, background-color 0.3s;
}

header nav ul li a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(112, 40, 136);
}
/* Styles du menu */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Style pour l'élément actif */
nav ul li a.active {
    background-color: rgb(112, 40, 136);
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

/* Effet au survol */
nav ul li a:hover {

    color: white;
    text-decoration: none;
}
h1 {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}

#credits {
    text-align: center;
    padding: 40px;
    background: #2b2b2b;
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ce96de;
}

.credit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1.5s ease-out;
}

.credit-item {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.credit-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease, filter 0.3s ease; 
    filter: grayscale(100%); 
}

.credit-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%); 
}

.credit-item a {
    color: #a648a6;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.credit-item a:hover {
    text-decoration: underline;
}

.credit-item p {
    margin-top: 5px;
    font-size: 1rem;
    color: #ccc;
}

/* Animation pour faire apparaître la grille */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/jos8.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgb(155, 88, 181);
}

.home-banner h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    background-color: #0000007a;
    border-radius: 12px;
}

.home-banner p {
    font-size: 1.5rem;
    margin: 0;
    padding: 0 10px;
    max-width: 600px;
}

.data {
    padding: 20px;
    margin: 20px auto;
    max-width: 1080px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.data h2 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}



.about-josman {
    padding: 50px 20px;
    background-color: #222;
    color: #ff0000;
    text-align: center;
}

.about-josman h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #703c92;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-josman h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;

}

.about-josman h2:hover {
    color: #fff;
    transform: scale(1.1);
}

.about-josman h2:hover::after {
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}




.about-item {
    transition: 0.3s ease all;
}

.about-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.about-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-item:hover img {
    filter: grayscale(0%);
}

.about-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0; 
    transition: opacity 0.5s ease;
}

.about-item:hover p {
    opacity: 1; 
}



table {
    width: 80%;
    border-collapse: collapse;
    margin: 40px auto;
    background-color: #f8f9fa; 
    color: #333;  
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

th, td {
    padding: 14px;
    text-align: left;
    font-size: 16px;
    font-family: 'Roboto', sans-serif; 
}

th {
    background-color: rgb(116, 58, 135); 
    color: #fff; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

tbody tr:nth-child(even) {
    background-color: #f1f1f1; 
}

tbody tr:nth-child(odd) {
    background-color: #ffffff; 
}

tbody tr:hover {
    background-color: #9c27b0; 
    color: #fff; 
    transition: background-color 0.3s ease, color 0.3s ease;
}

tbody td {
    border-bottom: 1px solid #ddd; 
}

tbody td:hover {
    background-color: rgb(116, 58, 135);; 
    color: white; 
    cursor: pointer; 
    transition: background-color 0.3s ease;
}




form {
    width: 300px;
    background: rgba(99, 86, 106, 0.564);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #333; /* Bordure noire */
    box-sizing: border-box;
    
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #ffffff; 
 
}

span {
    color: rgb(255, 0, 0); 
}

input, textarea {
    
    padding: 10px;
    border: 1px solid #333; 
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 5px;
}








#en-tete {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: -5px;
    border-radius: 10px; 

}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: rgb(34, 31, 35);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #5a089c;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}





.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate
 {
  color: white !important;
}

.dataTables_wrapper .dataTables_length select  {
    border: 1px solid #000000;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: #9607c3 !important;
    padding: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button  {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: white !important;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
}




.galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: 330px; 
    gap: 20px; 
    padding: 40px;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

/* Toutes les images s’adaptent aux cellules */
.galerie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(100%);
}

.galerie img:nth-child(odd) {
    transform: translateY(5px); 
}

.galerie img:nth-child(even) {
    transform: translateY(-5px); 
}

/* Effet au survol */
.galerie img:hover {
    transform: scale(1.05) translateY(0); 
    filter: grayscale(0%); 
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4); 
}


/* Animation d’apparition */
.animation {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animation.visible {
    opacity: 1;
    transform: translateY(0);
}

#tableChansons_paginate span .paginate_button  {
    color:#9607c3!important;
}

.spotify-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.spotify-embed {
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.spotify-embed:hover {
    filter: blur(0);
}

.plusdemusiques {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4e4c4f;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    float: right;
}

.plusdemusiques:hover {
    background-color: #4d2664;
}



#motivation, #documents {
    text-align: justify;
    background-color: #9f719fd8;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

#motivation:hover, #documents:hover {
    transform: scale(1.02);
}
/* Style du groupe des options */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Style du conteneur des options */
.option-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    transition: 0.3s ease-in-out;
    position: relative;
}

/* Style des boutons radio et cases à cocher */
.option-container input[type="radio"],
.option-container input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #68396b;
    border-radius: 4px;
    background: #1a1a1a;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    position: relative;
}


.option-container input[type="radio"]:checked::after,
.option-container input[type="checkbox"]:checked::after {
    content: "💿";
    font-size: 33px;
    position: absolute;
    top: -16px;
    left: -15px;
    animation: pop 0.4s ease-out;
}

/* Animation du cœur */
@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Style du texte */
.option-container label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

/* Effet au survol */
.option-container:hover {
    background: #7c627ed2;
    transform: scale(1.01);
}

.membres article h3  {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.membres {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.membres article {
    display: flex;
    margin: 20px;
    width: 800px;
    background-color: #925c92;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.membres article:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
}

.membres article img {
    width: 250px;
    height: 368px;
    border-radius: 10px 0 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.membres article:hover img {
    opacity: 1;
}

.membres article div {
    padding: 20px;
    text-align: justify;
    color: #ffffff;
}

.membres article a {
    text-decoration: none;
    color: #d3c4d3;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: color 0.3s ease-in-out;
}

.membres article a:hover {
    text-decoration: underline;
    color: #ffffff;
}

#motivation, #documents {
    text-align: justify;
    background-color: #925c92;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

#motivation:hover, #documents:hover {
    transform: scale(1.02);
}

#documents {
    text-align: center;
    background-color: #925c92;
    color: #FFFFFF;
    transition: transform 0.3s ease-in-out;
}

#documents:hover {
    transform: scale(1.02);
}

#documents a {
    text-decoration: none;
    color: #c7b6c7;
    font-weight: bold;
    margin: 0 20px;
    transition: color 0.3s ease-in-out;
}

#documents a:hover {
    text-decoration: underline;
    color: #ffffff;
}




footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 10px 1px;
}

footer .socials a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

footer .socials a:hover {
    text-decoration: underline;
}
.footer-banner {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 5px 5px;
    font-size: 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.footer-contact {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

.footer-contact a {
    color: #976697;
    font-weight: bold;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}
