@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;600;700;800&display=swap');
@import 'tailwindcss';


:root{
    --dark-blue: #1C2645;
    --deep-blue:#0F131F;
    --red: #D90D2E;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*###### NAV ######*/

.fixed-top-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center; /* Pour centrer ta nav de 95vw */
    z-index: 1000;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 95vw; /* Ta largeur actuelle */
    margin-top: 1rem;
    border-radius: .5rem;
    height: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    /* ON ENLÈVE LE POSITION FIXED ET LE TOP ICI */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.construction-banner {
    width: 50vw; /* Même largeur que ta nav pour rester aligné */
    background-color: var(--red); /* Zinc-900 */
    color: white;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav ul{
    display: flex;
    list-style: none;
}
nav ul li{
    margin: 0 20px;
}
nav ul li a{
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-blue);
}

nav ul li a:hover{
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}
#logo{
    height: 3em;
}




/*###### FOOTER ######*/
.footer{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 5rem;
    box-shadow: 0 -4px 6px 0 rgb(0, 0, 0, .5); /* Ombre rouge */ ;
    position: relative;
}

.footer_content{
    width: 60%;
    display: flex;
    align-items: top;
    justify-content: space-around;
}
.footer_section{
    display: flex;
    flex-direction: column;
    align-items: left;
}
.footer_section .Title{
    font-weight: bolder;
    text-transform: uppercase;
    color: var(--dark-blue);
}
.footer_section a{
    color: var(--dark-blue);
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: none;
    margin-top: 1rem;
}

.logo_image{
    position: absolute;
    top: 2.5vw;
    left: 5vw;
}




/*###### HEADER ######*/
header{
    position: relative; /* Indispensable pour que le nom reste dans l'image */
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-blue);
    background-image:url('../src/FOND.png'); /* Chemin vers ton image */;
    background-size: cover;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    position: relative;
}
.header_content{
    position: absolute;
    top: 25%;
    left: 5%;
}
.header_content h1{
    font-size: 3vw;
    text-transform: uppercase;
    font-weight: bolder;
    font-style: italic;
    word-spacing: .5rem;
    letter-spacing: .3rem;
    line-height: 3rem;
    color: var(--dark-blue);
    margin-bottom: 5rem;
}

.react_button_red{
    background-color: var(--red); 
    color: white; 
    box-shadow: 0 4px 12px 0 rgba(217, 13, 46, .5);
    padding: 1rem 1.5rem 1rem 1.5rem;
    border-radius: .5rem;
    text-decoration: none;
    font-size: .8rem;
}

.react_button_red:hover{
    background-color: white;
    color: var(--dark-blue);
    box-shadow: 0 4px 12px 0 rgba(255, 255, 255, .5);
    transition: all 0.2s ease-in-out;
}



/*###### ABOUT US ######*/
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95vw;
    margin-top: 10rem;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    border-bottom: rgba(0, 0, 0, .15) solid .15rem;
    margin-left: auto;
    margin-right: auto;
}

