/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import url('https://fonts.googleapis.com/css2?family=Marvel&family=Megrim&family=Noto+Sans+JP:wght@100&family=Press+Start+2P&family=Raleway:wght@100;400&display=swap');

body {
    font-family: "Courier New", sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Raleway', sans-serif;
    background: #0;
    
	padding-top:5vh;
}


	


.instaimg img {margin-bottom:30px;}
.instaimg img:hover {
	opacity:0.8;
	-moz-opacity:0.8;
	-webkit-opacity:0.8;
}




p {
	font-family: "Courier New", sans-serif;
	font-size: 1.1em;
	font-weight: 300;
	line-height: 1.7em;
	color: #0;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #0;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.spacer {
	height: 50px;
}

.sectionspacer {
	height: 200px;
}




.hrDiv {

display: block;
   position: relative;
   padding: 0;
   margin: 8px auto;
   height: 0;
   width: 100%;
   max-height: 0;
   font-size: 1px;
   line-height: 0;
   clear: both;
   border: none;
   border-bottom: 1px solid #ffffff;
	
	/*--
width: 100%;
height: 0px;
border-top: 1px solid rgba(255, 255, 255);
border-left: none;
border-right: none;
border-bottom: none;
display: block;
*/
}





.colorLine {
	
float R=125;
float centerR=125;
float a=PI/2;
float a1=PI;
float a2=3*PI/2;
float pathR=125;
float pathG=125;
float G=125;
float centerG=125;
float pathB=125;
float B=125;
float centerB=125;


void setup() {
  size(800, 0);
  
}

void draw() {

  
 background(0, 0, 0, 0);

 noFill();
 stroke(pathR,pathG,pathB);
   pathR=centerR+R*sin(a);
  a=a+.1;
  
  pathG=centerG+G*sin(a1);
  a1=a1+.03;
  
  pathB=centerB+B*sin(a2);
  a2=a2+.03;
  

  
 line(0, 20, width, 20);
  
  
}
	
	
}






/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #0;
    color: #0;
    transition: opacity 1s ease, visibility 1s ease;
    opacity: 1;
  visibility: visible;
}

#sidebar.hidden {
  opacity: 0;
  visibility: hidden;
}

#sidebar.active {
    margin-left: -250px;
}



#sidebar .sidebar-header {
    padding: 20px;
    background: #0;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #0;
}

#sidebar ul p {
    color: #0;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
	color: 255, 0, 100;
	background: 255, 30, 0;
	font-family: "Courier New", sans-serif;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #0;
    background: #0;
}


a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #0;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}
a.download {
    background: #0;
    color: #0;
}
a.article, a.article:hover {
    background: (0, 0, 0) !important;
    color: #fff !important;
}
/* Mobile sidebar hidden by default */
.sidebar-mobile {
  display: none;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;  /* hidden off screen */
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 20px;
  padding-top: 80px; /* <-- Add this */
  overflow-y: auto;
  z-index: 1100;
  transition: left 0.8s ease;
}

/* Mobile toggle button hidden on desktop */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 1200;
  border-radius: 4px;
   height: auto; /* you didn’t set height explicitly */
}

/* Show mobile navbar and toggle button on small screens */
@media (max-width: 767px) {
  .sidebar-desktop {
    display: none;
  }
  .sidebar-mobile {
    display: block;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Sidebar open state for mobile */
.sidebar-mobile.active {
  left: 0;
}

.sidebar-mobile ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: calc(100% - 250px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}
#content.active {
    width: 100%;
}


/* ---------------------------------------------------
    Picture Rollover
----------------------------------------------------- */
.pic {

    overflow: hidden;
}
/* -------------- This kills moving text thing

.text {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 0;
    text-align: center;    
    background: rgba(255, 255, 255, 0.7);
    transition: height 0.7s ease-out;    
}

.pic:hover > .text {
    height: 150px;
}

---------*/

#containerintro {padding: 5% 0;}

#intro {
    padding: 5% 0;
}



/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
         display: none;
    }
   
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;               /* cover entire container2 */
  background: rgba(0, 0, 0, 0.8); /* black semi-transparent */
  color: #f1f1f1;
  
  display: flex;              /* center text */
  flex-direction: column;     /* vertical stacking */
  justify-content: center;    /* vertical center */
  align-items: center;        /* horizontal center */
  
  opacity: 0;
  transition: opacity 1s ease;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  box-sizing: border-box;
  pointer-events: none;       /* so underlying elements (links) remain clickable */
}

/* Show overlay on hover */
.container2:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}
