body{
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    line-height: 1.4;
    font-size: 16px;
    background-color: #D2422B;
    color: #FFFFFF;
}
main{
    margin: 0 5%;
}

/* NAV ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.menu__toggle{
    background-color: #000000;
    border: none;
    padding: 10px;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 100;
}
.menu__liste{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#000000;
    margin: 0;
    z-index: 90;

    transform: translateY(-100%);
    transition: transform .4s ease-in-out;
}
.menu--open .menu__liste{
    display: block;
    transform: translateX(0);
    overflow: hidden;
}
.menu__el{
    display: flex;
    list-style: none;
    font-size: 28px;
    margin: 80px 0;
}
.menu__el a{
    text-decoration: none;
    color: #FFFFFF;
}
.menu__el--active a{
    color: #D2422B;
}
.menu__liste a:hover{
    color: #D2422B;
    transition: all 0.2s ease-out;
}

/* HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.header__content{
    position: relative; 
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 160px;
}
.header__bg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}
.header__title{
    position: relative;
    font-family: 'Pramukh Rounded', sans-serif;
    text-shadow: 4px 4px 0px #D2422B; 
    display: flex;
    justify-content: center;
    font-size: 67px;
    margin-bottom: -5px;
    line-height: 0;
    z-index: 10;
}
.credit{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    font-size: 12px;
    margin: 20px;
}
.header__flex{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header__bookimg{
    width: 50%;
    height: auto;
    margin-top: 80px;
    overflow: hidden;
}
.header__bookimg--first{
    rotate: 10deg;
}
.header__bookimg--second{
    rotate: -10deg;
}
.header__title--book{
    line-height: 1;
    text-align: center;
}
.header__text{
    margin: 0 5%;
    margin-top: 20px;
}

/* IMAGES ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.img--big{
    width: 100%;
}
.img--mid{
    width: 80%;
    display: block;
    height: auto;
}
.img--small{
    width: 40%;
    height: auto;
}
.img--rotate{
    width: 100%;
    margin-top: 40px;
}

/* LINK ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.link{
    display: inline-block;
    color: #FFFFFF;
    text-decoration: underline;
    align-items: center;
    font-size: 28px;
    font-weight: 700;    
    transition: all 0.3s ease;
}
.link::after{
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 10px;
    background-image: url('../assets/img/icon/arrow-right.svg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease-in-out;
}
.link:hover::after{
    transform: translateX(8px);
}
.link--center{
    display: block;
    text-align: center;
    margin-top: 40px;    
}

/* PAGE ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.page{
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    color: #000000;
    padding: 20px;
    z-index: 20;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.25);
}
.page__title{
    color: #D2422B;
}
.page__txt--bold{
    font-weight: 700;
}
.page__img{
    display: block;
    width: 80px;
    height: auto;
    align-self: flex-end;
}

/* SEGMENT ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.segment__visual{
    position: relative;
}
.segment__title{
    font-family: 'Pramukh Rounded', sans-serif;
    font-size: 51px;
    margin-left: 20px;
    line-height: 0;
}
.segment__subtitle{
    font-family: 'Pramukh Rounded', sans-serif;
    font-size: 51px;
    position: absolute;
    top: -50px;
    text-shadow: 4px 4px 0px #D2422B;
    line-height: 0;
    width: 100%;
    text-align: center;
}
.segment__img{
    display: block;
    width: 100%;
}
.img--article{
    width: 100%;
}
.txt--big{
    font-size: 21px;
}

/* FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.footer{
    margin-top: 80px;
    background-color: #000000;
    padding: 40px;
}
.footer__social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer__social li a{
    display: inline-block;
    color: #E6E6E6;
    text-decoration: none;
    padding-left: 40px;
    line-height: 30px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: left center; 
    background-size: 24px auto;
}
.footer__social a:hover{
    text-decoration: underline;
}
.footer__el--github a{
    background-image: url('../assets/img/icon/GitHub-icon.webp');    
}
.footer__el--instagram a{
    background-image: url('../assets/img/icon/Instagram_Symbol_2.webp');
}
.footer__el--youtube a{
    background-image: url('../assets/img/icon/YouTube_Symbol_2.webp');   
}
.footer__el--bluesky a{
    background-image: url('../assets/img/icon/bluesky-icon.webp');   
}
.footer__el--facebook a{
    background-image: url('../assets/img/icon/facebook-icon.webp');   
}
.footer__el--linkedin a{
    background-image: url('../assets/img/icon/LinkedIn_Symbol_2.webp');   
}
.footer__el--mastodon a{
    background-image: url('../assets/img/icon/mastodon-icon.webp');   
}
.footer__el--threads a{
    background-image: url('../assets/img/icon/threads-icon.svg');   
}
.footer__el--x a{
    background-image: url('../assets/img/icon/xtwitter-icon.webp');   
}
.footer__el--web a{
    background-image: url('../assets/img/icon/globe.svg');   
}
.footer__credit{
    list-style: none;
    margin-left: 0;
    padding: 0;
}
.footer__copyright{
    display: flex;
    color: #E6E6E6;
    font-size: 12px;
    margin-top: 20px;
}
.footer__copyright, a, abbr{
    text-decoration: none;
    color: inherit;
}
.footer__copyright a:hover{
    text-decoration: underline;
}

@media screen and (min-width: 650px) {

    .menu__toggle{
        display: none;
    }

    .menu__liste{
        position: fixed;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        height: 20px;
        padding: 20px 0;
        z-index: 100;
    }

    .menu__el{
        margin: 0 0 0 20px;
        font-size: 16px;
    }
    
    .header{
        position: relative;
        overflow: hidden;
    }

    .header__title{
        font-size: 90px;
    }

    .header__content{
        margin-top: 640px;
    }

    .header__flex{
        flex-direction: row;
    }

    .header__flex--second{
        flex-direction: row-reverse;
    }

    .header__flex--third{
        flex-direction: column;
    }

    .header__bookimg{
        width: 50%;
        height: auto;
    }

    .header__bookimg--last{
        width: 30%;
    }

    .header__info{
        display: flex;
        flex-direction: column;
    }

    .header__text{
        max-width: 66%;
        margin-top: 40px;
    }

    .page{
        position: absolute;
        margin-top: -50px;
        padding-top: 160px;
        right: 5%;
        width: 60%;
        rotate: 5deg;
    }

    .segment__title{
        font-size: 67px;
    }

    .segment__content{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto;
        align-items:flex-start;
        gap: 40px;
    }

    .segment__visual{
        grid-column: 1 / 6;
        grid-row: 1;
        position: relative;
        width: 100%;
        margin-top: 30px;
    }

    .segment__img{
        width: 100%;
        height: auto;
        display: block;
    }

    .img--article{
        grid-column: 5 / -1;
        grid-row: 3;        
        display: block;
    }

    .segment__intro{
        grid-column: 6 / -1;
        grid-row: 1;
    }

    .segment__text{
        grid-column: 1 / 9;
        grid-row: 2;  
    }

    .segment__content--flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .img--mid{
        width: 50%;
    }

    .segment__content--flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .segment__textgroup{
        width: 66%;
        margin-left: 0; 
    }

    .img--rotate{
        width: 40%;
        height: auto;
        display: block;
        rotate: 10deg; 
        box-shadow: 20px 20px 50px rgba(0,0,0,0.25);
    }
}

@media screen and (min-width: 1000px) {

    body{
        font-size: 20px;
    }

    .menu__liste{
        justify-content: flex-start;
        top: 0;
        left: 0;
        width: 450px;
        height: 20px;
        padding: 20px 20px 20px 100px;
        z-index: 100;
    }

    .menu__el{
        font-size: 15px;
    }

    main{
        margin: 0 15%;
    }

    .link{
        font-size: 36px;
    }

    .header__title{
        font-size: 199px;
        text-shadow: 8px 8px 0px #D2422B; 
    }

    .page__img{
        width: 100px;
    }
    
    .segment__title{
        font-size: 150px;
        margin-bottom: 80px;
    }

    .segment__subtitle{
        font-size: 84px;
        top: -85px;
    }

    .txt--big{
        font-size: 27px;
    }

    .segment__content--flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .img--rotate{
        width: 50%;
        height: auto;
        display: block;
        rotate: 10deg; 
        box-shadow: 20px 20px 50px rgba(0,0,0,0.25);
    }

    .img--big{
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: auto;
        display: block;
    }

    .segment__nocontain .segment__text {
        width: 66%;
        margin-right: 0;
    }

    .footer{
        margin-top: 160px;
        padding: 80px;
    }
}

@media screen and (min-width: 1300px){
        
    .header__title{
        font-size: 266px;
    }

    .page__img{
        width: 120px;
    }

    .img--mid {
        width: 30%;
    }

    .segment__subtitle{
        font-size: 112px;
        top: -110px;
    }
}