@charset "UTF-8";

/*! State Craft CSS created by Reed O'Beirne 
10 Nov '19

 */


* {
	box-sizing: border-box;
}




/* . ::::::::::::::  Links  :::::::::::::::::  */
a:link { color: #1c2a1d; 
    text-decoration: underline; 
    text-decoration-style:dashed; } /* dark green */

a:visited { color: #666666; 
    text-decoration: none; }  /* grey */

a:hover {color: #328cc1;  
    text-decoration: underline;}  /* Light Blue/Cyan */

a:active {color: #d9b310;  }  /* Gold Color */


/* :::::::::::::::::::::::: */

html {
/*        border: 3px solid purple; */
}



body {
/*    position: relative;*/
    margin-bottom: 5vh;
    font-family: 'PT Sans Narrow', sans-serif;
	text-shadow: 0.5px 0.5px 0.5px #cccBC6;
/*	font-size: calc(10px + 3.0vw);*/
    font-size: 150%;
    line-height: 1.6em;
    margin: auto;
    max-width: 95%;
    padding-top: 1.0vh;  /* was 1.5 */
	padding-bottom: 1.5vh; /* was 0.5 */
    
    color: #1c2a1d;  /* FONT Charcoal */
    /* background-color:#1d2731; Black-Blue . */
    background-color:#1b2526; /* Charcoal */
    
    
/*     border: 1px solid red; */

}

.container-a{
/*position: relative;*/
  max-width: 1200px;
   margin: 0 auto;  /* centers the column */

/*  border: 1px solid cyan;        */
   
}


.mainbox {                  /* whitebox w blue border    */
/*    position: absolute;*/
	border-width: 1.5vw; 
	border-bottom-width: 3vh;  /* ::::::::  Blue Bottom Border, was 6vh ::::::::  */
	
	border-style: solid;
	border-color: #6b030c;  /* Dark Green */
	border-radius: 3.7vw;  /* curves the box edges */
	background-color: #fbf9e4; /* cream white */	
    margin-left: auto;  /* in combination to center */
	margin-right: auto;
/*    min-height: 30em;  */

    padding: 30px;

}


/* . ::::::::::::::  Navigation  :::::::::::::::::  */

.navbox { /* navigation box style */

    float: right;
	width: 8em;
    background-color: #ffffff; /*white*/
    line-height: 1.6em; /* subtitle Font Size  calc(8px + 2.5vw)*/
    padding-left: 2em;

/*	border-color: #328cc1; light blue border for debugging */	
}

/* ::: Colors for Navigation Links  ::: */
.navbox a{  text-decoration: none;}
.navbox a:link { color: #0b3c5d;   }   /* Navy Blue */
.navbox a:visited {color: #1d2731;}   /* Black-Blue */
.navbox a:hover {color: #328cc1; }    /* Light Blue/Cyan */
.navbox a:active {color: #d9b310;}   /* Gold Color */


.menu-item a{
	margin: 0;
	padding: 0;
}

.menu-item img { /* adjusts the line in the menue items */
	height: 0.8vh; 
	padding-bottom: -0.2vh;
}



/* ::::::: Title Styling :::::::::::::::::  */

.pagetitle { /* Projects & About Title */

    float: left;
    padding-left: 0.2em;
	color: #1c99b9; /* new light blue font */
	letter-spacing: 0.15em;
	font-size: 175%; /* subtitle Font Size calc(12px + 2.5vw); */
	white-space: nowrap;  /* keep text from breaking on small screens */
    
/*    position: absolute;*/
/*    top: 2.0vh;*/
/*    left: 17vw;*/
    
/*        border: 1px solid yellow;     */
}



/* . ::::::::::::::  Main Details  :::::::::::::::::  */
.main-details{
    padding-top: 1em; /* moves main content down */
    max-width: 99%;
    margin-left: auto;  /* in combination to center */
	margin-right: auto;
    
/*    border: 1px solid red;   */
}

.details-title{
    font-size: 155%;
    font-weight: 600;
}


/* . ::::::::::::::  Button Style :::::::::::::::::  */

.button {
  background-color: #1c99b9; /* light blue */
  border: none;
  color: white; /* does this do anything? */
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 28px;
  margin: 2px 1px;
  cursor: pointer;
  border-radius: 10px;
  opacity: 1;
  transition: 0.3s;
}
.button1 a{
    text-decoration: none;
}
.button:link,
.button:visited {
  color: white;
}
.button1:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}


#sketch-holder canvas {
    border-radius: 3.7vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Centered layout for main index page */
body.index-centered .container {
    text-align: center;
}
body.index-centered .pagetitle {
    float: none;
}
body.index-centered .sound-toggle-wrap {
    text-align: center;
}
body.index-centered .main-details {
    text-align: center;
}

.sound-toggle-wrap {
    text-align: left;
    margin-bottom: 25px;
}

.sound-toggle-btn {
    background-color: transparent;
    border: 1px solid #1c99b9;
    color: #1c99b9;
    padding: 5px 17px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 17px;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.2s, color 0.2s;
}

.sound-toggle-btn:hover {
    background-color: #1c99b9;
    color: #fbf9e4;
}

.sound-toggle-btn.is-on {
    background-color: #1c99b9;
    color: #fbf9e4;
}


/* :::::::::::::::  Audio Player  ::::::::::::::::: */

.audio-player {
    background-color: #6b030c;
    border-radius: 10px;
    padding: 14px 18px 12px;
    margin: 8px 0;
    color: #fbf9e4;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    min-width: 0;
    width: 100%;
}

.play-pause-btn {
    background-color: #fbf9e4;
    color: #6b030c;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.play-pause-btn:hover {
    background-color: #1c99b9;
    color: #fbf9e4;
}

.audio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'PT Sans Narrow', sans-serif;
    min-width: 0;
    overflow: hidden;
}

.audio-title {
    font-size: 16px;
    letter-spacing: 0.05em;
}

.audio-time {
    font-size: 13px;
    opacity: 0.75;
}

.audio-dl-btn {
    color: #fbf9e4;
    font-size: 20px;
    text-decoration: none;
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.audio-dl-btn:hover {
    opacity: 1;
    color: #fbf9e4;
    text-decoration: none;
}

.audio-progress-wrap {
    height: 5px;
    background-color: rgba(251, 249, 228, 0.25);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.audio-progress-fill {
    height: 100%;
    width: 0%;
    background-color: #1c99b9;
    border-radius: 3px;
    transition: width 0.25s linear;
    pointer-events: none;
}


.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 3.6vw;  /* curves the box edges */
   /* border: 10px solid yellow; */
}





/* ::::::::::::::::::::::::::::::::::: Responsive ::::::::::::::::::::::::::::: */
/*@media screen and (min-width: 1200px) {*/
/*  div {*/
/*     font-size: 36px;*/
/*  }*/
/*}*/

@media only screen and (max-width: 800px) {
body {

    font-size: 5vw;
/*    background-color:pink;*/
/*    line-height: 1.6em;*/

}
    
    .mainbox {                  /* whitebox w blue border    */
/*    position: absolute;*/
	border-width: 1.0vw; 
	border-bottom-width: 3vh;  /* ::::::  Blue Bottom Border::::::::  */

    padding: 10px;

}

.container-a{

    padding: 5px; /*     was 20px        */

/*     border: 1px solid cyan;        */
   
}
    .line_img img{
   /* display:none;   hides the lines before the words on the navigation */
	}
    
    .navbox { /* navigation box style */
    position: absolute;
    line-height: 1.8em; /* subtitle Font Size  calc(8px + 2.5vw)*/
    	left: 58vw;
	top:  3vh;
   width: 6em;
        
/*    border: 1px solid red;   */