@charset "UTF-8";

:root {
  --green: #726966;
  --greener: #5a5350;

  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #7464a1;
  --bs-pink: #d63384;
  --bs-red: #a16468;
  --bs-orange: #fd7e14;
  --bs-yellow: #e4c662;
  --bs-green: #67c29c;
  --bs-teal: #726966;
  --bs-cyan: #1cabc4;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #726966;
  --bs-secondary: #7464a1;
  --bs-success: #67c29c;
  --bs-info: #1cabc4;
  --bs-warning: #e4c662;
  --bs-danger: #a16468;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-primary-rgb: 100, 161, 157;
  --bs-secondary-rgb: 116, 100, 161;
  --bs-success-rgb: 103, 194, 156;
  --bs-info-rgb: 28, 171, 196;
  --bs-warning-rgb: 228, 198, 98;
  --bs-danger-rgb: 161, 100, 104;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-black-rgb: 0, 0, 0;
  --bs-white-rgb: 255, 255, 255;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: "Open Sans", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #726966;
  --bs-link-hover-color: #50817e;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #faf4e0;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
    background: #000;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: 0.0625em;
}

html {
  scroll-padding-top: calc(4.5rem - 1px);
}

#mainNav {
  min-height: 3.5rem;
  background-color: #fff;
}
#mainNav .navbar-toggler {
  font-size: 80%;
  padding: 0.75rem;
  color: #726966;
  border: 1px solid #726966;
}
#mainNav .navbar-toggler:focus {
  outline: none;
}
#mainNav .navbar-brand {
  color: #000;
  font-weight: 700;
  padding: 0.9rem 0;
}
#mainNav .navbar-nav .nav-item:hover {
  color: fade(#fff, 80%);
  outline: none;
  background-color: transparent;
}
#mainNav .navbar-nav .nav-item:active, #mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}
@media (min-width: 992px) {
  #mainNav {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
  }
  #mainNav .navbar-brand {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.5);
  }
  #mainNav .nav-link {
    font-weight: 800;
    font-size: large;
    transition: none;
    padding: 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.5);
  }
  #mainNav .nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
  }
  #mainNav .nav-link:active {
    color: #fff;
  }
  #mainNav.navbar-shrink {
    background-color: #fff;
  }
  #mainNav.navbar-shrink .navbar-brand {
    color: #000;
  }
  #mainNav.navbar-shrink .nav-link {
    color: #000;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 0.25rem solid transparent;
  }
  #mainNav.navbar-shrink .nav-link:hover {
    color: #726966;
  }
  #mainNav.navbar-shrink .nav-link:active {
    color: #467370;
  }
  #mainNav.navbar-shrink .nav-link.active {
    color: #726966;
    outline: none;
    border-bottom: 0.25rem solid #726966;
    transition: all 0.3s ease-in-out 0s;
  }
} 

.btn {
  box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
  font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 80%;
  letter-spacing: 0.10rem;
  border: 0;
  color: #000 !important;
  background-color: #aaaaaa !important;
  border-color: #2e2d2d !important;

}

.btn:hover {
  color: var(--greener) !important;
}

.active {
  background-color:  var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}

@media (min-width: 601px) {
  .masthead {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 35rem;
    padding: 15rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 75%, #000 100%), url("../assets/img/bg-masthead.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }

  .masthead h1, .masthead .h1 {
    font-family: "Poppins", sans-serif;
    font-size: 4rem !important;
    line-height: 1;
    font-weight: 700;
    color: #fff;        
  }
}

@media (max-width: 600px) {
  .masthead {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 35rem;
    padding: 10rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 75%, #000 100%), url("../assets/img/bg-masthead-sm.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }

  .masthead h1, .masthead .h1 {
    padding-top: 250px;
    font-family: "Poppins", sans-serif;
    font-size: 3rem !important;
    line-height: 1;
    font-weight: 600;
    color: #fff;          
  }
}

@media (min-width: 768px) {
  .masthead h1, .masthead .h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (min-width: 992px) {
  .masthead {
    height: 100vh;
    padding: 0;
  }
  .masthead h1, .masthead .h1 {
    font-size: 6.5rem;
    line-height: 6.5rem;
    letter-spacing: 0.8rem;
  }
  .masthead h2, .masthead .h2 {
    max-width: 30rem;
    font-size: 1.25rem;
  }
}

.masthead .social-links {
  padding-top: 5rem;
}

.masthead .social-links a {
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.masthead .social-links a:hover {
  background: var(--green);
}


/*--------------------------------------------------------------
# start About
--------------------------------------------------------------*/

.about {
  padding-top: 5rem;
  background: linear-gradient(to bottom, #000 0%, rgba(13, 12, 12, 0.9) 100%);
  min-height: 50rem;
}
.about p {
  margin-bottom: 5rem;
}

.about-me {
  height: calc(100vh - 220px);
}


/*--------------------------------------------------------------
# end About
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# start Music
--------------------------------------------------------------*/


/* Player */

.music {
  background: rgba(13, 12, 12, 0.9);
  padding-top: 5rem;
  min-height: 40rem;
}


.music #playBtn {
  font-size: 5em; 
  color: #aaaaaa;

}

.music #playBtn:hover {
  transition:color 200ms ease-in-out;
  -webkit-transition:color 200ms ease-in-out;
  -moz-transition:color 200ms ease-in-out;
  color: var(--green);/*#776f69;*/
}

.music #pauseBtn {
  display: none;
  font-size: 5em; 
  color: var(--green);/*#776f69;*/
}

.music #prevBtn {
  font-size: 4em; 
  color: #aaaaaa;
}

.music #prevBtn:hover {
  transition:color 200ms ease-in-out;
  -webkit-transition:color 200ms ease-in-out;
  -moz-transition:color 200ms ease-in-out;
  color: var(--green);/*#776f69;*/
}

