@font-face {
  font-family: humanist;
  src: url("/fonts/CoreHumanistSans-Regular.otf") format("woff"), url("path/GraublauWebBold.ttf") format("truetype");
}

/* GLOBAL STYLES ***************************************/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: rgb(3, 3, 3);
  color: lightgray;
  font: 300 16px/24px montserrat;
}

h1,
h2,
h3,
h4 {
  font-family: humanist;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 300;
  color: #fff;
}

p {
  margin-bottom: 1rem;
}

a:link,
a:visited,
a:focus {
  display: inline-block;
  text-decoration-color: #65b8ff;
  color: #fff;
  transition: color .6s, text-decoration-color .6s;
}

a:hover,
a:active {
  color: #ff458d;
  text-decoration-color: #ff458d;
}

li {
  list-style: none;
}

/* TOP PAGE GUEST COMEDIAN + TITLE CONTENT STYLES ***************************************/

.top-page-header {
  display: block;
}

.top-title-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  /* image is number on the right */
  align-items: stretch;
  /* default behavior */
  height: auto;
  /* allow it to expand with content */
}

.top-title-content {
  padding-top: 2rem;
  padding-left: 4rem;
}

.guest-comedian-top-banner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
  box-sizing: border-box;
}

.guest-comedian-top-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 60vw;
  object-fit: contain;
}

.centered-header {
  text-align: center;
  margin: 2rem auto 4rem auto;
  width: 100%;
}

.centered-header .title {
  margin: 0 auto;
  display: inline-block; /* Optional but helpful for precise control */
}

/* comedy@tokyo brick image and grad to bottom */
.top-page-title-box {
  position: relative;
  background: linear-gradient(rgba(3, 3, 3, 0), rgba(3, 3, 3, 1)), url("/images/black_brick_tile.png");
}

/* comedy@tokyo neon title styles */
.title span {
  position: relative;
}

.title-top {
  font-size: 4rem;
  line-height: .8;
}

.title span,
.title span::before,
.title span::after {
  padding: 0;
}

.red-glow,
.white-glow,
.blue-glow {
  position: relative;
}

.red-glow {
  text-shadow: 0 0 4px #e33c58;
  color: #ff458d;
}

.white-glow {
  text-shadow: 0 0 4px #fff;
  color: #fff;
}

.blue-glow {
  text-shadow: 0 0 4px #09a1f5;
  color: #65b8ff;
}

.blue-glow::after,
.red-glow::after,
.white-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(60px);
  opacity: .4;
}

.red-glow::after {
  background: #ff639b;
}

.white-glow::after {
  background: #fff;
}

.blue-glow::after {
  background: #18f1f0;
}

/* homepage title content styles */

.presents {
  margin-top: 1rem;
  font-size: 30px;
  text-transform: uppercase;
}

.guest-title {
  font: bold 2.4rem/3rem 'Montserrat', sans-serif;
  letter-spacing: -3px;
  margin: .25rem 0 0 0;
  text-transform: uppercase;
}

.title-content p {
  max-width: 500px;
}

/* Past Guests Styles ***************************************/

.past-guests-intro {
  margin-bottom: 5rem;
}