.container .img{
    position: relative; /* Indispensable pour que le nom reste dans l'image */
    height: 35rem;
    width: 40vw;
    min-width: 250px;
    background-image: url('../src/AMCIANCE3.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
}

/* La nouvelle classe pour le nom du photographe */
.photographe-tag {
    position: absolute;
    bottom: 1.5rem;  /* Environ 24px du bas */
    right: 1.5rem;   /* Environ 24px de la droite */
    padding: 8px 16px; 
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    backdrop-filter: blur(4px); /* Effet flou */
    white-space: nowrap; /* Empêche le nom de revenir à la ligne */
}

.container .information{
    width: 70vw;
    min-width: 200px;
    height: 35rem;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 4rem;
    border-radius: 1rem;
    padding-left: 2rem;
}

.H2{
    color: white;
    text-transform: uppercase;
    font-style: italic;
    font-size: 3.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    width: 70%;
    word-spacing: .5rem;
    line-height: 3.5rem;
    font-weight: bolder;
}
.container .information p{
    color : white;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 80%;
    font-weight: 300;
    margin-bottom: 4rem;
}
.react_button{
    background-color: white;
    padding: 1rem 1.5rem 1rem 1.5rem;
    border-radius: .5rem;
    text-decoration: none;
    font-size: .8rem;
    color: var(--dark-blue);
    box-shadow: 0 4px 12px 0 rgb(255, 255, 255, .5); /* Ombre rouge */
}
.react_button:hover{
    background-color: var(--red);
    color: white;
    box-shadow: 0 4px 12px 0 rgba(217, 13, 46, .5);
    transition: all 0.2s ease-in-out;
}





/*###### WHO ARE WE ######*/
.Whoarewe{
    background-color: var(--deep-blue);
    border-radius: 2rem 2rem 0 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.Leftside{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50vw;
    padding-left: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.Rightside{
    max-width: 100vw;
    width: 40vw;
    overflow-x: hidden;
    height: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Quote{
    color: white;
    opacity: .5;
    font-weight: 300;
    line-height: 1.5rem;
    text-transform: uppercase;
}
.Leftside h2{
    margin: 0;
    margin-left: 50%;
    font-size: 4rem;
    margin-bottom: 7rem;
}

.free{
    position: absolute;
    font-size: 10rem;
    color: white;
    opacity: .01;
    font-weight: bolder;
    font-style: italic;
}
.Text{
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: .3rem;
    line-height: 1.2rem;
    margin-bottom: 5rem;
}

.image{
    position: relative; /* Indispensable pour que le nom reste dans l'image */
    height: 80%;
    width: 70%;
    background-image:url('../src/Ambiance16.jpg'); /* Chemin vers ton image */;
    background-size: cover;
    background-position: bottom;
    background-size: 110%;
    border-radius: 2rem;
}

.react_button_margin{
    margin-right: 2rem;
}




/*###### MEMBER PAGE ######*/
.container_member{
    background-color: var(--deep-blue);
    width: 100vw;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header_member{
    width: 100vw;
}
.Quote_member{
    margin-top: 10vw;
    margin-left: 10vw;
}

.H2_member{
    margin-left: 20vw;
}

.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3vw;
    margin-bottom: 10vw;
    margin-top: 5vw;
}

.grid a{
    background-size: cover;
    width: 20vw;
    height: 25vw;
    border-radius: 1rem;
}
.bi-arrow-left-square-fill{
    color: white;
    position: absolute;
    top: 7vw;
    left: 2vw;
}
.bi-arrow-left-square-fill:hover{
    color: var(--red);
    transition: all 0.3s ease-in-out;
}


/*###### MEMBER DETAIL PAGE ######*/
.member_detail_content_container{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 90vw;
    margin-bottom: 5rem;
}
.member_h2_detail{
    margin-left: 0;
    line-height: 4rem;
    font-size: 3rem;
}
.member_detail_content{
    width: 50vw;
}
.member_detail_image{
    background-size: cover;
    width: 30vw;
    height: 40vw;
    border-radius: 1rem;
}
.member_contact{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}
.mail{
    margin-left: 1rem;
}


/*###### SPONSORS PAGE ######*/
.sponsor_free{
    top: 40rem;
}
.Text_Sponsors{
    margin-bottom: 15rem;
    line-height: 1.5rem;
}
.header_member_sponsors{
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.grid_sponsors{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3vw;
    margin-bottom: 10vw;
    margin-top: 5vw;
}
.grid_sponsors .image_sponsor{
    background-size: cover;
    width: 10vw;
    height: 10vw;
    border-radius: 1rem;
}

/*Site en construction*/
.construction_container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.construction_container h1{
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.construction_container p{
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 100;
}
.bg-red-500{
    background-color: var(--red);
}
.bg-gray-700{
    background-color: var(--dark-blue);
}

/*###### MEDIA QUERIES ######*/
@media (max-width: 1200px) {
    #menu_destock {
        display: none;
    }
    #navbar{
        box-shadow: none;
    }

    #menu li{
        width: 70%;
        margin-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: rgba(0, 0, 0, .05) solid .15rem;
        text-align: center;
    }
    #menu a{
        text-transform: uppercase;
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--dark-blue);
    }
    .container{
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .container .img{
        width: 90vw;
        height: 20rem;
        margin-bottom: 2rem;
    }  
    .container .information{
        width: 90vw;
        height: auto;
        margin-left: 0;
        padding: 1rem;
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /*site en construction*/
    /*Site en construction*/
    .construction_container h1{
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    .construction_container p{
        font-size: 1rem;
    }

    /* Ajustements pour le header */
    header{
        background-image:url('../src/FOND_DESTOP.jpg'); /* Chemin vers ton image */;
        background-size: 150%;
        background-position: top;
    }
    .header_content{
        display: flex;
        flex-direction: column;
        align-items: center;
        left: 0;
        width: 100%;
        top: 15%;
    }
    .header_content h1{
        font-size: 2rem;
        text-align: center;
        line-height: 2rem;
        font-weight: 700;
        margin: 0;
        height: auto;
        margin-bottom: 20rem;
    }


    /* Ajustements pour le texte et les boutons */
    .H2{
    text-align: center;
    font-size: 2.5rem;
    width: 100%;
    line-height: 2.5rem;
}
    .container .information p{
    color : white;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;

}
    .react_button{
    background-color: white;
    padding: 1rem 1.5rem 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 1rem;
    color: var(--dark-blue);
    box-shadow: 0 4px 12px 0 rgb(255, 255, 255, .5); /* Ombre rouge */
}

/* Ajustements pour la section "Who Are We" */
    .Whoarewe{
        flex-direction: column;
        height: auto;
    }
    .Leftside{
        width: 90vw;
        margin: 2rem 0;
        padding: 0;
        text-align: center;
        margin-bottom: 5rem;
    }
    .Leftside h2{
        margin-left: 0;
        font-size: 2.5rem;
        margin-bottom: 5rem;
        margin-top: 2.5rem;
        line-height: 2.5rem;
    }
    .Rightside{
        display: none;
    }
    .Quote{
        text-align: center;
        width: 100%;
    }
    .free{
        font-size: 5rem;
        top: 20rem;
        left: 5rem;
    }
    .Text{
        font-size: 1rem;
        line-height: 1.75rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .react_button_margin{
    margin-right: 0;
    margin-bottom: 2rem;
    }
    .buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 2.5rem;
    }
    /* Ajustements pour la page des membres */
    .container_member{
        height: auto;
        text-align: center;
        padding-top: 5rem;
    }
    .bi-arrow-left-square-fill{
        top: 7rem;
    }
    .grid{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5vw;
        margin-bottom: 10vw;
        margin-top: 5vw;    
    }
    .grid a{
        width: 40vw;
        height: 50vw;
        border-radius: 1rem;
    }
    .header_member{
        text-align: center;
        width: auto;
    }
    .Quote_member{
        margin-left: 0;
        margin-top: 5vw;
    }
    .H2_member{
        margin-left: 0;
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 5rem;
        line-height: 2.5rem;
        width: 100%;
    }
    /* Ajustements pour la page de détail des membres */
    .member_detail_content_container{
        flex-direction: column-reverse;
        align-items: center;
        width: 90vw;
        margin-bottom: 0;
    }
    .member_h2_detail{
        text-align: center;
        font-size: 3rem;
        line-height: 3rem;
        margin-bottom: 2rem;
    }
    .member_detail_content{
        width: 90vw;
        margin-bottom: 2rem;
    }
    .member_detail_image{
        width: 80vw;
        height: 100vw;
        margin-bottom: 2rem;
    }
    .member_contact{
        justify-content: center;
        margin-bottom: 5rem;
    }
    /* Ajustements pour la page des sponsors */

    .sponsor_free{
        top: 20rem;
    }
    .Text_Sponsors{
        margin-bottom: 5rem;
        line-height: 1.5rem;
        font-size: 1rem;
    }
    .grid_sponsors{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5vw;
        margin-bottom: 10vw;
        margin-top: 5vw;
    }
    .grid_sponsors .image_sponsor{
        width: 25vw;
        height: 25vw;
        border-radius: 1rem;
    }
    .header_member_sponsors h2{
        font-size: 2rem;
    }
    .sponsors_detail_image{
        display: none;
    }

    /* Ajustements pour le footer */
    .footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    .footer .logo_image{
        position: relative;
        margin-bottom: 2rem;
    }
    .footer_content{  
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer_section{
        margin-bottom: 2rem;
        align-items: center;
        text-align: center; 
    }

    .FS1, .FS2, .FS3{
        display: none;
    }
}   