/* CSS Style Guide,
camelCase for classes, snake_case for Id's
padding: 5px 3px 0px 3px; /*Top right Bot left
Color List: */
@font-face { /*Standard*/
	font-family: "HuberFish"; 
	src: url("/assets/Fonts/Huberfish_a_v003-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 100;
}

@font-face { /*Alternative*/
	font-family: "HuberFish"; 
	src: url("/assets/Fonts/Huberfish_c_v001-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 200;
}

@font-face { /*Bold*/
	font-family: "HuberFish"; 
	src: url("/assets/Fonts/Huberfish_d_v001-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}

.example {
	font-family: "HuberFish", serif; /*Serif is the fallback*/
    font-weight: 100/*Which font face to chose*/;
}

.Color_List{
    color:#fff7e8 #fffcf4 #3b7d4f #005419 
    #acb2d8 #686f99 #404973 #2c354d
}
:root { /*Establish Variables, etc*/
    --page-color: #fff7e8; /*For: background color*/
        --lighter-color: #fffcf4; /*For: background color*/
    --txt-color: #686f99; /*For: Various text color components*/
    --texturedlayer: url(/assets/images/funtexture.png);
    --topMargin: 5px;   /*Relic of Past*/
}
/*      \\ Index Page\\     
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
.index {
    display: grid;
	grid-template: 
    "header header"
    "nav main"
    "footer footer" /15% 85%;
    margin:auto;
    max-width: 1250px; /*TOTAL PAGE WIDTH, used to be 1250px*/
    border-radius: 5px;
    /*glass*/ background-color: #63ab3f8f;
    /*glow & shadow*/ box-shadow: inset 0 0 10px 5px #9cd45d, 15px 15px 20px 5px rgba(0, 0, 0, 0.722);
    border: solid white 5px;
 }
.mainBox{
    background: var(--page-color);
    border: 3px solid #404973;
    padding: 0px;
    margin-top: 0px;
    border-bottom-left-radius: 30px;
}
.background{
	background: url(/assets/images/webback.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed; /*or scroll*/
    image-rendering: pixelated;
}
body{ /*Background*/
	font-size: 15px; /* General Text size*/
	overflow-x: hidden;
	line-height: 1;
	position: relative;
    margin-top: 30px; /*Sets the top of the floating window */
    caret-color: #00a832;
    color: #2c354d;
}
header{ /*Top Bar Site "logo"*/
    grid-area: header;
    text-align: center;
    background-image: var(--texturedlayer);
    background-size: 50;
    background-position: center;
    border-bottom: 4px dashed white;
}
main{ /*The center box w/ iframe contained*/
    grid-area: main; 
    margin: 5px;
    margin-left: 0px;
}
nav {
    grid-area: nav;
    color: var(--txt-color);
    position: sticky;
    margin: 5px;
    overflow:hidden;
}
footer{
	grid-area: footer;
    text-align: center;
    background-color: #3b7d4f;
    border-top: 4px dashed white;
    color: white;  
    font-size: 15px;
    text-shadow: -1px -1px 0 #005419, 1px -1px 0 #005419, -1px 1px 0 #005419, 1px 1px 0 #005419;
}
    /*      \\ iframe Zone \\       
    ▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
.iframe { /* sets base page css for iframe content*/
	padding: 3px; /*Sets that Left side gap*/
    padding-left: 10px;
	margin: 0px;
}
iframe {
    width:100%;
    height:100%;
}
#iframebox { /* the width of the iframe within the main content*/
    width: 74%;
    height: 710px; /*Sets the height of the main window*/
	position: relative;
    padding-left: 0px; /*Removed to make full color pages look better, add on each page if want*/
}
html{scrollbar-color: #acb2d8 #404973;}
/* makes the scrollbar invisiable for iframe content*/
.noScrollBar{scrollbar-width: none;}

/*      \\ Headers & More \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
.welcomeHeader{
    font-size: 50px;
    color: #ffffff;
    text-shadow: 2px 2px var(--txt-color);
    text-align: left;
    padding: 10px;
    margin:3px;
}
/*h1{ /*Main title*/ 

h2{ /*section titles*/
    font-size: 15px;
    color: rgb(255, 255, 255); 
    max-height: 18px;
    margin: 0px;
    padding: 5px;
    text-shadow: -1px -1px 0 var(--txt-color), 1px -1px 0 var(--txt-color), -1px 1px 0 var(--txt-color), 1px 1px 0 var(--txt-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h3{ /*subsection titles*/
    font-size: 20px;
    color: var(--txt-color);
    border-bottom: 3px dashed #686f99;
    max-height: 18px; 
    margin: 3px;
    padding-bottom: 3px;
    justify-content: space-between;
    align-items: center;
}
nav h3{
    margin: 0px;
    padding: 5px 3px 1px 3px; /*Top right Bot left*/
}
h4{ /* Centered Text */
    font-size: 20px;
    color: var(--txt-color);
    max-height: 18px; 
    margin: 3px;
    margin-top: 5px;
    text-align: center;

}
.contentTitle{
    border-bottom: solid 2px var(--txt-color);
    background: #686f99; /*background color of Main Content Title*/
    color: rgb(255, 255, 255);
    text-decoration: underline dotted rgb(255, 255, 255) 1px;
}
.barTitles{
    margin-bottom: 0px;
    background-color: #404973;
    border-top-right-radius: 50px;
    color: white;
    padding-top: 6px;
}

/*      \\ Base Overwrites \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
::selection {
  background: #6dbb46; /* Change the highlight background color */
  color: #fff7e8;      /* Change the highlighted text color */
}
b { color: #2c354d; }
p { margin: 5px; line-height: 1.25;}
nav a {
    color: var(--txt-color);
    text-decoration: underline;
}
nav a:hover {
    color:#63ab3f;
    text-decoration: underline wavy;
}
a[href*='//']:hover{
    color: #bf56d4;
}
a {
    color: #3b7d4f;
    text-decoration: underline;
}
a:hover {
    color:#9cd45d;
    text-decoration: underline wavy;
}
ul {
    margin: 3px;
    padding: 0px;
    padding-left: 13px;
}
li {
    list-style-type: "🡢";
    margin-left: 10px;
    padding-left: 4px;
}
nav li{
    list-style: "○";
    margin-left: 0px;
    padding: 3px;
    font-size: 15px;
}
/*      \\ Text Styles \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/

.subtleText{
    font-size: 12px;
    color: #3b7d4f;
}
.alertText{
    color: #bf56d4;
}
.insetText{
    background: #93e4557d;
    padding: 5px;
    display: inline-block;
    border-radius: 10px;
}
.broken{
    list-style: "~";
    color: #b77871;
    text-decoration: line-through;
}

/*      \\ Deco Tools \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/

.clearFormat{
    margin: 0px;
    padding: 0px;
}
.imgDesc{
    margin: 0px;
    font-size: 10px;
    background-color: #404973;
    color: white;
    padding: 3px;
}
.round{
    border-radius: 15%;
}
.circle{
    border-radius: 50%;
}
.scrollBox{
    height: 250px;
    overflow: auto;
    overflow-y: visible;
}
.floatL{
    float: left;
    margin-right: 5px;
}
.floatR{
    float: right;
    margin-left: 5px;
}
.center{
    text-align: center;
    display: block;
    margin: 0 auto;
}
.line{
    border-bottom: 3px dashed #686f99;
}
.spaceBig{
    margin-top: 20px;
}
.spaceTop{
    margin-top: 10px;
}
.spaceBot{
    margin-bottom: 10px;
}
.outline{
    border: 2px solid var(--txt-color);
}
.box{
    background: var(--lighter-color);
    border: 2px solid #404973;
    margin-top: 6px;
    padding: 0px;
    border: 2px solid var(--txt-color);
    box-shadow: inset 0 0 0 1px #404973;
}
.splitCont{
display: grid;
grid-template-areas:
"a b";
grid-template-columns: 50% 50%;
column-gap: 0px;
}

q{/*Below is all quote stuff*/
    color: #2c354d;
	display: inline-block;
    margin-bottom: 5px;
}
.quote{
    color: var(--txt-color);
    background-color: #63ab3f16;
    border-radius: 0px 10px 10px 0px;
    border-left: 5px double#63ab3f;
    margin: 10px;
    padding: 5px;
}
.quote-name::before{
    content: "-";
    margin-left: 20px;
    margin-right: 7px;
    color: #3b7d4f;
}
.card{ /*Below is all Horizontal Scrolling Card stuff*/
    width: 250px;
    margin: 2px;
    display: flex;
    flex-direction: row;
    background-color: var(--lighter-color);
}
.cardImg{
    height:100%;
    width: auto;
    object-fit: cover;
}
.cardContent{
    width: 150px;
    padding: 3px;
    font-size: 90%;
    white-space: normal;
    overflow:hidden;
}
.HorScrolContainer{
    width: 85%;
    height: 100px;
    margin: 5px auto;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex; 
    gap: 0px; /*0.05%*/
    align-self: center;
    white-space: nowrap;
    background-color: var(--txt-color);
    border: 3px solid #404973;
}
/*      \\ Animations \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
.blink-hard {
      animation: blinker-hard 0.7s steps(1, end) infinite;
    }
    @keyframes blinker-hard {
      50% {
        opacity: 0;
      }
    }
.ScrollingText{
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    display: inline-block; /* Allows the element to be animated horizontally */
    padding-left: 100%; /* Starts the text off-screen to the right */
    margin: 0px;
    animation: scrollText 15s linear infinite; /* Applies the animation */
}
@keyframes scrollText {
0% {transform: translateX(0); /* Starting position (off-screen right) */}
100% {transform: translateX(-100%); /* Ending position (off-screen left) */}
}

/*      \\ Side nav's \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
.rightWindow{
    position: absolute;
    max-width: 265px; 
    width: 30%;
    top:5px; 
    right:-40px;
}
.soupPic{
    width: 100%;
    image-rendering: auto;
    border-bottom: 3px dashed #686f99;
    margin: 0px;
}
.soupBox{
    background-color: var(--lighter-color);
    border: 3px dashed #686f99;
    margin: 5px;
    margin-bottom: 25px;
}
.update {
margin-left: 2px;
margin-right: 2px;
}
.update li{
    margin-top: 5px;
    margin-left: 0px;
}
.update p{
    margin-left: 0px;
}
.h2style{ /*Right side window names*/
    color: rgb(255, 255, 255);  
    font-size: 15px;
    text-shadow: -1px -1px 0 var(--txt-color), 1px -1px 0 var(--txt-color), -1px 1px 0 var(--txt-color), 1px 1px 0 var(--txt-color);
}
a.h2style:hover {
    color: #ffffff ;  
    font-size: 15px;
    text-shadow: -1px -1px 0 #9cd45d, 1px -1px 0 #9cd45d, -1px 1px 0 #9cd45d, 1px 1px 0 #9cd45d;
}
.boldUnder{ /*Right side page descriptors*/
    color: var(--txt-color);
    font-weight: bold;
    border-bottom: 3px dashed var(--txt-color);
    line-height: 110%;
}
.eightButton {
    background: var(--lighter-color);
    border: 2px solid #404973;
    border-bottom-left-radius: 15px;
    font-size: 12px;
    color: #404973;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 5px;
    width: 65%;
    max-height: 150px;
    max-width: 90%;
    min-width: 35%;
}

/*      \\ External Services, third party CSS \\       
▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
#statuscafe {
    padding: .5em;
    background-color: var(--lighter-color); /*#fff7e8*/
    color: var(--txt-color);
    border: 2.5px double #404973;
}

/*Koba's Scroller for blinkies*/
/* This is what causes the actual smooth scrolling */
@keyframes scroll-r2l {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Change the '10s' in this to change how fast it scrolls! */
.scroll-r2l {
  animation: scroll-r2l 25s linear infinite;
}

/* Left-to-Right */
@keyframes scroll-l2r {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.scroll-l2r {
  animation: scroll-l2r 25s linear infinite;
}

/* 'Display: Flex' is extremely important to use here so all the items inside the marquee line up correctly, and the duplicated container lines up properly with the original */
.marquee {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: unset;
  
  /*  You dont need a border or a set width on yours, but it makes the effect look better if the marquee width is smaller than the number of items in your marquee  */
  /*border: 3px solid black;
  width: 500px;*/
}

.marquee-items {
  display: flex;
  flex-shrink: 0;
  height: 100%;
  min-width: 100%;
  position: relative;
}

/* Changes to this class will only affect the children
of the marquee-items, and not all of their descendants.
Make changes here if you want spaces in-between the
marquee items or other effects and styles!*/
.marquee-items > * {
  margin: 0;
  height: 20px;
}
    /*      \\ Media / mobile \\       
    ▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄░▄▄▄*/
/*HAS TO GO AT THE BOTTOM BECAUSE YOU CAN ONLY USE @media
ON CLASSES & ID's THAT OCCUR BEFORE IT*/
.mobileNav {
    display:none;
}
details {
    display: block;
    min-height: 30px;
}
summary{
    font-size: 20px;
    margin: 5px;
}
details div{
    display: inline-block;
    line-height: 150%;
}
@media only screen and (max-width: 650px){
    .mobileNav{
        display: block;
        background-color: #2c354d;
        color: white;
        gap: 30px;
    }
    nav, .rightWindow, .mobileHide {
        display: none;
    }
    .index {
        grid-template: 
        "header header"
        "mobile mobile"
        "main main"
        "footer footer" /0% 100%;
        margin: 15px; /*side spaces*/
    }
    #iframebox {
        width: 100%;
        height: 70vh;
    }
    .welcomeHeader{
    font-size: 30px;
    padding: 5px;
    padding-bottom: 7px;
    }
    main {

        margin: 0px 0px 10px 0px;
    }
}/*Top right Bot left*/