*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background-image: url("image-combinaisons/fond.jpg");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
}

/* HEADER */

.banner{
    width:1300px;
    max-width:100%;
    margin:0 auto;
    overflow:hidden;
}

.banner img{
    width:100%;
    display:block;
}

/* MENU */

.main-nav{
    width:1300px;
    max-width:100%;
    margin:0 auto;
    background:rgba(0,0,0,0.80);
    border-top:1px solid #d4af37;
    border-bottom:1px solid #d4af37;
}

.main-nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.main-nav li{
    margin:0 15px;
}

.main-nav a{
    display:block;
    padding:15px 0;
    color:#f1c232;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.main-nav a:hover,
.main-nav a.active{
    color:#fff;
    text-shadow:0 0 8px #d4af37;
}

/* BANNIERE PARTENAIRE */

.banniere-top{
    width:1300px;
    max-width:100%;
    margin:0 auto;
    text-align:center;
    padding:12px;
    background:rgba(0,0,0,0.65);
    color:#f1c232;
    border-bottom:1px solid rgba(212,175,55,0.5);
}

/* CONTENU */

.container{
    width:1300px;
    max-width:95%;
    margin:30px auto;
    padding:35px;
    background:rgba(0,0,0,0.55);
    border:2px solid rgba(212,175,55,0.7);
    border-radius:10px;
    box-shadow:
    0 0 20px rgba(0,0,0,0.8),
    0 0 10px rgba(212,175,55,0.25);
}

/* TITRES */

h1{
    color:#d4af37;
    text-align:center;
    font-size:32px;
    line-height:1.3;
    margin:20px auto 25px;
    max-width:900px;
    text-shadow:0 0 6px rgba(212,175,55,0.4);
}

h2{
    color:#f1c232;
    text-align:center;
    font-size:24px;
    margin-bottom:15px;
}

/* INTRO */

.intro{
    background:rgba(0,0,0,0.45);
    border:1px solid rgba(212,175,55,0.5);
    padding:25px;
    margin-bottom:35px;
    text-align:center;
    border-radius:6px;
}

.intro p{
    font-size:18px;
    line-height:1.7;
    max-width:900px;
    margin:auto;
}

/* IMAGE COMBINAISONS */

.combinaison-img{
    display:block;
    margin:30px auto;
    max-width:100%;
    height:auto;
    border:2px solid rgba(212,175,55,0.5);
    box-shadow:0 0 20px rgba(0,0,0,0.7);
}

/* BLOCS */

.bloc{
    text-align:center;
    padding:30px 20px;
    margin-bottom:20px;
    background:rgba(0,0,0,0.30);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:6px;
}

.bloc h2{
    color:#f1c232;
}

.bloc p{
    max-width:1100px;
    margin:0 auto 15px;
    line-height:1.8;
    color:#eee;
    font-size:20px;
}

/* BOUTONS */

.btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:12px 22px;
    font-weight:bold;
    border-radius:4px;
    transition:0.3s;
}

.btn:hover{
    background:#f1c232;
    transform:translateY(-2px);
}

/* FOOTER */

.footer{
    width:1300px;
    max-width:100%;
    margin:0 auto;
    padding:24px 20px;
    text-align:center;
    background:rgba(0,0,0,0.60);
    border-top:1px solid rgba(212,175,55,0.65);
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:18px;
}

.footer-links a{
    color:#f1c232;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-responsable{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin:15px 0;
}

.logo18{
    height:30px;
}

.logoanj{
    height:26px;
}

.logoeval{
    height:24px;
}

.footer p{
    color:#ccc;
    margin:6px 0;
}

.copyright{
    color:#888;
}

/* MOBILE */

@media(max-width:768px){

    body{
        background-attachment:scroll;
    }

    .container{
        width:95%;
        padding:20px;
    }

    h1{
        font-size:32px;
    }

    h2{
        font-size:24px;
    }

    .intro p,
    .bloc p{
        font-size:18px;
    }

    .main-nav li{
        margin:0 8px;
    }
}
.banniere-top{
    width:1300px;
    max-width:100%;
    margin:0 auto;
    padding:10px;
    background:rgba(0,0,0,0.7);

    display:flex;
    justify-content:center;
    gap:10px;
}

.banniere-top img{
    width:200px;
    height:50px;
    object-fit:cover;
    border:1px solid #d4af37;
}