:root {
	--djBlack: rgb(26, 26, 26);
	--djBlackA60: rgba(26, 26, 26, .6);
	--djBlackA30: rgba(26, 26, 26, .3);
	--djWhite:  rgb(241, 241, 241);
	--djWhiteA60:  rgba(241, 241, 241, 0.6);
	--djWhiteA30:  rgba(241, 241, 241, .3);
	color: var(--djWhite);

  --maxWidth: 1080px
}

@font-face { font-family: 'Bauhaus 93'; src: url('../fonts/BAUHS93.ttf'); font-display: swap;}
@font-face { font-family: 'Segoe UI'; src: url('../fonts/segoeui.ttf'); font-display: swap;}
@font-face { font-family: 'Segoe UI Black'; src: url('../fonts/seguibl.ttf'); font-display: swap;}

*{
  font-family: 'Segoe UI', 'Arial', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--djBlack);
}

h1 {
  font-family: 'Bauhaus 93', Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2rem, 7vw + 3vh, 6rem);
  text-align: center;
  word-wrap: break-word;
	text-transform: uppercase;
	line-height: 15vw;
  max-width: 90%;
  margin: 0 auto;
}

h2 {
  font-family: 'Bauhaus 93', Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2rem, 4vw + 3vh, 6rem);
  text-align: center;
  padding: 30px 0;
  text-transform: uppercase;
}

h3 {
  font-family: 'Bauhaus 93', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h4 {
  font-family: 'Segoe UI Black', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-size: 1.25rem;
  margin: 20px auto;
  padding: 20px;
  width: fit-content;
  background-color: var(--djBlackA60);
}

a {
  color: var(--djWhite);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* ***************** */
/* Global background */
/* ***************** */
.divSticky {
  position: relative;
  flex: 1;
}

.divContent{
	position: sticky;
	top: 60px;
	background-color: var(--djBlack);
	background-image: url("../media/B_800.webp");
  height: calc(100vh - 60px);
	width: 100%;
	background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
	margin-bottom: -80vh;
}

@media only screen and (min-width: 800px) {
	.divContent {
		background-image: url("../media/B_1600.webp");
		background-size: auto 150%;
	}
}

@media only screen and (min-width: 1600px) {
	.divContent {
		background-image: url("../media/B_3200.webp");
	}
}

.divSection {
  position: inherit;
	width: 80%;
  max-width: var(--maxWidth);
	margin: 100px auto;
	padding-bottom: 30px;
	background-color: var(--djBlackA60);
  font-size: 1.2rem;
	line-height: 2rem;
  border-radius: 20px;
}

/* ******* */
/* Buttons */
/* ******* */
.btn {
  display: block;
  margin: 1.5rem auto;
  width: fit-content;
  max-width: 20rem;
  color: var(--djWhite);
  background-color: var(--djBlack);
  border: 1px solid var(--djWhite);
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5rem 2rem;
  text-decoration: none;
  cursor: pointer;
}

/* ***** */
/* Forms */
/* ***** */
#secContactForm {
  scroll-margin-top: 100px;
}

.frm {
  width: 100%;
  text-align: center;
}

.frm input[type="text"], .frm input[type="email"], .frm textarea {
  width: 90%;
  margin: 10px auto;
  padding: 12px 10px;
  outline: none;
  color: var(--djWhite);
  background-color: transparent;
  border: none;
  border-radius: 10px;
  border-bottom: 2px solid var(--djWhite);
  font-size: 1.2rem;
}

 .frm textarea {
  height: 15vh;
 }

.frm input[type="text"]:focus, .frm input[type="email"]:focus, .frm textarea:focus{
  background-color: var(--djWhite);
  color: var(--djBlack);
  border-radius: 10px;
}

.divFilterBot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 10px;
  margin: 10px auto;
}

.divSecQ {
  display: block;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s ease;
  margin: 10px auto;
  text-align: center;
}

.divSecQ.visible {
  max-height: 15vh;
  pointer-events: auto;
}

.pSecQ #txtSum {
  width: 3rem;
  padding: 0 5px;
  text-align: center;
}

#divFAct {
  display: none;
}

.nrNoArrows {
  -moz-appearance: textfield; /* Firefox */
}

.nrNoArrows::-webkit-inner-spin-button,
.nrNoArrows::-webkit-outer-spin-button {
  -webkit-appearance: none;   /* Chrome, Edge, Safari */
  margin: 0;
}

.divClose {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5%;
  right: 5%;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid var(--djWhiteA60);
  background-color: var(--djBlackA60);
  transition: border-radius .5s ease;
  cursor: pointer;
}

.divClose:hover {
  border-radius: 25%;
}

/* ***** */
/* Lists */
/* ***** */
.djList {
  padding-left: 1.2em;
  text-align: left;
  list-style-type: disc;
  list-style-position: outside;
}

.djList li {
  margin: 10px auto;
}

/* **** */
/* Gigs */
/* **** */
.secGigs {
	margin-top: 50px;
}

.divGigs {
	width: 100%;
	padding: 50px 5% 20px 5%;
 }

@media only screen and (min-width: 800px) {
	.divGigs {
    padding: 50px 15% 20px 15%;
	}
}

 .grdGigs {
  display: grid;
  gap: 20px;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
}

.artGig {
  background: var(--djBlackA30);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.artGig:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.divGigDate, .divGigTime {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--accentColor, #ffcc00);
}

.divGigDate {
  margin-right: .25rem;
}

.divGigTitle {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.gigLocation {
  font-size: 0.95rem;
  opacity: 0.8;
}