/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #fffb00;
  --secondary-color:              #FFFFFF;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #fffb00;

  --body-font-family:             'Outfit', sans-serif;


  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

html {
	box-sizing: border-box;
}

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

body {
  background-color: #000;
  font-family: var(--body-font-family); 
  letter-spacing: 0.075em;
  line-height: 1.65em;
}

main {
	background-color: #000;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

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

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
  background: #000;
}

.custom-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
	object-fit: contain;
	/*max-width: 1160px;*/
    margin: 0 auto;
  transform: translate(-50%, -50%);
  background: src('../images/SA9_RAJ006_cover_1920px.jpg'); /* Fallback while loading */

}

@media (prefers-reduced-motion: reduce) {
  #bg-video { display: none; }
  .page { background: src('../images/SA9_RAJ006_cover_1920px.jpg'); }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

#navbarNav {
	height: 8vh;
}

.navbar {
  background: #000;
  z-index: 9;
  max-width: 1160px;
  margin: 0 auto;
  /*height: 8vh;*/
  max-height: 63px;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 10px;
  padding: 10px 20px;
  background: #000000;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}
 
.navbar-nav .nav-link:hover {
  color: #fffb00;
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
  max-width: 1160px;
  margin: 0 auto;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}




/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}



/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  padding-top: 30px;
}

.site-footer-top {
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
  text-align: center;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.icon-with-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px; /* Adjust this value for desired spacing */
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  float: left;
}

.social-icon-link {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  font-size: var(--copyright-font-size);
  display: inline-block;
  margin-right: 10px;
  width: 330px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
  float: left;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--dark-color);
}

.social-icon-link span {
  float: left;
  margin-left: 1em;
  margin-right: 0.5em;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


.social-icon-link .white {
	color: #fff;
}

.social-icon-link:hover .white {
	color: #F8CB2E;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

@media screen and (min-width: 3599px) {

	body, input, select, textarea {
		font-size: 26pt;
	}

}


@media screen and (max-width: 1680px) {

	body, input, select, textarea {
		font-size: 13pt;
	}

}

@media screen and (max-width: 1280px) {

	body, input, select, textarea {
		font-size: 12pt;
	}

}

@media screen and (max-width: 991px) {
  /*h1 {
    font-size: 62px;
  }*/

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
  .custom-video {
  	object-fit: scale-down;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .custom-video {
  	object-fit: scale-down;
  }
}

@media screen and (max-width: 736px) {

	body, input, select, textarea {
		font-size: 11pt;
		letter-spacing: 0.0375em;
	}

}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  .custom-video {
  	object-fit: scale-down;
  }
}

/* About */

body.about {
	padding-top: 11px;
	line-height: inherit;
}


#banner {
  background-image: url("../media/selects_30_v2.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
}

/* iOS override */
@supports (-webkit-touch-callout: none) {
  #banner {
    background-image: url("../media/selects_30v2_ios.jpg");
    background-attachment: scroll;   /* disables fixed */
    background-position: center bottom;
    background-size: cover;          /* keeps proper scaling */
  }
}


#banner .inner {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	height: 92vh;
}

		
/* Cindy */

.row {
	width: 100%;
}

section {
	padding-bottom: 1.2em;
}

.navbar-nav li {
	background: #000;
}

.btn {
	color: #fff;
	--bs-btn-color: #ffffff;
	--bs-btn-hover-color: #ffffff;
	--bs-btn-active-color: #ffffff;
}

.buy-music {
	font-size: 2.6em;
	font-weight: bold;
	margin-left: auto;
}

.buy-music a {
	color: #fffb00;
	border: 2px solid #fffb00;
	border-radius: 20px;
	padding: 20px;
}

.buy-music a:hover {
	color: #fff;
	border-color: #fff;
}

.social-share {
	padding-bottom: 2em;
}

@media screen and (max-width: 1280px) {
	.row  {
		--bs-gutter-x: 1.0rem;
		--bs-gutter-y: -3rem;
	}
	
	.buy-music {
		font-size: 2.0em;
	}

	.buy-music a {
		padding: 15px;
	}
	
}

@media screen and (max-width: 991px) {
	
	.buy-music {
		font-size: 1.5em;
	}

	.buy-music a {
		padding: 10px;
	}
	
}
#page-wrapper {
    margin-top: 63px;
}

