* {
    box-sizing: border-box;
}
html {
    font-family: "Outfit", sans-serif;
    height: 100%; 
}


body {
   width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
   
    min-height: 100vh;
    background-image: url(../images/baba.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.page-floue::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/baba.png); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    filter: blur(10px) brightness(0.7); 
    
    z-index: -1; 
}

header, main, footer {
    width: 100%;
    margin: 0;
}

body.page-floue {
    background-image: none;
}


.white{
    color:white;
}
main {
    flex: 1; 
    padding:0;
}

main#fondgrad{
    width: 100%;
    background-image: url(../images/gradient_v3.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top:40px;
    padding-bottom: 50px;
}


footer {
    width: 100%;
    background-color: #6dbce4;
    padding: 20px 0;
    text-align: center;
    margin: 0;
}


p, h2 { color: white; }

/*HEADER*/

nav {
    background-color: rgba(156, 195, 227, 0.7); 
    width: 90%;                
    max-width: 1200px;         
    margin: 20px auto;         
    padding: 15px 40px;        
    border-radius: 50px;       
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position:sticky;
    top: 20px; 
    z-index: 1000;
    
    
    background-image: url(../images/abba_logo.svg); 
    background-repeat: no-repeat;
    background-size: 80px;     
    background-position: 30px center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;   
    align-items: center;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;          
    font-size: 18px;        
    text-transform: uppercase;
    font-weight: 700;      
    letter-spacing: 1px; 
}

nav a {
    text-decoration: none;
    color: #0d0a3b;          
    transition: color 0.3s ease; 
}

nav a:hover {
    color: white;           
}

nav a#active {
    color: white; 
    text-decoration: underline; 
    
}
/* ACCUEIL*/
.intro{
    width: 90%;           
    max-width: 1080px;    
    margin: 0 auto;       
    padding: 60px 20px;   
    text-align: center;   
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.intro p {
font-family: "Outfit", sans-serif;
    color: white;
    z-index: 11;
    margin-bottom: 20px;
    line-height: 1.6;

}
.intro h2{
font-family: "Limelight", sans-serif;
    font-size: 50px;
    z-index: 12;
    color: white;
    margin: 0 0 20px 0;   
    line-height: 1.2;
    width: 100%;

}

#abba_span {
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 50px;
    color: white;
    display: inline-block; 
}
#top-back{
    width: 100%;
    
}

#u{
    font-family: "Mea Culpa";
    
}

#abba_titre{
    display: flex;
    width: 200px;
    color: white;
    
}




/*section 2 ACCUEIL */

/* Conteneur pour centrer la carte */
.album-container {
    display: flex;
    flex-direction: row;    
    justify-content: center; 
    align-items: center;   
    gap: 30px;              
    flex-wrap: wrap;       
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;      
    padding: 20px;
    z-index:13;
}

.album-card {
    position: relative;
    
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* L'image de fond */
.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; 
}


.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 10, 59, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    
    
    opacity: 0;
    transition: opacity 0.4s ease;
}

/*EFFET AU SURVOL*/

.album-card:hover .album-overlay {
    opacity: 1; 
}

.album-card:hover .album-image {
    transform: scale(1.1);
}

/* --- STYLE DU TEXTE --- */

.album-text {
    color: white;
}

.album-title {
    font-family: "Limelight", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.album-details {
    font-family: "outfit";
    font-style: italic;
    font-size: 15px;
    color: #80c4e7;
    margin-bottom: 10px;
}

.album-description {
    font-size: 14px;
    line-height: 1.4;
}


/* DONNEES */

.amorce{
    width: 600px;
    margin : auto; 
    text-align:center;
}
table {
    background-color: white; 
    border-collapse: separate; 
    border-spacing: 2px;
    border: 1px solid black; 
    width: 80%;              
    margin: 20px auto;       
    color: black;           
}

th, td {
    border: 1px solid black; 
    padding: 8px;
    text-align: left;
    background-color: white;
}


.dataTables_wrapper {
    
     width: 90%;
     max-width: 1080px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 20px;
    border-radius: 10px;
}



#montableau thead th {
    background-color: #0d0a3b; 
    color: white;
    text-transform: uppercase;
    padding: 12px;
}


#montableau tbody tr:hover {
    background-color: #f1f1f1 !important;
    cursor: pointer;
}

/* Personnalisation de la barre de recherche et de la pagination */
.dataTables_filter input, .dataTables_length select {
    border: 1px solid #80c4e7;
    border-radius: 5px;
    padding: 5px;
}

#montableau {
    width: 100% !important;
    margin: 0 auto;
}

.hero {
    height: 100vh; 
    width: 100%;
    
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: -100px;
}

.hero-content h1 {
    font-family: "Limelight", sans-serif;
    font-size: 120px;
    color: white;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 30px;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

 .vinyl-container {
    position: fixed;
   
    width: 500px;     
    
    left: -550px;     
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: left 0.8s ease, opacity 0.8s ease;
}

.vinyl-container.visible {
   left: -200px;     
    opacity: 1;
}

/* L'image du disque */
.vinyl-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    animation: spin 6s linear infinite;
}


