/* TOUT/AUTRES -------------------------------------------------------- */

* {
    margin: 0;
    font-family: "Ubuntu", serif;
    padding: 0;
    box-sizing: border-box;
    color: white;
}


body {
    background-color: #1C1C1C
}

footer, #header {
    background-color: rgb(18, 17, 17);    
}

.container {
    max-width: 1080px;
    margin: 0 auto; 
}

h1 {
    font-family: "Bebas Neue", serif;
    letter-spacing: 1px;
}

p {
    line-height: 1.25;
    font-weight: 300;
}
.scrollup img{
    width: 30px;
    transition: transform 0.3s ease;
    
}

.scrollup img:hover{
    transform: scale(1.5);
    cursor: pointer;

}

.retour-haut {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}


/* HEADER -------------------------------------------------------- */

#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: background-color 0.5s ease;
}

nav {
    display: flex;
    align-items:center;
    justify-content: space-between;
    width: 1080px;
    box-sizing: border-box;
    padding:10px 0 10px;
    
}

nav ul {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    font-weight: bold;
    gap: 15px;
}

nav li {
    display: flex;
    list-style: none;
    font-weight: 400;
}

nav ul li a {  
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease; 
}



nav ul li.active a {
    font-weight: bold;
    color: #c81616;

}

nav ul li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #c81616;
}

.navlogo img {
    width: 60px;
    object-fit: cover;
}

nav ul li a::after {
    content: ""; 
    position: absolute;
    right: 100%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #c81616;
    transition: all 0.3s ease;
}

nav ul li a:hover::after {
    right: 0;
    width: 100%; 
}

/* SECTION -------------------------------------------------------- */


/* Banniere */
.banner {
    position: relative;
    height: 100vh;
    background-image: url("/images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.325);
}


.banner-logo {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
    max-width: 600px;
}

.banner-logo img {
    
    height: auto;
    width: clamp(200px, 600px, 90vw);

}

.banner-logo button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #c81616;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-logo button:hover { 
    background-color: #6e0909;
    transform: scale(1.1);
}


/* Div Recap */
.div-recap {
    width: 100%;
    padding: 100px 0 50px;

}

.div-title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    
}

.div-flex {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 50px 0 50px;
}


.div-picture {
    width: 400px;
    align-content: center;
}


.div-picture img {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
}


.div-text {
    text-align: justify;
    width: 500px;
    font-weight: 300;
    align-content: center;
}
    

/* CARROUSEL -------------------------------------------------*/

.carousel-container {
    max-width: 1080px;
    margin: 0 auto;
}

.main-title {
    text-align: left;
    margin-bottom: 30px;
}

.carousel-content {
    background-color: transparent;
    padding: 30px;
    border-radius: 8px;
    overflow:hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease;
}

.view {
    width: 50%;
}

.subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.images-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.images-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.image-item {
    text-align: center;
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.image-item img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    width: 200px;
}

.image-item p {
    font-size: 16px;
    margin-bottom: 20px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #c81616;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.nav-button img {
    width: 30px;
}

.nav-button:hover {
    background-color: #6e0909;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}


.view.hidden {
    display: block; 
}






/* FOOTER -------------------------------------------------------- */

footer {
    position: relative;
    width: 100%;
    bottom: 0;
    padding: 30px;
    color: white;
    box-sizing: border-box;
    margin: 0;

}
footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer li{
    text-align: center;
    margin-left: 10px;
    list-style: none;
}
footer a{
    color: white;
}

/* DONNEES -------------------------------------------------------- */

.table {
    padding: 100px 0 50px;
    background-color: #1c1c1c;
}

.table img{
    height: 100px;
    border-radius: 8px;
}


#mytable {  
    border-collapse: collapse;
    text-align: center;
    background-color: transparent; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#mytable thead th {
    background-color: #121111;
    color: white;
    text-transform: uppercase;
    padding: 12px 15px;
    font-weight: bold;
}

#mytable tbody tr:nth-child(even) {
    background-color: #0000002d; 
}


#mytable td {
    padding: 10px;
    vertical-align: middle;
    
}


#mytable td img {
    width: 80px; 
    height: auto; 
    border-radius: 5px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#mytable tbody tr {
    transition: transform 0.3s ease, filter 0.3s ease;

}


#mytable tbody tr:hover {
    background-color: #ffffff1f;
    transform: scale(1.05);
}

#mytable tbody td a:hover {
    text-decoration: underline; 
}

.dataTables_length label select option {
    background-color: #1C1C1C;
}


/* CONTACT -------------------------------------------------------- */

.contact-page {
    width: 100%;
    padding: 70px; 
    display: flex;
    justify-content: center;
}

.form-1 {
    width: 100%;
    background-color: #272727;
    width: auto;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-1:hover {
    transform: scale(1.03);
}


.form-2 {
    display: flex; 

}

.form-3 {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: center;
    min-width: 300px ;

}

.form-3 label {
    margin-bottom: 8px;
}

.form-3 input[type="text"], .form-3 input[type="email"], .form-3 textarea {
    width: 100%; 
    padding: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 5px;
    color: black;
    background-color: white;
}

.form-3 input[type="text"]:focus, .form-3 input[type="email"]:focus, .form-3 textarea:focus {
    outline: none;
}


.form-3 textarea {
    height: 100px; 
    resize: vertical;
}

.form-3 input[type="submit"] {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #c81616;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.form-3 input[type="submit"]:hover {
    background-color: #6e0909;
}

.form-valid p {
    text-align: center;
}

.form-4 {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: center;
    min-width: 300px ;
}

.form-5 {
    display: flex;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    gap: 10px;
    padding-left: 10px ;
}

.form-5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
}