.fixednav {
	position: fixed;
	top: 0;
	width: 100%;
    background: black;
    z-index: 11;
    margin: 0 auto;
}

.alive {
  background: rgb(0, 0, 0, 0.14);
}

.alive h1 {
    font-size: 10vw; 
    font-family: "Impact", "Anton", sans-serif;
    color: #fffb00;
    text-align: center;
}

.capsleft {
    margin-left: 3em;
	font-size: 3em;
	margin-right: 1em;
}

.capsright {
    margin-right: 3em;;
	font-size: 3em;
	text-align: right;
	padding-bottom: 70px;
	margin-left: 1em;
}

@media screen and (max-width: 991px) {
	.capsleft, .capsright {
		font-size: 1.5rem;
	}
	.tanbg {
		/*background: rgb(246, 227, 197, 0.5);*/
	}
}


@media screen and (max-width: 991px) and (min-height: 767px) {
	.capsleft, .capsright {
		font-size: 3.0rem;
	}
}

@media screen and (max-width: 811px) {
	.capsleft {
		margin-left: 2em;
	}
	
	.capsright {
		margin-right: 2em;
	}
}

@media screen and (max-width: 480px)  {
	.capsleft, .capsright {
		font-size: 2.0rem;
		margin-left: 1em;
		margin-right: 1em;
	}
}


#whoweare {
	background-image: url("../media/selects_55.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
}

#whoweare .inner {
	width: 90%;
	margin: auto;
	padding: 2em;
	height: 92vh;
	color: black;
}

p.whoweare {
	font-size: 2.6em;
	color: black;
}

@media screen and (max-width: 1680px) and (max-height: 1024px) {
	p.whoweare {
		font-size: 2.0em;
	}
}

@media screen and (max-width: 1280px) {
	p.whoweare {
		font-size: 2.0em;
	}
}

@media screen and (max-width: 991px) {
	p.whoweare {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 991px) and (min-height: 767px) {
	p.whoweare {
		font-size: 2.0em;
	}
}

@media screen and (max-width: 861px) and (max-height: 420px) {
	p.whoweare {
		font-size: 1.0em;
	}
}

@media screen and (max-width: 480px) {
	p.whoweare {
		font-size: 1.2em;
	}
	
	#whoweare .inner {
		width: 95%;
		margin: auto;
		padding: 0em;
	}
}

#musicians {
	background-image: url("../media/selects_45v4.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	height: inherit;
	line-height: 1.6em;
	display: flex;	
	flex-direction: column;
	align-items: ;
}

#musicians .inner {
	width: 85%;
	margin: 1em auto;
	padding-top: 2em;
	color: black;
	display: block;
}

#musicians h2 {
	margin-bottom: 1.2em;
	margin-top: 1em;
}
.musicianfiddlers1, .musicianguitar {
	font-size: 2em;
	color: black;
	width: 25%;
	max-width: 25%;
	float: left;
	margin-right: 5%;
	margin-left: 7%;
}
.musicianfiddlers2, .musicianpiano {
	font-size: 2em;
	color: black;
	width: 25%;
	max-width: 25%;
	float: left;
	margin-right: 5%;
}
.musicianpercussion {
	font-size: 2em;
	color: black;
	width: 30%;
	max-width: 30%;
	float: left;
	margin-right: 0;
}

@media screen and (max-width: 991px) {
	#musicians {
		line-height: 1.2em;
	}
	
	.musicianfiddlers1, .musicianfiddlers2, .musicianguitar, .musicianpiano, .musicianpercussion {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 991px) and (min-height: 480px) {
	#musicians .inner {
		width: 95%;
		margin: 0em auto;
	}
	
	.musicianfiddlers1, .musicianfiddlers2, .musicianguitar, .musicianpiano, .musicianpercussion {
		width: 90%;
		max-width: 90%;
		float: left;
		margin-left: auto;
		margin-right: auto;
		font-size: 1.6em;
	}
	
	.musicianfiddlers2  {
		margin-top: -1em;
	}
	
	.musicianpiano, .musicianpercussion {
		margin-top: 1em;
	}
}




#reviews {
	background-image: url("../media/selects_40v3.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	height: inherit;
	line-height: 1.2em;
	display: flex;	
	flex-direction: column;
}