.music #nextBtn {
  font-size: 4em; 
  color: #aaaaaa;
}

.music #nextBtn:hover {
  transition:color 200ms ease-in-out;
  -webkit-transition:color 200ms ease-in-out;
  -moz-transition:color 200ms ease-in-out;
  color: var(--green);/*#776f69;*/
}

.music #volumeBtn {
  font-size: 2em;
  color: #aaaaaa;
}

.music #volumeBtn:hover {
  color: var(--green);/*#776f69;*/
}

.music #muteBtn {
  display: none;
  font-size: 2em;
  color: #aaaaaa;
}

.music #muteBtn:hover {
  color: var(--green);/*#776f69;*/
}

.music #songDuration {
  padding: 0.75rem;
}

.music #musicList {
  overflow: scroll; 
  height: calc(100vh - 370px);
  margin-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.list-group-item.active,
.list-group-item.active:hover {
  background-color: /*#18d26e*/  var(--green) !important;
  border-color: #b3b2b2 !important;
  color: #ffffff !important;
}

.list-group-item,
.list-group-item:hover {
  background-color: #aaaaaa !important;
  border-color: #8d8d8d !important;
  color: #000000 !important;
}

/* Range Slider style*/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  height: 6px;
  background: #aaaaaa;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 15px;
  width: 15px;
  background-color: var(--green);
  border-radius: 50%;
  border: none;
  transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: var(--green);
  border-radius: 50%;
  border: none;
  transition: .2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(114, 105, 102, .1)
}
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(114, 105, 102, .2)
}
input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(114, 105, 102, .2)
}

/* Hover, active & focus Thumb: Firfox */

input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 0 0 10px rgba(114, 105, 102, .1)
}
input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(114, 105, 102, .2)
}
input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(114, 105, 102, .2)    
}

.audioNoPulse {
  display: none;
}

.audioPulse {
  display: block;
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}


/*--------------------------------------------------------------
# end Music
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# start Concerts
--------------------------------------------------------------*/

.concerts {
  background: rgba(13, 12, 12, 0.9);
  padding-top: 5rem;
  min-height: 45rem;
}

.concerts-me {
  height: calc(100vh - 145px);
}

.concerts .icon-box {
  text-align: center;
  background: rgba(204, 204, 204, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.concerts .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--green); /*#18d26e;*/
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.concerts .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.concerts .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.concerts .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.concerts .icon-box h4 a {
  color: #fff;
}

.concerts .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.concerts .icon-box:hover {
  background: var(--green); /*#18d26e;*/
  border-color: var(--green); /*#18d26e;*/
}

.concerts .icon-box:hover .icon {
  background: #fff;
}

.concerts .icon-box:hover .icon i {
  color: var(--green); /*#18d26e;*/
}

.concerts .icon-box:hover .icon::before {
  background: var(--green-hover); /*#35e888;*/
}

.concerts .icon-box:hover h4 a,
.concerts .icon-box:hover p {
  color: #fff;
}


.concerts #eventList {
  overflow: scroll; 
  height: calc(100vh - 380px);
  margin-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}


ul.event-list-view, ul.single-event-view {
	list-style: none !important;
	margin: 1.5em 0 2em 0;
	padding: 0;
}

li.event {
	clear: both;
	margin: 0 0.5em 1.5em 0.5em;
	zoom: 1; /* Fix for IE 6+7 */
}

.event-date {
	float: left;
	margin: 0 1em 0.3em 0;
}

.event-list .startdate, .event-list .enddate {
	text-align: center;
	width: 3.2em;
	border-radius: 5px;
	background-color: rgb(230,230,230);
}

.event-list .startdate {
	float: left;
}

.event-list .enddate {
	margin-left: 3.8em;
}

.event-weekday {
	font-size: 0.8em;
	text-transform: uppercase;
}

.event-day {
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: -0.2em;
}

.event-month {
	text-transform: uppercase;
	font-size: 1.0em;
	line-height: 1em;
	padding: 0.4em 0;
}

.event-year {
	font-size: 0.8em;
	line-height: 0.8em;
	letter-spacing: 0.1em;
	padding-bottom: 0.3em;
}

.event-info {
	display: block !important;
}

.event-link:hover {
  color:  var(--greener);
}

.event-link {
  color: var(--green);
  text-decoration: underline;
}

.multi-day {
	margin: 0 0 0 7.5em;
}

.single-day {
	margin: 0 0 0 3.8em;
}

.event-title h3 {
	clear: none;
	margin: 0 !important;
	padding: 0;
}

.event-time {
	font-weight: bold;
	padding-right: 0.8em;
}

.event-cat {
	font-size: 0.95em;
}

.event-content {
	font-size: 0.8em;
}

.event-no-content {
	font-size: 0.8em;
    padding: 20px;
}

.startdate, .event-list .enddate {
    text-align: center;
    width: 3.2em;
    border-radius: 5px;
    background-color: rgb(230,230,230);
}



/*--------------------------------------------------------------
# start Contact
--------------------------------------------------------------*/
.contact {
  background: rgba(13, 12, 12, 0.9);
  padding-top: 5rem;
  min-height: 55rem;
}

.contact .info-box {
  color: #444444;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: var(--green); /*#18d26e;*/
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #fff;
  line-height: 24px;
  font-size: 16px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: var(--green); /*#18d26e;*/
}
/*--------------------------------------------------------------
# end Contact
--------------------------------------------------------------*/
