
/* Notes: GETS implementation of font-family and background-image on game.css */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative
}

/* Logo Picture Section*/
.logoPic {
    background-image: url('SoS_logo.png');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 500px;

    /* Prevent Mouse click to inspect the images */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


/* Bubble Section */
.parallax {
    position: relative;
    z-index: -1;
}
#bubble1 {
    left: 100px;
    opacity: 0.7;
    top: -50px;
}
#bubble1-2 {
    top: 100px;
    left: 400px;
    opacity: 0.7;
}
#bubble2 {
    left: -400px;
    opacity: 0.9;
    top: 100px;
}
#bubble3 {
    right: 300px;
    opacity: 0.5;
    top: 200px;
}
#bubble3-2 {
    left: 1000px;
    bottom: 1300px;
    opacity: 0.7;
}
#bubble3-3 {
    left: 500px;
    bottom: 890px;
    opacity: 1;
}
#bubble4 {
    left: 400px;
    width: 50% !important;
    top: 50px;
    opacity: 0.7;
}

/* Bubble Section END */


/* Radiospot Section */
.player {
    box-shadow: 0 50px 80px black;
    border: 1px solid #FF336D;
}

.player .material-icons {
    vertical-align: middle;
}

.player .audioBox {
    position: relative;
    width: 100%;
    height: auto;
}

/* Screenshots */
.screenshots {
    height: auto;
    box-shadow: 0 50px 80px black;
    border: 1px solid#FF336D;
}

.screenshots img {
    width: 100% !important;
    height: auto;
}

/* Poster Section */
.poster {
    /* height: 329px; */
    box-shadow: 0 50px 80px black;
    cursor: pointer;
    border: 1px solid #FF336D;
}

.poster img {
    width: 100%;
    height: 100%;
}

/* Custom Class for SweetAlert.JS PopUp when Poster opens */
.swal-picture {
    width: 1150px !important;
    font-size: 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(64,28,48,1) 0%, rgba(44,39,56,1) 100%) !important; 
}

.swal-picture .swal2-confirm{
    background-color: #F23067 !important;
    font-size: 1.3em;
}

.swal-picture .swal2-confirm:focus{
    border: 1px #F23067;
}

.swal-picture img{
    width: 100% !important;
    height: auto !important; 
}

/* Buttons for poster and radiospot */
#btn-mute, #btn-play, #btn-mute:focus, #btn-play:focus {
    outline: none !important;
    border: 0px !important;
    background-color: transparent;
    color: white;
}

#btn-mute:hover, #btn-play:hover {
    background-color: transparent;
    color: violet;
    box-shadow: inset  0 2px 10px black !important;
}


/* Navigation Section (copied from menuspy.js) (https://github.com/lcdsantos/menuspy/blob/master/examples/sidemenu.html) */

/* Navigation hidden on Mobile */
@media only screen and (max-width: 767px) {
    header {
        visibility: hidden !important;
    }
}

/* Navigation visible on Desktop and Tablet */
@media only screen and (min-width: 768px) {
    .side-menu {
    position: fixed;
    right: 50px;
    top: 0;
    bottom: 0;
    width: 22px;
    height: 100%;
    display: table;
    }

    .side-menu nav {
    display: table-cell;
    vertical-align: middle;
    }

    .side-menu li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 20px;
    }

    .side-menu span:hover {
        text-decoration: none !important;
    }

    .side-menu li::marker {
        content: "" !important;
    }

    .side-menu a {
    display: block;
    position: relative;
    color: #FF336D;
    text-decoration: none;
    white-space: nowrap;
    text-align: right;
    }

    .side-menu a:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #FF336D;
    -webkit-transition: 0.2s;
            transition: 0.2s;
    }

    .side-menu a:hover {
        text-decoration: none !important;
        color: #FF336D;
    }

    .side-menu span {
    display: block;
    position: absolute;
    right: 32px;
    -webkit-transition: 0.2s;
            transition: 0.2s;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
            transform: translate3d(30px, 0, 0);
    }

    .side-menu .active a:after {
    background: #FF336D;
    }

    .side-menu .active span {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    }
}

/* Others */

/* "Blocksatz" for the About text */
h5 {
    hyphens: auto; 
	text-align: justify
}

/* To Vertically center the "Thanks to:.." Item (https://stackoverflow.com/questions/25516658/css-footer-positioning-to-vertically-center-text-when-using-bootstrap) */
.centerFooterItem {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width:100%;
}

/* Responsiveness Section */
@media (max-width: 1200px) {
    /* Tweak height when in mobile/tablet */
    .player .audioBox {
        position: relative;
        width: 100%;
        min-height: 250px !important;
    }
}

@media (max-width: 1280px) {
    /* Dibt Display Bubbles when in mobile/tablet */
    .parallax  {
        display:none;
    }
    
    /* To hide navigation bar on mobile and tablet */
    nav {
        display: none !important;
        visibility: hidden !important;
    }

    /* Dont display hardware accerelation information when in mobile/tablet */
    #hardware-text {
        display: none;
    }
}

/* Dont display turn when in Desktop View */
@media (min-width: 1280px) {
    #turn-around {
        display: none;
    }

    #anotherLink {
        display: none;
    }
}

/* Dont display turn around display when in landscape and in mobile/tablet */
@media (max-width: 1280px) and (orientation:landscape) {
    #turn-around {
        display: none;
    }
}

/* To make a little gap over copyright in mobile view  */
@media (max-width: 768px){
    .copyright {
        padding-top: 1.2em !important;
    }
}

@media (max-width: 575px) and (orientation:portrait)  {
    /* Make small gap between text and image when in mobile */
    #neededSpace {
        padding-top: 4em;
    }
}