@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@media (max-width: 768px) {
    .vinyl-container {
        display: none;
    }
}

/* page galerie */

#upload-form {
    width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.664);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}


.photo-galerie {
    width: 1080px;
    margin: 40px auto;
    
  
    column-count: 3; 
   
    column-gap: 15px; 
}

.photo-galerie img {
   
    width: 100%; 
    height: auto; 
    display: block;
    margin-bottom: 15px;
    
   
    break-inside: avoid; 
    border-radius: 5px; 
    filter:grayscale(100%) blur(2px);
    transition: filter 0.2s ease;
    
}


.photo-galerie img:hover {
    
    width: 100%; 
    height: auto; 
    display: block;
    margin-bottom: 15px;
    
  
    break-inside: avoid; 
    border-radius: 5px; 
    filter:none;
}






















/*PAGE CONTACT*/


form {
    background-color: rgba(255, 255, 255, 0.404); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    width: 300px;         
    margin: 20px 0;
}


#en-tete {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#en-tete > div {
    flex: 1;
}


form label {
    display: block;       
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
    color: #0d0a3b;
    text-transform: uppercase; 
    font-size: 12px;
}


input[type="text"], 
input[type="email"],
input[type="tel"],  
textarea,
select {
    width: 100%;          
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
}


input[type="submit"] {
    width: 100%;
    background-color: #17368a;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.container-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    width: 100%;
    margin-top: 50px;
}

.ast {
    color: red;
}

.error p {
    width: 300px;
    margin: 20px auto;
    padding: 10px;
    color: rgb(255, 167, 167);
    text-align: center;
}


.msg-success p {
    color: #a4ff9e; 
    text-align: center;
    font-weight: bold;
}








input[type="radio"] {
    display: none;
}


.radio_contact {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 5px 15px 0;
    background-color: rgba(255, 255, 255, 0.5); 
    border: 2px solid #0d0a3b;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #0d0a3b;
    text-transform: none;
}


.radio_contact:hover {
    background-color: rgba(128, 196, 231, 0.4);
}



input[type="radio"]:checked + .radio_contact {
    background-color: #17368a; 
    color: white;
    border-color: #17368a;
    font-weight: bold;
}









/* PAGE PARRENAIRES*/ 


.btn-interlude {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: white;
    color: #0d0a3b; 
    text-decoration: none;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-interlude:hover {
    transform: scale(1.05);
    background-color: #80c4e7; 
    color: white;
}


.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
}


.partner-name-visible {
    font-family: "Limelight", sans-serif;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.partner-title{
    font-family: "Limelight", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.partner-text{
    color: white;
}



.partner-container {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;    
    gap: 30px;              
    
    
    width: 1080px;
    margin: 40px auto;     
    padding: 20px;
    z-index: 13;
    
    
    flex-wrap: nowrap !important; 
    overflow: visible; 
}

.partner-card {
    position: relative;
    width: 260px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0; 
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 10, 59, 0.85); 
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-card:hover .partner-image {
    transform: scale(1.1);
}

.btn-interlude {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: white;
    color: #0d0a3b;
    text-decoration: none;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.interlude{
    color: white;
    text-align: center;
}




.members-section {
    width: 100%;
    max-width: 1080px;
    margin: 80px auto;
    padding: 40px 20px;
   
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.section-title {
    font-family: "Limelight", sans-serif;
    font-size: 40px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.member-bio {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.member-bio.reverse {
    flex-direction: row-reverse;
}

.member-text {
    flex: 1;
}

.member-name {
    font-family: "Limelight", sans-serif;
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.member-description {
    font-family: "Outfit", sans-serif;
    color: white;
    line-height: 1.6;
    font-size: 16px;
}

.member-photo {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.stats-section {
    width: 1000px;
    margin: 80px auto;
    padding: 60px 20px;
    background-color: rgba(13, 10, 59, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: "Outfit", sans-serif;
    font-size: 55px;
    color: #80c4e7;
    margin-bottom: 15px;
    font-weight: bold;
}

.stat-label {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}



.project-section {
    width: 1080px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.project-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.project-description {
    flex: 1;
}

.project-description h3 {
    font-family: "Limelight", sans-serif;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-description p {
    font-family: "Outfit", sans-serif;
    color: white;
    line-height: 1.6;
    font-size: 16px;
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 250px;
}

.project-btn {
    display: block;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0d0a3b;
    text-decoration: none;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-btn:hover {
    background-color: #80c4e7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.project-btn::before {
    content: "📄 ";
    margin-right: 8px;
}

.project-btn:nth-child(2)::before {
    content: "📋 ";
}

.project-btn:nth-child(3)::before {
    content: "📊 ";
}
