@charset "UTF-8";

/* RESETS */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
}
body {
  height: 100vh;
  background: #000;
  font-family: arial;
  line-height: 1.5;
}
/* END RESETS */

@font-face {
  font-family: FatFrank;
  src: url(assets/fonts/FatFrank-Regular.woff2);
}

h1 {
  font-family: FatFrank;
  font-weight: 400;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}
h3 {
  font-family: FatFrank;
  font-size: 1.5rem;
  padding-bottom: 0;
  line-height: 1;
}

#logo {
  min-height: 100vh;
  background: url(https://www.knyghtryder.com/assets/img/SVG/logo-stacked-white.svg) center no-repeat scroll #0a0a0a;
  background-size: contain;
  border: 3rem solid #0a0a0a;
}
@media screen and (min-width: 40em) {
  #logo {
    background: url(https://www.knyghtryder.com/assets/img/SVG/logo-white.svg) center no-repeat scroll #0a0a0a;
  }
}

.dark {
  color: #fefefe;
  background: center center no-repeat scroll #0a0a0a;
}
.light {
  background: center center no-repeat scroll #fefefe;
  color: #0a0a0a;
}
.box {
  padding: 3rem;
}

.gigs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(102,102,102,.5);
  max-width: 400px;
  transition: all .25s ease-in-out;
}
.card:hover {
  transform: scale(1.02);
}
.card-title {
  padding: 1rem;
  font-weight: 900;
  font-size: 1.75rem;
  border-radius: 18px 18px 0 0;
}
.card-image {
  object-fit: cover;
  overflow: clip;
  width: 100%;
  aspect-ratio: 2;
  min-height: 235px;
}
.card-info-container {
  display: grid;
  place-items: center;
  padding: 1rem;
  flex-grow: 1;
}
.card-date {
  width: 4.5em;
  height: 4.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-radius: 50%;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  margin-top: -2.25em;
  position: relative;
  z-index: 2;
}
.card-month {
  font-size: .85rem;
  margin: .4em;
  line-height: 0;
  color: #fff;
  font-weight: 700;
}
.card-day-number {
  font-size: 2rem;
  font-weight: 700;
  color: red;
  line-height: 1.2em;
}
.card-day {
  color: #0a0a0a;
  font-size: 1em;
  font-weight: 700;
}
.card-address > a {
  color: red;
  text-decoration: none;
}
.card-address > a:hover {
  text-decoration: underline;
}
.details {
  text-align: center;
  font-size: 1em;
  max-width: 23ch;
}

.card-button {
  display: inline-block;
  background-color: #0a0a0a;
  color: #fefefe;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 18px;
  padding: .75rem 1rem;
  margin: 1rem;
  text-decoration: none;
  transition: all .25s ease-in-out;
}
.card-button:hover {
  background-color: red;
}

/* Forms and Buttons */
form {
  display: grid;
  justify-content: center;
  gap: 1rem;
}
input, select {
  border-radius: 4.5px;
  padding: .5rem;
}
.form-area {
  margin-bottom: 2rem;
}
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: #fff;
	color: #000;
	border: 1px solid #ccc;
	border-radius: 4.5px;
	font-size: 1rem;
	margin-top: 5px;
	margin-bottom: 20px;
	resize: vertical; /* user can stretch it if needed */
	box-sizing: border-box;
  }
  

/* Uniform input and select styling inside form-group */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 5px;
  margin-bottom: 20px;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4.5px;
  font-size: 1rem;
  height: 48px;
  box-sizing: border-box;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill=\"black\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 10l5 5 5-5z\"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.button, .getQuote {
  background-color: #0a0a0a;
  color: #fefefe;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 18px;
  border: none;
}
.getQuote {
  background: red !important;
}

/* Utility */
.text-center {
  text-align: center;
}
.no-bottom {
  padding-bottom: 0;
}
.copyright {
  font-size: .75rem;
  text-align: center;
  padding-bottom: 1em;
}
.simple-subscription-form {
  padding: 2rem 0;
  border-radius: 3px;
}
.hire-us {
  padding: 3rem;
}
.hire-us p {
  color: #fff;
}

/* Social Buttons */
.rounded-social-buttons {
  text-align: center;
}
.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 2em;
  color: #fefefe;
  border-radius: 1.6875rem;
  background: #0a0a0a;
  transition: all .5s ease;
  margin: 0 .25rem 2rem .25rem;
  text-decoration: none;
}
.rounded-social-buttons .social-button:hover {
  transform: rotate(360deg);
  background: #fefefe;
  color: #0a0a0a;
  border-color: #0a0a0a;
}

/* Hidden elements */
.iso-date, .performer, .seo-address {
  display: none;
}

/* Bouncing Arrow Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.arrow {
  position: absolute;
  bottom: 1em;
  left: 50%;
  margin-left: -1em;
  width: 2em;
  height: 2em;
  background-image: url(data:image/svg+xml;base64,...); /* keeping your SVG here */
  background-size: contain;
}
.bounce {
  animation: bounce 2s infinite;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .form-section {
    grid-template-columns: 1fr;
  }
}
