
/* //////////////////////////////// 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: url("../img/rodin.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #271257;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    animation-duration: 1s;
    animation-name: appearing;
}

body.home{
    padding: 0 !important;
}

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

a:hover{
    color:#00a7ca !important;
    text-decoration: none;
}

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

header{
    position:fixed !important;
    top:0;
    left:0;
    z-index: 150;
    background-color: #1A1A2A;
    border-bottom: 1px solid #fff;
}

.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: 30px;
    max-width: 40vw;
    font-family: 'Raleway', Arial, sans-serif;
    color:#fff !important;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

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


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

#back{
    position:fixed;
    color:#ddd;
}

#main{
    background-image: linear-gradient(rgba(19, 8, 61, 0.7), rgba(119, 8, 61, 0.4));
    position:absolute;
    z-index:100;
    min-height:100vh;
    width:100%;
    animation-duration: 15s;
    animation-name: fluttering;
    animation-iteration-count: infinite;
}

h2 {
    margin-top:75px;
}

#landing-view{
    min-height:100vh;
    width:100%;
    padding-top:20vh;
    margin: 0;
    text-shadow: 1px 1px 1px #888;
}

.message{
    display: block;
    width:500px;
    max-width: 100%;
}

.definition-new {
    color: yellow;
}

.dropdown-ekphronesis {
    position:absolute;
    z-index:0;
}

.dropdown-ekphronesis:hover {
    z-index:10;
}

.dropdown-ekphronesis button{
    border-radius: 25px;
    border : 1px solid #fff;
    background: none;
}

.dropdown-ekphronesis .dropdown-menu {
    border: none;
    background: rgba(0,0,15,0.8);
    color: #fff;
    width: 400px;
    padding-left:15px;
}

.dropdown-toggle {
    background: none !important;
}

/* - - - - - - - - - - - - - - - - - MODAL - - - - - - - - - - - - - - - - - - */

.modal-header{
    background-color: darkslateblue;
    color:#fff;
}

.modal-body{
    color:#000;
    font-size:13px;
}

.modal-footer{
    background-color: darkgrey;
    color:#fff;
}

/* - - - - - - - - - - - - - - - - - INPUTS - - - - - - - - - - - - - - - - - - */

input[type="text"], input[type="button"], button, textarea {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color:#fff;
    font-family: "Lato";
    width:99%;
    padding:12px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.custom-button{
    background-color: #eee !important;
    color: #222 !important;
    border-color:#000 !important;
}


input[type="button"]:hover, button:hover{
    background-color: slateblue !important;
    border:1px solid #fff !important;;
}


/* - - - - - - - - - - - - - - - - - - STYLES MSGS  - - - - - - - - - - - - - - - - - - */

.bordered {
    display: block;
    border: 1px dotted #aaa;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

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

footer{
    position:fixed;
    bottom:0;
    background-color: rgb(0,0,15);
    width:100%;
    border-top:1px solid #fff;
    padding: 50px 15px;
    z-index: 250;
    display:none;
}

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

.pointable{
    cursor:pointer;
}

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

.appear{
    animation-duration: 1s;
    animation-name: appearing;
}

@keyframes fluttering {
    from {
        opacity:0.4;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity:0.4;
    }
}

@keyframes appearing {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@media screen and (max-width: 755px) {
    body {
        background-size: auto;
    }
    h2 {
        opacity: 0;
    }
    #main {
        padding-bottom: 300px;
    }
    .dropdown-ekphronesis {
        position: relative;
        top: unset !important;
        left: unset !important;
    }
    .dropdown-ekphronesis .dropdown-menu {
        position: fixed !important;
        top: 25px !important;
        left: 5px !important;
        width: 104vw;
        padding-left: 20px;
        border-top: 1px solid;
        border-bottom: 1px solid;
    }
    footer {
        display:block;
    }
}
@media screen and (max-width: 320px) {
    #main{
        padding-top:20vh;
    }
}
