@import url("style_pages/site_color_modes.css");


/*-------------------------------------------------------------------------------------------------*/
/* Whole document */
/*-------------------------------------------------------------------------------------------------*/
* {
    /*
    box-sizing: border-box;
    --bg-color: rgb(20, 40, 60);
    --bg-nav: rgba(20, 50, 75, 0.5);
    --nav-hover: rgb(136, 10, 140);
    --text-color: white;
    */
    box-sizing: border-box;
    --bg-color: rgb(67, 0, 51);
    /*color: rgb(193, 0, 164);*/
    --bg-nav: rgba(20, 50, 75, 0.5);
    --nav-hover: rgb(88, 0, 70);
    --text-color: white;

    --nav-text-color: rgb(234, 6, 200);

    /* Tests */
    --bg-color: rgb(63, 1, 51);
    /*color: rgb(234, 6, 200);*/
    
    --bg-color: rgb(241, 94, 219);
    --main-bg-color: rgb(63, 1, 51);
    /*color: rgb(106, 0, 79);*/
    --bg-color: white;
}


:root::weblit-scrollbar {
    display: none;
}


:root {
    /*-ms-overflow-style: none;
    scrollbar-width: none;*/
}




/*-------------------------------------------------------------------------------------------------*/
/* Body */
/*-------------------------------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
}


/*-------------------------------------------------------------------------------------------------*/
/* Header */
/*-------------------------------------------------------------------------------------------------*/
header {
    height: 50vh;
    width: 100%;
    /*max-width: 1000px;*/
    padding: 0px;
    margin: 0px;
}



header #headerBackgroundImage {
    display: flex;
    width: 100%;
    height: 100%;
}



header #headerBackgroundImage .bgImage {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    align-items: center;
    background-repeat: no-repeat;
}



header #headerHeading {
    text-align: center;
    color: black;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%);
}


header #headerHeading h1 {
    margin-top: 40px;
    padding-top: 0px;
}


#logoTop > img {
    height: 100px;
    width: 100px;
    position: absolute;
    top: 0rem;
    left: 0rem;
    cursor: pointer;
    border-radius: 1rem;
    z-index: 101;
    visibility: hidden;
}



/*-------------------------------------------------------------------------------------------------*/
/* Navigation top and navigation top hamburger menu in different css files */
/*-------------------------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------------------------*/
/* Main content */
/*-------------------------------------------------------------------------------------------------*/
main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    max-width: 1000px;
    background: rgb(229, 227, 229);
    margin: auto;
    margin-top: 50px;
    padding-top: 50px;
}


main article .titleArticleText {
    text-decoration: underline;
}


main article {
    background-color: rgb(190, 190, 190);
    
    overflow-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    margin-top: 0px;
    padding: 0px;   
    margin-bottom: 50px;
    padding-bottom: 50px; 
    border-top: 2px solid rgb(204, 0, 255);
}

article .text a {
    text-decoration: none;
    color: black;
}


main article section {
    margin: 0px;
    padding: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 50px;
    margin-bottom: 50px;
}


main article .websiteUnderConstructionHint {
    Color:red; 
    margin-top: 0px; 
    margin-bottom: 50px;
    padding-top: 50px;
}



main article section ul {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    
}


.newsArticle {
    /*display: flex;*/
    text-align: left;
    /*border: 2px solid rgb(204, 0, 255);*/
    margin: 0px;
    padding: 0px;
    margin: auto;
    margin-bottom: 100px;  
}

/*
.newsArticle p {
    text-align: right;
    margin-bottom: 50px;
}
*/

.newsArticle .text {
    /*flex: 1;*/
    overflow: visible;
    overflow-wrap: break-word;
    text-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px;
    padding: 10px;
}


.newsArticle .image {
    /*flex-shrink: 0;*/
    width: 200px;
    height: 200px;
    margin: 0px;
    padding: 0px;
}


.newsArticle.imageLeft p {
    text-align: right;
    margin: 0px;
    margin-bottom: 50px;
}

.newsArticle.imageRight p {
    text-align: left;
    margin: 0px;
    margin-bottom: 50px;
    
}


.newsArticle.imageRight .image {
    /*flex-direction: row;*/
    float: right;
    padding: 0px;
    margin: 10px;  
    margin-bottom: 0px;  
}


.newsArticle.imageLeft .image {
    /*flex-direction: row-reverese;*/
    float: left;
    padding: 0px;
    margin: 10px;
    margin-bottom: 0px;  
}


.newsArticle .image img {
    width: 200px;
    height: 200px;
    margin: 0px;
    padding: 0px;
}




/*-------------------------------------------------------------------------------------------------*/
/* Footer */
/*-------------------------------------------------------------------------------------------------*/

footer {
    margin: 0px;
    padding: 10px;
    z-index: 1002;
}


footer p {
    margin: 0px;
    padding-top: 10px;
}


footer a {
    color: black;
}




#topNavBar.scrolled {
    background: black;
    z-index: 101;
}










/*-------------------------------------------------------------------------------------------------*/
/* Media screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
    * {
        font-size: 1em;
    }


    #topNavBar {
        display: none;
    }


    #topNavMobile ul li a {
        margin: 0px;
    }


    header #headerBackgroundImage {
        background-image: url("../media/images/images_banner/image_snail_flames.png");
        background-size: cover;
        height: 30vh
    }

    

    header {
        height: 30vh;  
    }


    header #headerHeading {
        top: 22%;
        white-space: nowrap;
    }



}



@media (min-width: 900px) { 
    header #headerBackgroundImage{
        background-size: auto 100%; 
    }
}
