
/* //////////////////////////////// STYLES SITE LA PHANTASIA //////////////////////////////// */

:root {
    --emerald-green: #0b7;
    --bleu-sombre: #1b145c;
    --dark: #025;
}

@charset "utf-8";

@font-face {
    font-family: Gobold-Bold;
    src: url('fonts/Gobold-Bold.ttf');
}
@font-face {
    font-family: Roboto-Light;
    src: url('fonts/Roboto-Light.ttf');
}


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

body {  
    color: #fff;
    font-family: 'Roboto-Light', sans-serif;
    background-color: var(--bleu-sombre);
    overflow-x: hidden;
}

h1, h2{
	font-family: "Gobold-Bold";
}

a:link,a:visited,a:active{
    color:#de1 !important;
}

header{
    border-bottom: 1px solid #fff;
}

header .brand{
    padding: 15px 0;
}

header .brand #logo{
    margin-left: 20px;
    max-width: 99%;
}

header .info i{
    padding-top: 15px;
}

main{
    padding-top: 10vh;
    min-height: 75vh;
    background-color: rgba(27, 20, 92,0.8)
}

main .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--emerald-green) !important;
}

main .nav-link{
    color: #fff !important;
    text-transform: uppercase;
}

#intro .modal-dialog{
    max-width: 55vw;
}

#intro .modal-content{
    background-color: var(--dark);
    width: 55vw;
}

.pointable{
    cursor:pointer;
}

/* - - - - - - - - - - - - - - - - - - RESPONSIVE - - - - - - - - - - - - - - - - - - */

@media screen and (min-width: 1024px) {
    header .brand{
        padding-left: 15px; 
    }
}

@media screen and (max-width: 1023px) {
    body{
        background-position: top 150px center;
        background-size: 45%;
    }

    #intro .modal-dialog{
        max-width: 85vw;
    }

    #intro .modal-content{
        width: 85vw;
    }

    header .brand{
        text-align: center; 
    }

    header .brand #logo{
        margin-left: unset;
    }
    
    main{
        padding-top: 10px;
    }
    
    main #mythes{
        border-top: 1px solid #fff;
        padding-top: 15px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 376px) {
    
    #intro .modal-dialog{
        max-width: 95vw;
    }
    
    #intro .modal-content{
        width: 95vw;
    }
}