.form-5 input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.form-5 input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #c81616;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-5 label {
    font-size: 14px;
    cursor: pointer;
}

.red {
    color: red;
}

.green {
    color: green;
}

.contact-text {
    width: 100%;
    padding-top: 50px;
}

/* GALERIE -------------------------------------------------------- */

.galerie-1 {
    padding: 20px;
    margin: 20px;
}


.form-galerie {
    display: flex;  
    align-items: center;
    justify-content: center;
}



.form-galerie label:hover {
    background-color: #6e0909;
}

.form-galerie input[type="file"] {
    display: none;
}

.form-galerie input[type="submit"], .form-galerie label {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #c81616;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px;
}

.form-galerie input[type="submit"]:hover {
    background-color: #6e0909;
}

.galerie-images {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.galerie-images img {
    padding: 10px;
    width: 240px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    filter: grayscale(70%);
}

.galerie-images img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    filter: grayscale(0%);
}

/* BANNIERES -------------------------------------------------------- */

.banner-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.325);
}

.table-banner-title, .contact-banner-title, .galerie-banner-title, .part-banner-title, .cred-banner-title {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    font-weight:900;
}


.table-banner, .contact-banner, .galerie-banner, .part-banner, .cred-banner {
    position: relative;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.table-banner {
    background-image: url("/images/banner2.jpg");
    background-position: center;
}

.galerie-banner {
    background-image: url("/images/banner3.jpg");
    background-position: bottom;
}

.contact-banner {
    background-image: url("/images/banner5.jpg");
    background-position:bottom;
}

.part-banner {
    background-image: url("/images/banner4.jpg");
    background-position: top;
}

.cred-banner {
    background-image: url("/images/banner5.jpg");
    background-position: top;
}

/* CREDITS ------------------------------------------------------------ */

.credits-1 {
    justify-content: center;
    padding: 50px;
    text-align: center;
}

.credits-1 h1 {
    margin-bottom: 20px;
}

.credits-1 p {
    margin-bottom: 20px;
}

.credits-1 img{
    width: 100%;
    padding: 50px;
    background-size: cover;
}

.credits-2 {
    text-align: center;
    font-weight: bold;
}

/* PARTENAIRES --------------------------------------------------------- */


.part-content {
    padding: 50px;
}

.part-content h1 {
    margin-bottom: 30px;
}

.part-pers-g, .part-pers-d {
    border-radius: 23px;
    display: flex;
    margin-bottom: 50px;
    background-color: #272727;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.part-pers-g:hover, .part-pers-d:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.601);
}

.part-pers-g img {
    width: 250px;
    object-fit: cover;  
    border-bottom-left-radius: 23px;
    border-top-left-radius: 23px;
}

.part-pers-d img {
    width: 250px;
    object-fit: cover;  
    border-bottom-right-radius: 23px;
    border-top-right-radius: 23px;
}

.part-pers-g .part-text, .part-pers-d .part-text {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.part-pers-d .part-text {
    align-items: flex-end;
}

.part-text {
    text-align: justify ;
}

.part-text button  { 
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #c81616;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.part-text button:hover { 
    background-color: #6e0909;
    transform: scale(1.1);
}

.part-nom {
    font-size: 25px;
    font-weight: bold;
}

.part-desc {
    font-weight: 300;
    margin-bottom: 10px;
}

.desc-groupe {
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 300;
}

.part-button-1{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.part-button-2{
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.part-button-2 p {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

.part-button-2 button {
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #c81616;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.part-button-2 button:hover { 
    background-color: #6e0909;
    transform: scale(1.1);
}

.img-margaux, .img-lauren, .img-enzo, .img-charlotte {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.img-margaux{
    background-image: url("../images/pfp/soccer.png");
    transform: rotate(336deg);
    width: 400px;
    height: 400px;
    bottom: -78px;
    right: -63px;
}
.img-lauren{
    background-image: url("../images/pfp/alnst_logo1.png");
    transform: rotate(25deg);
    width: 600px;
    height: 600px;
    bottom: -159px;
    right: 566px;
}
.img-enzo{
    background-image: url("../images/pfp/nerv.png");
    transform: rotate(336deg);
    width: 400px;
    height: 400px;
    bottom: -70px;
    right: -50px;
}
.img-charlotte{
    background-image: url("../images/pfp/conanlogo.png");
    transform: rotate(35deg);
    width: 600px;
    height: 600px;
    bottom: -188px;
    right: 546px;
}

/* BG IMAGES -------------------------------------------------------- */

.bg-hexagons-contact {
    background-image: url("../images/hexagons.png");
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    width: 300px;
    height: 300px;
    bottom: 386px;
    right: -95px;
    pointer-events: none;
}

.form-1{
    overflow: hidden;
    position: relative;
}


