
/* Styles page globale*/
body {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
    color: #FFFFFF;
    background-color: #1a1017;
    cursor: url(../img/testcurseur2.png), auto;
}

body div {
    width: 750px;
    margin: auto;
    animation: degrade 3s linear infinite, fadeIn 1s ease-out;
}

img {
    width: 250px;
    height: 350px;
    border-radius: 15px;
}

/* Header*/
header {
    overflow: hidden;
}

header div {
    position: relative;
    width: 650px;
}

.entete {
    position: relative;
    width: 100%;
    object-fit: cover;
}

#bandeau_logo {
    position: absolute;
    width: 40%;
    height: auto;
    top: 1%;
    left: 30%;
    max-width: 100%;
}

.trailer {
    width: 750px;
}

/* Titres et textes*/
h2 {
    font-size: 150%;
    font-weight: none;
    font-family: Trebuchet MS;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.texte {
    background-color: #2e1d24;
    border-radius: 15px;
    overflow: hidden;
}

.texte p {
    margin-top: 10px;
    text-align: justify;
}

.texte p,
.texte h2 {
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px
}

#intro {
    margin-top: 40px;
    margin-bottom: 40px;
    height: auto;
}

#intro p {
    padding-bottom: 0px;
}

/* Sections principales*/
#info-jeu,
#equipe,
#premier-jeu,
#marche-jeu,
#marche-jeu-hollow,
#societale,
#environnemental,
#presentation-marche,
#marche-francais,
#acteurs-marche, 
#methode-swot,#mentions{
    display: flex;
    margin-top: 40px;
    margin-bottom: 40px;
}

#info-jeu .texte {
    margin-right: 20px;
    height: 350px;
}

#premier-jeu .texte {
    margin-left: 20px;
    height: 350px;
}

#equipe img {
    height: 200px;
    width: auto;
}

#marche-francais img {
    height: auto;
    width: 300px;
}

#marche-francais .texte {
    margin-right: 20px;}

#rgpd img,
#pestel img {
    height: auto;
    margin-top: 25px;
    width: 100%;
}

#pestel {
    margin-bottom: 0px;
}

#pestel .texte {
    margin-top: 40px;
    padding-bottom: 25px;
}

#pestel img{
    margin-top: 0px;
}


/* Menu  */
.menu {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.menu ul {
    list-style: none;
    display: inline-flex;
    background-color: #2e1d24;
    border-radius: 30px;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.menu ul li {
    margin-right: 15px;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    background-color: #5e2428;
    padding: 10px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    background-color: #fff;
    color: #5e2428;
}

.menu-bouton {
    display: none;
    font-size: 32px;
    color: white;
    background-color: #5e2428;
    border-radius: 10px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.menu-bouton:hover {
    background-color: #fff;
    color: #5e2428;
}

.menu ul li:last-child {
    margin-right: 0;
}

/* Footer*/

footer {
    background-color: #5e2428;
    border-radius: 15px;
}

footer div {
    padding: 10px 0 10px;
    margin-right: 20px;
    text-align: right;
}

footer a {
    color: white;
}

/* Animations*/

@keyframes degrade {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive*/
@media only screen and (max-device-width: 1180px) and (orientation: landscape) {

    header div,
    body div,
    footer div {
        width: 90%;
    }
    

    .trailer {
        width: 100%;
    }

   #rgpd, #pestel, #marche-francais,#acteurs-marche,#presentation-marche,#marche-jeu-hollow{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #rgpd img, #pestel img, #marche-francais img {
        height: auto; /* adapte à la largeur */
        width: 80%;   /* largeur raisonnable sur petit écran */
        margin-top: 20px;
    }

    #marche-francais img{
        height: 500px;
        width: auto;
    }


    .menu ul {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #2e1d24;
        width: 80%;
        margin: 10px auto;
        border-radius: 15px;
        padding: 20px 0;
    }

    .menu-bouton {
        display: inline-block;
    }

    .menu:hover ul {
        display: block;
    }

    .menu ul li{
        margin-top: 40px;
    }
    .menu ul li:first-child {
        margin-top: 0px;
    }
}

@media only screen and (max-device-width: 767px) and (orientation: portrait) {

    header div,
    body div,
    footer div {
        width: 95%;
    }

    .trailer {
        width: 100%;
    }

    .menu ul {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #2e1d24;
        width: 80%;
        margin: 10px auto;
        border-radius: 15px;
        padding: 20px 0;
    }

    .menu-bouton {
        display: inline-block;
    }

    .menu:hover ul {
        display: block;
    }

    .menu ul li{
        margin-top: 40px;
    }
    .menu ul li:first-child {
        margin-top: 0px;
    }
    /* Texte avec padding suffisant */
    .texte p,
    .texte h2 {
        padding: 10px 15px;
    }

    /* Espacement dans footer */
    footer div {
        padding: 15px;
        text-align: center;
        margin: 0;
    }
}

@media only screen and (max-device-width: 821px) and (orientation: portrait) {

    header div,
    body div,
    footer div {
        width: 90%;
    }
    

    .trailer {
        width: 100%;
    }

   #rgpd, #pestel, #marche-francais,#acteurs-marche,#presentation-marche,#marche-jeu-hollow{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #rgpd img, #pestel img, #marche-francais img {
        height: auto; /* adapte à la largeur */
        width: 80%;   /* largeur raisonnable sur petit écran */
        margin-top: 20px;
    }

    #marche-francais img{
        height: 500px;
        width: auto;
    }


    .menu ul {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #2e1d24;
        width: 80%;
        margin: 10px auto;
        border-radius: 15px;
        padding: 20px 0;
    }

    .menu-bouton {
        display: inline-block;
    }

    .menu:hover ul {
        display: block;
    }

    .menu ul li{
        margin-top: 40px;
    }
    .menu ul li:first-child {
        margin-top: 0px;
    }
}