
/* //////////////////////////////// STYLES SÉLECTION MM //////////////////////////////// */

/* GENERAL INFO ------------------

colors :
#1A1A2A - mauve profond
#00a7ca - bleu turquoise
#fff

-------------------------------  */

@charset "utf-8";

/* - - - - - - - - - - - - - - - - - - GENERAL - - - - - - - - - - - - - - - - - - */

html {
    scroll-behavior: smooth;
}

body {
    background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),  url("../img/perspective.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    animation-duration: 0.3s;
    animation-name: apparition;
}

a{
    color:#ddd;
    cursor:pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

a:hover{
    color:#0ae !important;
    text-decoration: none;
}

/* - - - - - - - - - - - - - - - - - - HEADER - - - - - - - - - - - - - - - - - - */

header{
    position:fixed !important;
    top:0;
    left:0;
    z-index: 150;
    background-color: rgba(0,0,0,0.4);
    border-bottom: 1px solid #ddd;
}

.navbar-fixed-top.scrolled {
    opacity: 0.8 !important;
    padding:0 1rem;
    transition: padding 200ms linear;
}

.navbar{
    width:100%;
    padding: .1rem 1rem;
    justify-content: space-between;
}

.navbar-brand{
    font-size: 28px;
    max-width: 40vw;
    font-family: 'Raleway', Arial, sans-serif;
    color:#ddd !important;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.navbar-brand:hover{
    color:#00a7ca !important;
}

/* - - - - - - - - - - - - - - - - - - MAIN - - - - - - - - - - - - - - - - - - */

#main{
    background-color:transparent;
    padding-top:17vh;
    padding-bottom: 215px;
    animation-duration: 1s ;
    animation-name: apparition;
    min-height:100vh;
}

#main p, .strategie{
    font-size: 1.4rem;
}

#main .return-btn{
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
}

.modal-custom{
    background-color: transparent;
    border:none;
    font-size:18px;
    padding-top: 33vh;
}

.modal-custom .close-btn{
    color: #fff;
}

/* - - - - - - - - - - - - - - - - - - FOOTER - - - - - - - - - - - - - - - - - - */

footer{
    position:fixed !important;
    bottom:0;
    left:0;
    z-index: 150;
    background-color: rgba(0,0,0,0.6);
    border-top: 1px solid #aaa;
    width: 100%;
    height: 50px;
    padding:10px;
}

/* - - - - - - - - - - - - - - - - - - - - - OTHERS - - - - - - - - - - - - - - - - - - */

.pointable{
    cursor:pointer;
}

.colored{
    color:#0ac;
}

textarea{
    background-color: rgba(0,0,200,0.1);
    width: 98%;
    margin: 5px;
    padding: 15px;
    color: #fff;
}


input[type="submit"] {
    border: 1px solid #225;
    border-radius: 5px;
    color:#225;
    font-family: "Lato";
    width:99%;
    padding:12px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: #fff;
    font-weight:bold;
}

input[type="submit"]:hover{
    background-color: #0ac;
}

/* - - - - - - - - - - - - - - - - - - - - - EFFECTS - - - - - - - - - - - - - - - - - - */

.from-top{
    display: inline-block;
    animation-duration: 0.7s;
    animation-name: entryTop;
}

.from-bottom{
    display: inline-block;
    animation-duration: 0.7s;
    animation-name: entryBottom;
}

.from-right{
    display: inline-block;
    animation-duration: 0.7s;
    animation-name: entryRight;
}

.from-left{
    display: inline-block;
    animation-duration: 0.7s;
    animation-name: entryLeft;
}

.appearing{
    animation-name: apparition;
}


/* - - - - - - - - - - - - - - - - - - - - - KEYFRAMES - - - - - - - - - - - - - - - - - - */

@keyframes entryRight {
    from {
        -webkit-transform: translateX(60vw);
        transform: translateX(60vw);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes entryLeft {
    from {
        -webkit-transform: translateX(-40vw);
        transform: translateX(-40vw);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes entryTop {
    from {
        -webkit-transform: translateY(-40vw);
        transform: translateY(-40vw);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes entryBottom {
    from {
        -webkit-transform: translateY(40vw);
        transform: translateY(40vw);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes apparition {
    from {
        opacity:0;
    }
    25%{
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@media screen and (max-width: 1024px) {
    footer{
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand{
        font-size: 20px;
    }
    footer{
        height: 120px;
    }
}

@media screen and (max-width: 320px) {
    #main{
        padding-top:20vh;
    }
}