/* NAV STYLES ***************************************/
nav {
  height: 20vh;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

nav ul {
  height: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

nav ul li a:link {
  height: 100%;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  transition: color .6s, padding-top .3s;
  border-bottom: none;
  padding-top: 10px;
}


nav ul li a:link:hover {
  padding-top: 40px;
  color: #ff639b;
}

nav ul li:nth-child(1) {
  background: radial-gradient(circle, rgba(3, 3, 3, 0), rgba(3, 3, 3, 1) 25%), url("/images/menu_about.jpg") no-repeat center 20%;
  background-size: cover;
}

nav ul li:nth-child(2) {
  background: radial-gradient(circle, rgba(3, 3, 3, 0), rgba(3, 3, 3, 1) 25%), url("/images/menu_shows.jpg") no-repeat center;
  background-size: cover;
}

nav ul li:nth-child(3) {
  background: radial-gradient(circle, rgba(3, 3, 3, 0), rgba(3, 3, 3, 1) 25%), url("/images/menu_contact.jpg") no-repeat center;
  background-size: contain;
}

/* About section styles  ***************************************/
.homepage-about {
  margin: 100px 0;
}

.about-container {
  width: 80%;
  margin: 100px auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.shows-about-image,
.events-about-image {
  height: 300px;
  width: 45%;
}

.shows-about-image {
  background:
    /*radial-gradient(circle, rgba(3,3,3, 0), rgba(3,3,3, 1) 50%),*/
    url("/images/CAT_special_guests_montage.jpg") no-repeat center;
  background-size: contain;
}

.events-about-image {
  background: radial-gradient(circle, rgba(3, 3, 3, 0), rgba(3, 3, 3, 1) 50%), url("https://images.unsplash.com/photo-1554167725-89bf8ab26514?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80") no-repeat center;
  background-size: cover;
}

.events-about-content,
.shows-about-content {
  width: 50%;
}

.shows-about-content h3,
.events-about-content h3 {
  font-size: 24px;
}

.shows-about-content p,
.events-about-content p {
  margin: 10px 0 30px 0;
}

/* Homepage Show Section Styles  ***************************************/
.homepage-shows {
  margin: 200px 0 100px 0;
}

.homepage-shows-container {
  margin: 100px auto 0 auto;
}

.homepage-shows-content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}

.homepage-show-content {
  width: 40%;
  padding: 0 0 0 20px;
}

.homepage-show-content p {
  margin: 10px 0 20px 0;
}

.homepage-show-image {
  height: 250px;
  width: 250px;
  border-radius: 50%;
}

.homepage-announce-list-form {
  margin: 2rem auto;
  max-width: 500px;
}

.content-right {
  text-align: right;
  padding: 0 20px 0 0;
}

.homepage-show-image {
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
}

.homepage-show-image::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 46%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 45%, rgb(0, 0, 0) 72%);
}

.homepage-show-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
}

/* SHOW PAGE STYLES *******************************************/

.show-page-header {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  /* allows wrapping on smaller screens */
}

/* Image container */
.show-page-top-graphic {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Image itself */
.show-page-top-graphic img {
  width: 100%;
  height: auto;
  /* maintain aspect ratio */
  display: block;
}

/* Text content box */
.show-page-title-box {
  width: 50%;
  padding: 2rem;
  box-sizing: border-box;
}


/* Showpage title */
.showpage-title-container {
  grid-template-columns: 1fr;
  height: 300px;
  margin-top: 100px;
  background: linear-gradient(rgba(3, 3, 3, 1) 10%, rgba(3, 3, 3, 0), rgba(3, 3, 3, 1)), url("/images/black_brick_tile.png");
  align-items: center;
  text-align: center;
}

.shows-title h2 {
  font-size: 40px;
  text-align: center;
}

.shows-title p {
  margin: 1rem auto;
  text-align: center;
  max-width: 385px;
}

.slogan {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-spacing: .01rem;
  font-weight: bold;
  text-transform: capitalize;
}

.bio-container,
.show-checkout-container {
  padding: 1rem;
  box-sizing: border-box;
}

.bio-content,
.show-info-box {
  max-width: 700px;
  margin: 0 auto;
}

/* show details and peatix widget */
.show-checkout-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 50px;
}

.show-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.show-info-content h3 {
  font-size: 30px;
}

.show-info-content ul {
  margin: 10px 0 20px 0;
}

.payment-box {
  margin: 0 auto;
}

.payment-content iframe {
  width: 400px;
  height: 355px;
}


.title-content ul {
  margin-bottom: 1rem;
}


.snform input {
  border: 1px solid #fff;
  padding: 12px 15px !important;
  margin: 5px 0 20px 0;
  font-size: 16px;
}

textarea {
  padding: 12px 15px !important;
  font-size: 16px;
}

