/* stylesheet designed for 
http://rumiroaming.subversivepress.org by gita hashemi

toggle menu - code by satish kumar
https://codepen.io/satishkumar458/pen/xgBXmb 
modified by gita hashemi */


/* BASIC */

html {
		box-sizing: border-box;
}

*, *:before, *:after {
		box-sizing: inherit;
	}

body, html {
    width: 100%;
    height: 100%;
}

legend, label, input, ul, li{
    margin: 0; 
    padding: 0;
}

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font-family: Helvetica, Verdana, sans-serif;
	vertical-align: baseline;
    background-color: #6e4c2c;
    color: aliceblue;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
    margin: 0;
    padding: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* ==== SPLASH */

#top {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    position: static; 
    margin: 0px;
    /*background: rgba(0, 0, 0, 0.1);*/
    border-radius: 5px;
    font-size:100%;
    display:block;
    padding:0px;
    width:auto;
}

#logoimg {
    width: 100%;
	height: auto;
    margin-left:auto;
    margin-right: auto;  
}

#logo {
    margin-left:auto;
    margin-right: auto;  
    position:sticky;
    bottom: 0;
    top: 0px;
    position: -webkit-sticky; /* Safari */
    z-index: 10;
}

#splash {
    width: 100%;
	height: auto;
    margin-left:auto;
    margin-right: auto;
    z-index: -1;
}

#action-call {
    position: fixed;
    top: 60%;
    background: rgba(212,241,249,0.9);
    color: #6e4c2c;
    padding: 20px;
    font-size: 4vw;
    font-weight:900;
    left: 50%;
  transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 50px;
}

#action-call a {
    color: #6e4c2c;
}

#action-call a:hover {
    color: #b08900;
    /*color: #ff9927;*/
}


#tag{
    font-size: small;
    left: 10px;
}
/*===TOGGLE MENU==*/

#stick-menu {
    position:sticky;
}

*{box-sizing: border-box;}

.input-toggler{ 
    display: none;
}

.menu-toggler{
    position: fixed; 
    right: 0px; 
    top: 0px; 
    bottom: 20;
    width:80px; 
    height: 80px; 
        /*height: 90px; */
    background-color: rgba(99,68,39,.5); 
    z-index: 100; 
    display: flex; 
    justify-content:center; 
    align-items:center; 
    flex-direction:column; 
    cursor: pointer;
    border-radius: 50px;
}

.menu-toggler-line{
    width: 60%; 
    height:3px; 
    background:#ffcf27; 
    margin: 0 0 10px 0px; 
    position: relative; 
    transition: all .40s ease-out;
}

.input-toggler:checked ~ .menu-toggler .menu-toggler-line {
    top: 5px; 
    transform:rotate(45deg); 
    translateY:(100px);
}

.input-toggler:checked ~ .menu-toggler .menu-toggler-line:nth-child(2) {
    top: -5px;
    transform:rotate(135deg);
    translateY:(10px);
}

.nav{ 
    width: 100%; 
    height: 100%; 
    right: 0;
    bottom: 0;
}

.nav ul{ 
    width: 100%;
        right: 0;
}

.nav ul li{ 
    width: auto; 
    text-align: right;
}

.nav ul li a{
    display: inline-block; 
    font-size: 18vw; 
    color: #fff; 
    text-transform: uppercase;
}

.sidebar {
    position: fixed; 
    bottom: 0;
    right: 0;
    height: 100%; 
    top: 90px;
    width: auto;
    display: flex;
    justify-content: right;
    text-align: right;
    transform: translateX(100%);
    transition: all .40s ease-out;
    z-index: 20; 
}

.menu-link {
    color: #d4f1f9; 
    font-size: 12vmin; 
    line-height: 12vmin; 
    -webkit-transition: all .25s ease-out; 
    transition: all .25s ease-out;
}

.menu-link:hover, .menu-link:focus, .menu-link:active {
    color: Gold;
}

.input-toggler:checked ~ .sidebar {
    transform: translateX(0%); 
    background:transparent;
    opacity: .8;
}

====

#menu a {
    background-color: #000;
    padding-right: 10px;
    color: #d62828;
    cursor: pointer;
    text-align: right;
    border-radius: 1px;
}