#reviews h2 {
	margin-bottom: 1.2em;
	margin-top: 1em;
}

#reviews p {
	font-size: 2em;
	line-height: 1.65em;
	color: #000;
}

#reviews .inner {
	width: 80%;
	margin: 3em auto;
	color: black;
	display: block;
}

@media screen and (min-width: 991px) and (min-height: 767px) {
	#reviews p {
		font-size: 2em;
		line-height: 1.2em;
	}
}

@media screen and (max-width: 991px) {
	
	#reviews p {
		font-size: 1.6em;
		line-height: 1.4em;
	}
	
	#reviews .inner {
		width: 90%;
		margin: 1em auto;
	}
}



#spotlight {
	background-image: url("../media/cover_03_back.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	height: 100vh;
	line-height: 1.6em;
	display: flex;	
	flex-direction: column;
	align-items: ;
}

#spotlight .inner {
	margin: 1em auto;
	color: black;
	display: block;
}


#spotlight .alive {
  background: rgb(0, 0, 0, 0.14);
}

#spotlight .alive h2 {
    font-size: 13vw; 
    font-family: "Impact", "Anton", sans-serif;
    color: #fffb00;
    text-align: center;
	line-height: 1.0em;
}

#spotlight .alive h6 {
    font-size: 	6vw; 
    font-family: "Impact", "Anton", sans-serif;
    color: #fffb00;
    text-align: center;
	line-height: 1.0em;
}

.padbottom {
	margin-bottom: 1em;
}

@media screen (min-width: 1365px) and (min-height: 1024px) {
	#spotlight {
		min-height: 50vh;
	}
}

@media screen and (max-width: 1199px)  {
	#spotlight {
		background-size: 100%;
	}
	
	#spotlight .alive h2 {
	    font-size: 11vw; 
	}
	
	#spotlight .alive h6 {
	    font-size: 	4vw;
	} 
}	

@media screen and (max-width: 1199px) and (max-height: 801px) {
	#spotlight {
		max-height: 92vh;
	}
	
	#spotlight .alive h2 {
	    font-size: 9vw; 
	}
	
	#spotlight .alive h6 {
	    font-size: 	4vw;
	} 
}

@media screen and (min-width: 768px) and (min-height: 992px) {
	#spotlight {
		background-size: 100%;
		max-height: 76vh;
	}
	
	#spotlight .alive h2 {
	    font-size: 11vw; 
	}
	
	#spotlight .alive h6 {
	    font-size: 	4vw;
	} 
}


/* iPad Mini */
@media screen and (max-width: 1025px) and (min-height: 480px) { 
	#spotlight {
		max-height: 76vh !important;
	}
	
	#spotlight .alive h2 {
	    font-size: 14vw; 
	}
	
	#spotlight .alive h6 {
	    font-size: 	8vw;
	} 
}

/* Kindle Fire */
@media screen and (max-width: 801px) and (min-height: 759px) { 
	#spotlight {
		max-height: 50vh !important;
	}
}

@media screen and (min-width: 992px) {
  .justify-content-lg-end {
    justify-content: left !important;
  }
}

@media screen and (max-width: 575px) {
	#spotlight {
		max-height: 50vh !important;
	}
	
	#spotlight .alive h2 {
	    font-size: 18vw;
	  }
}


#videos {
	background: #000;
	padding-top: 0;
}

#videos .inner {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
}

#videos p {
	color: white;
	font-size: 2em;
	margin: 2em 3em;
}

.alivevids {
  background: rgb(0,0,0, 0.14);
}

.alivevids h1 {
    font-size: 7vw; 
    font-family: "Impact", "Anton", sans-serif;
    color: #fffb00;
    text-align: center;
}

.videoiframe {
	margin: 3em auto 1em;
	text-align: center;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	max-width: 70%;
}

.videoiframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoname {
	color: #fff;
	text-align: center;
	font-size: 1.6em;
	padding-bottom: 3em;
	margin: 0 1em;
}

@media screen and (max-width: 481px) {
	#videos p {
		margin-left: 1em;
		margin-right: 1em;
	}
}

#contactsa9 {
	background-image: url("../media/selects_4v5.jpg");
	background-attachment: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
}