.btn-default {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* FOOTER STYLES *******************************************/
footer {
  width: 100%;
  background: linear-gradient(rgba(3, 3, 3, 1), rgba(3, 3, 3, 0)), url("/images/black_brick_tile.png");
  padding: 8rem 0 1rem 0;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

fieldset,
input,
textarea,
button {
  width: 100%;
  height: 100%;
  border: none;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 30px 120px 30px;
  grid-gap: 10px;
  margin: 10px 0;
}

fieldset,
input,
textarea,
button {
  font-family: montserrat;
  background: none;
  color: #fff;
}

.contact-name,
.contact-email {
  border-bottom: 2px solid #65b8ff;
}

button {
  border: 1px solid #fff;
}

.contact-text {
  grid-column: 1/3;
  border: 1px solid #fff;
}

.contact-button {
  grid-column: 2/3;
}

.copyright {}

.copyright p {
  text-align: center;
}


#show-announcement-list-a {
  border: none;
  text-decoration: underline;
  text-decoration-color: #65b8ff;
}

/* MEDIA QUERIES **********************************************************/

@media only screen and (max-width: 1200px) {
  .title-container {
    height: 60vh;
  }

  h1.title {
    max-width: 320px;
  }
}



@media only screen and (max-width: 992px) {
  .title-container {
    height: 45vh;
  }
}

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

  /* HOMEPAGE ABOUT SECTION ************************************************/
  .about-container {
    width: 90%;
  }

  .shows-about-image,
  .events-about-image {
    height: 400px;
    width: 45%;
  }

  .events-about-content,
  .shows-about-content {
    width: 45%;
  }

  .shows-about-content p,
  .events-about-content p {
    margin: 10px 0 20px 0;
  }

}

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

  /* HOMEPAGE TITLE SECTION ********************************************************/
  /*.title-container {
    grid-template-columns: 1fr;
    position: relative;
    height: 900px;
  }*/

  .showpage-title-container {
    height: 300px;
  }

  .guest-comedian-banner {
    /* background: linear-gradient(rgba(3,3,3, 0) 90%, rgba(3,3,3, 1)), url("/images/dave_performs_01.jpg") no-repeat center top; */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 400px;
  }

  .guest-comedian-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(130deg, rgba(3, 3, 3, 0) 70%, rgba(3, 3, 3, 1));
  }

  .title-content-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
  }

  /* comedy@tokyo neon title styles */
  .title span {
    font-size: 50px;
  }

  /* homepage title content styles */
  .title-content {
    margin-top: 45px;
    margin-left: 25px;
  }

  .title-content p {
    max-width: 400px;
  }

  .title-content a {
    margin-top: 10px;
  }

  /* comedian pic and bio styles for home and shows page */
  .homepage-shows-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .homepage-shows-content-box:nth-child(2) {
    margin: 100px 0;
    flex-direction: column-reverse;
  }

  .homepage-show-content {
    width: 90%;
    padding: 0 20px;
  }

  /* FOOTER STYLES *******************************************/
  footer {
    width: 100%;
    background: linear-gradient(rgba(3, 3, 3, 1), rgba(3, 3, 3, 0)), url("/images/black_brick_tile.png");
    padding: 8rem 0 1rem 0;
  }

  h1.title {
    max-width: 220px;
  }

  /* Custom STYLES *******************************************/
  .guest-page .homepage-shows-content-box {
    position: relative;
  }

  .guest-page .homepage-show-image {
    position: absolute;
    top: 69px;
  }

  .guest-page .homepage-show-content p:first-of-type {
    margin-top: 300px;
  }

  .guest-page .past_johan_glans_2016 {
    top: 90px;
  }
}


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

  .guest-comedian-banner-generic {
    height: 400px;
  }

  .title-content-container {

    padding-bottom: 70px;
    padding-left: 0;
  }

  .shows-about-content {
    width: 100%;
    text-align: left;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .homepage-show-content {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .guest-page .homepage-show-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-shows-container {
    width: 90%;
  }

}

@media only screen and (max-width: 640px) {
  .title-container {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .guest-comedian-banner-generic {
    height: 520px;
  }

  h1.title {
    max-width: 100%;
  }

  .shows-about-content a {
    border: none;
    text-decoration: underline;
    text-decoration-color: #65b8ff;
    display: inline;
  }
}

@media only screen and (max-width: 560px) {
  .form-inline {
    width: 100% !important;
    margin: 0 auto;

  }

  .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-group fieldset:first-child {
    max-width: 305px;
  }

  .ct-title-box {
    padding: 0 15px;
  }

  #contact_submit {
    height: 50px !important;
  }

  #textareaCounter,
  .copyright {
    font-size: 13px;
  }
}


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

  /* comedy@tokyo neon title styles */
  .title span {
    font-size: 55px;
    position: relative;
  }

  .blue-glow::after,
  .red-glow::after,
  .white-glow::after {
    filter: blur(30px);
  }

  /* homepage title content styles */

  .title-content-container {
    padding-left: 10px;
  }

  .presents {
    font-size: 26px;
    text-transform: uppercase;
  }

  .guest-comedian-banner {
    width: 100%;
  }

  .title-content p {
    width: 90%;
  }

  /* show page styles */
  .showpage-title-container {
    grid-template-columns: 1fr;
    height: 200px;
    background: linear-gradient(rgba(3, 3, 3, 1), rgba(3, 3, 3, 0), rgba(3, 3, 3, 1)), url("/images/black_brick_tile.png");
    align-items: center;
    text-align: center;
  }



  .shows-title h2 {
    font-size: 26px;
  }

  .shows-title p {
    width: 90%;
  }

  .payment-content iframe {
    width: 100%;
    height: 355px;
  }

  /* homepage about section */
  .homepage-about {
    margin: 50px 0;
  }

  .about-container {
    width: 90%;
  }

  .shows-about {
    display: flex;
    flex-direction: column-reverse;
  }

  .shows-about-image,
  .events-about-image {
    height: 500px;
  }

  .shows-about-content h3,
  .events-about-content h3 {
    font-size: 20px;
  }

  .shows-about-content p,
  .events-about-content p {
    margin: 10px 0 20px 0;
  }

  /* show details and peatix widget */

  .show-info-content h3 {
    font-size: 26px;
  }

  .payment-box {
    width: 90%;
  }


}


