<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@font-face {
    font-family: Grap_frut;
    src: url("/ressource/GrapeNuts-Regular.ttf") format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: Jim_NightShade;
    src: url("/ressource/JimNightshade-Regular.ttf") format('truetype');
}

header {
    background: #011A32;
}

.fondDark {
    background-image: url("/images/backgroundAccueil.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.fondDark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 20, 60, 0.5); /* Bleu foncÃ© semi-transparent */
    backdrop-filter: blur(10px); /* Ajoute du flou */
}

body {
    color: white;
    font-family: Arial, serif;
    background-color: black;
}
main h1 {
    font-size: 80px;
    font-family: Jim_NightShade, serif;
    margin-top: -2%;
}

footer {
    background: #011A32;
}

.logoSpartiate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2
}

.background {
    height: 750px;
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
}


.icon {
    font-size: 60px;
    display: block;
    margin-left: 50%;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.z-index2 {
    z-index: 2;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 100px auto;
}

.eppe1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px; /* plus grand que .logo-container */
    height: 650px;
    transform: translate(-50%, -50%) rotate(-235deg); /* fusionnÃ© */
    object-fit: contain;
    z-index: 1;
}

.eppe2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px; /* plus grand que .logo-container */
    height: 650px;
    transform: translate(-50%, -50%) rotate(235deg); /* fusionnÃ© */
    object-fit: contain;
    z-index: 1;
}
.lienMaillot {
    z-index: 2;
}

.lienMaillot img {
    height: 100px;
}
h2 {
    text-align: center;
    font-size: 50px;
}
h3 {
    font-size: 40px;
    text-align: center;
}

.row2Col {
    display: flex;
    align-items: center;
    justify-content: center;
}


.colone2 {
    flex: 50%;
}
.margin2Col {
    margin-left: 10%;
}

main p {
    text-align: center;
    max-width: 70%;
    margin: auto;
    padding: 8px;
    justify-content: center;
}

.bannerGame {
    position: relative;
    text-align: center;
    color: white;
}

.bannValo {
    height: 500px;
    transition: transform .5s; /* Animation */
    filter: blur(2px);
}
.bannValo:hover {
    transform: scale(1.05);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: bold;
}
a {
    color: white;
}

.famille {
    text-align: justify;
    margin-left: 14%
}
/***********************************************
            Header
****************************************** */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: white;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding-bottom: 20px;
}

#main-header.open {
    background: rgba(0, 0, 0, 0.9);
}
#main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.navbar {
    font-size: 30px;
    margin: 0 auto;
    width: 46%;
    justify-content: center;
    display: none;
}
.navbar .pagsel {
    color: #0e5dff;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
#lien {
    font-size: 30px;
    margin: auto;
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);}
#lien.show {
    animation: erasein linear .5s;

}
#lien.hide {
    animation: eraseout linear .5s;

}
#lien .pagsel {
    color: #0e5dff;
}

#lien a {
    color: white;
    text-decoration: none;
    display : block;
}
@keyframes erasein {
    from {
        margin-left: 100%;
        width: 300%;
        opacity: 0;
    }
    to {
        margin-left: 0;
        width: 100%;
        opacity: 1;
    }
}
@keyframes eraseout {
    from {

        margin-left: 0;
        width: 100%;
        opacity: 1;
    }
    to {
        margin-left: 100%;
        width: 300%;
        opacity: 0;
    }
}

/**********************
        animation
************************ */

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/*******************************************
        Footer
********************************************** */

.colone2 ul {
    list-style: none;
    padding: 0;
}

.social-container {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    margin-left: 10%;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #0e5dff;
    color: #0f1012;
    transform: scale(1.1);
}

.rejoindre {
    flex : 40%;
    text-decoration: none
}
.rejoindre:hover {
    transform: scale(1.05);
    color: #0e5dff;
}

/*************************************
    Formulaire Contact
********************************** */

.contact-form {
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    max-width: 800px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    background-color: #ffffff;
    border: 2px solid #0e5dff;
    border-radius: 16px;
    color: black;
}

.form-row textarea {
    width: 100%;
    resize: vertical;
}

.form-row select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,&lt;svg fill="%23000" viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg"&gt;&lt;polygon points="70,100 100,40 40,40"/&gt;&lt;/svg&gt;');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit button span {
    margin-left: 10px;
}

.form-submit button:hover {
    background-color: white;
    color: black;
}

.note {
    font-size: 12px;
    margin-top: 15px;
}
.team-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    max-width: calc((200px * 4) + (30px * 3)); /* 4 membres + 3 gaps */
    margin: 0 auto;
}

.member {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 20px;
    width: 150px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.member i {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 20px 20px 5px 5px;
    padding: 10px;
    object-fit: cover;
}

.member h3 {
    margin: 10px 0 5px 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.member p {
    margin: 0 auto;
    color: #cccccc;
    font-size: 14px;
}


/***********************************************
        Partenaire
**********************************************/

.partenaireImg {
    height: 80%;
    width: 40%;
    margin-left: 20%;
}
.textPart {
    width: 40%;
    text-align: justify;
    margin-left: 10%;
}

/*****************************************************
    Effectif
*******************************************************/
.gallery-wrapper {
    position: relative;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.image-container {
    flex: 0 0 calc(100% / 3); /* 3 Ã©lÃ©ments visibles exactement */
    margin: 0 1%;
    background-color: #2a2a2a;
    position: relative;
    box-sizing: border-box;
}


.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: invert(100%);
}

.image-container:hover img {
    transform: scale(1.2);
}

.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.left {
    margin-right: 20px;
}

.right {
    margin-left: 20px;
}
.pagination {
    text-align: center;
    margin-top: 10px;
}

.pagination .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.pagination .dot.active {
    background-color: #0e5dff;
}


.merci-container {
    background: linear-gradient(135deg, #011A32, #0e5dff22);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}
/***************************************
        Produits
***************************************/

.image-containerProd {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-containerProd img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0); /* transparent par dÃ©faut */
    transition: background 0.3s ease;
}

.article-card:hover .overlay {
    background: rgba(0, 0, 0, 0.3); /* assombrissement */
}

.carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    position: relative;
}
.produitMain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

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

.article-card {
    display: block;
    text-align: center;
    width: 350px;
    height: 100%;
    /* Suppression des effets "carte" */
    background-color: transparent; /* plus de fond */
    border-radius: 0;               /* plus de coins arrondis */
    padding: 0;                     /* pas de marges internes */
    text-decoration: none;
    transform: none;
}

.article-card:hover {
    transform: scale(1.1);
}

.article-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-card .title {
    font-size: 24px;
    margin-top: auto; /* pousse les textes vers le bas */
    text-align: center;
}

.article-card .price {
    color: #0e5dff;
    font-size: 20px;
    margin-top: auto; /* pousse les textes vers le bas */
    text-align: center;
    font-weight: bold;
}





</pre></body></html>