#menu a:hover {
    background-color: #fff;
}

#menu {
    margin: 20px auto;
    float: right;
}


/*=====*/

#wrapper {
 width: auto;
 overflow: hidden;
 margin: 20px auto auto auto;
 background: transparent;
 padding: 0px;
 clear: both;
}

/*====ABOUT*/

#about {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #bed8e0;
    font-family: helvetica,verdana,sans-serif;  
    padding: 50px;
    color: #583c23;
    font-size: large;
}

#about a {
    color: #233f58;
    cursor: pointer;
    font-weight: 400;
    text-decoration: underline;
}

#about a:hover {
    color: #ffcf27;
}

#about ul{
    left: 20;
    background-color: inherit;
    padding: 10px 10px 10px 50px;
}

#about li{
    color: #583c23;
    margin-left: inherit;
    background-color: inherit;
    font-size: large;
    line-height: 1.5;
    font-weight:100;
}


/*======ARTIST*/

#artist {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #4f361f;
    font-family: helvetica,verdana,sans-serif;  
    padding: 50px;
    color: #d4f1f9;
    font-size: large;
}

#artist a {
    color: #ff9927;
    cursor: pointer;
    font-weight: 400;
        text-decoration: underline;
}

#artist a:hover {
    color: #ffcf27;
}



#list {
    font-size: 120%;
    line-height: 2;
    letter-spacing: 1px;
    letter-spacing: 1px;
}


p {
    color: inherit;
    margin-left: inherit;
    padding: 10px;
    background-color: inherit;
    font: inherit;
    line-height: 1.25;
    font-weight:100;
}

a {
    color: #fdd98c;
		text-decoration: none;
		-moz-transition: color 0.25s ease-in-out;
		-webkit-transition: color 0.25s ease-in-out;
		-ms-transition: color 0.25s ease-in-out;
		transition: color 0.25s ease-in-out;
    font: inherit;
    background-color: transparent;
	}

a:hover {
    color: #fcbf49;
		}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: inherit;
    background-color: inherit;
    letter-spacing: -0.05em;
    line-height: 150%;
}

h1 {
    font-size: 125%;
}

h2 {
    font-size: 115%;
}

h6 {
    font-size: 80%;
    text-transform: uppercase;
    padding:10px;
}

strong, b {
		color: #fff;
		font-weight: 600;
	}

.ital {
    font-style: italic;
    background-color: inherit;
    color: inherit;
    font-size: inherit;
    font-weight: 600;
}


header p {
	font: 100 15px/1.5 Helvetica, Verdana, sans-serif;
	text-align: center;
}


@media screen and (min-width: 601px) {
  header h1 {
    margin: 0em 0em 0em 0em;
    text-align: left;
	font: 100 150% Helvetica, Verdana, sans-serif;
    color: white;
    letter-spacing: 1px;
    padding-bottom: 20px;
  }
  header h3 {
    margin: 0em 0em 0em 0em;
    text-align: left;
	font: 100 110% Helvetica, Verdana, sans-serif;
    color: #eee;
    letter-spacing: 2px;
    padding-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
  header h1 {
     margin: 0em 0em 0em 0em;
      text-align: left;
	font: 100 150% Helvetica, Verdana, sans-serif;
    color: white;
    letter-spacing: 1px;
    padding-bottom: 20px;
  }
    header h3 {
    margin: 0em 0em 0em 0em;
    text-align: left;
	font: 100 110% Helvetica, Verdana, sans-serif;
    color: #eee;
    letter-spacing: 2px;
    padding-bottom: 20px;
    }
}

/* === FOOTER === */

#footer {
/*    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    position: relative; 
     width: 80%;
    overflow: hidden;*/
    margin: 80px auto auto auto;
    max-width: auto;
    display:block;
    background-color: #3B2817;
    text-align: center;
    line-height: 2;
}

footer ul {
	font: 100 90% Helvetica, Verdana, sans-serif;
    line-height: 2;
   }

footer li {
	font: 100 90% Helvetica, Verdana, sans-serif;
    line-height: 2;
        color:#af7f4f;
   }

footer a {
    color: #bf8f5f;
}