/* Newsletter subscription notices */

.subscription_notice {
  margin: 4rem;
}

.subscription_notice h1 {
  margin-bottom: 2rem;
}

#msg_fail {
  width: 100%;
  color: #721c24;
  background-color: #f8d7da;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  border-color: #f5c6cb;
}

.success {
  width: 100%;
  color: #fff;
  background-color: #395e3b;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #fff;
  border-radius: 0.25rem;
  border-color: #c3e6cb;
}

input:valid,
textarea:valid {
  border-color: #679b6a;
}

.valid:hover {
  background-color: #679b6a !important;
}

.valid:active {
  background-color: #395e3b !important;
}

#show-announcement-list-a:hover {
  text-decoration-color: #ff458d !important;
  transition: all .6s linear;
}








@media only screen and (max-width: 490px) {
  .guest-comedian-banner-generic {
    height: 350px;
  }

  .shows-about-image {
    height: 250px;
    width: auto;
  }

  nav ul {
    padding-right: 20px;
  }

  h1.title {
    max-width: 250px;
  }

  .homepage-shows-container,
  .about-container {
    margin: 2rem auto 0 auto;
  }

  .homepage-shows {
    margin-bottom: 100px;
    margin-top: 0;
  }

  footer {
    padding-bottom: 1rem;
    padding-top: 0;
  }

}

@media only screen and (max-width: 370px) {
  h1.title {
    max-width: 240px;
  }

  .homepage-announce-list-form a:link,
  .homepage-announce-list-form a:visited,
  .homepage-announce-list-form a:focus {
    border: none;
    text-decoration: underline;
    text-decoration-color: #65b8ff;
    display: inline;
  }

  .title-content {
    margin-left: 0px;
  }
}