#contactsa9 .inner {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	text-align: center;
	margin: auto;
	color: #000;
}

#contactsa9 .inner h2 {
	padding-top: 1.4em;
	color: #000;
}

#contactsa9 .inner p, #contactsa9 .inner a {
	color: #000;
	font-size: 28px;
}

#contactsa9 .inner a.underline {
	text-decoration: underline;
}

.deco {
	margin: 3em auto 1em;
}

#contactsa9 .alivevids {
  background: #000;
}

@media screen and (max-width: 767px) {
	#contactsa9 .inner p, #contactsa9 .inner a {
		font-size: 22px;
	}
}

#music {
	background-image: url("../media/selects_57v3.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	height: inherit;
	line-height: 1.2em;
	display: flex;	
	flex-direction: column;
}

#music .inner {
	color: black;
	display: block;
	padding-bottom: 1em;
}

#music .alivevids {
  background: #000;
  margin-bottom: 3em;
}

#music h3 {
	font-size: 2em;
	margin-bottom: 1.2em;
	margin-left: 2em;
}

#music p {
	font-size: 1.6em;
	line-height: 1.5em;
	color: #000;
	margin-left: 3em;
	margin-right: 2em;
}


.albumreview {
	position: relative;
	float: right;
	margin: 1em 1em 1em 1em;
	width: 465px;
	max-width: 90%;
	height: auto;
	line-height: 1.2em;
	display: flex;	
	flex-direction: column;
}

.albumreview a {
	align-items: bottom;
	font-size: 1.2em;
}


.albumreview img {
    width: 100%;
    height: 100%;
    display: block;
}

.albumreview a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1em;
	font-size: 1.5em;
	font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
}

.albumreview a:hover {
	color: #fffb00;
	text-decoration: underline;
}

#albums {
	background-image: url("../media/print_87v3.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	line-height: 1.2em;
	display: flex;	
	flex-direction: column;
	height: inherit;
}

#albums .inner {
	color: black;
	display: block;
	padding-bottom: 1em;
	max-width: 80%;
	margin: auto;
	
}

#albums h3 {
	font-size: 2em;
	margin-bottom: 1.2em;
	margin-top: 1.2em;
}

#albums p {
	font-size: 1.6em;
	line-height: 1.5em;
	color: #000;
	margin-left: 3em;
	margin-right: 2em;
}



.albumreview a {
	align-items: bottom;
	font-size: 1.2em;
}

.image-grid {
    /* Establishes the grid container */
    display: grid;
    /* Sets the gap between grid items */
    gap: 2em;
    /* On wide screens, 3 columns of equal size */
    grid-template-columns: repeat(3, 1fr);
	margin-bottom: 1.2em;
}

.albumgrid {
		position: relative;
		display: flex;	
		flex-direction: column;
}

.image-grid img, .albumgrid img {
    /* Ensures images fill their grid cells */
    width: 100%;
    height: auto;
    /* Maintains aspect ratio and prevents distortion */
    display: block;
}

.albumgrid a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1em;
	font-size: 1.5em;
	font-weight: bold;
    color: #fffb00;
    padding: 5px 10px;
    text-decoration: none;
	border: 2px solid #fffb00;
	border-radius: 10px;
	padding: 10px;
	background-color: rgb(0,0,0,0.5);
}

.albumgrid a:hover {
	color: #fff;
	border-color: #fff;
	background-color: #000;
}

@media screen and (max-width: 1024px) {
	.albumgrid a {
		font-size: 1em;
	}
}

@media screen and (max-width: 991px) {
	.albumreview {
		max-width: 50%;
	}
}

@media screen and (max-width: 481px) {
	.albumreview {
		max-width: 90%;
	}
	
	#albums p {
		margin-left: 0;
		margin-right: 0;
	}
	
	#music p {
		margin-left: 1em;
		margin-right: 1em;
	}
}

/* Media Query for tablets and smaller screens 
  (e.g., up to 768px wide)
*/
@media (max-width: 768px) {
    .image-grid {
        /* Changes to 2 columns on medium screens */
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media Query for mobile phones 
  (e.g., up to 480px wide)
*/
@media (max-width: 480px) {
    .image-grid {
        /* Changes to 1 column on small screens */
        grid-template-columns: repeat(1, 1fr);
    }
}
