@charset "UTF-8";

:root {
  --accent: #ef4035;
  --accent-dark: #c81b10;
  --ink: #222;
  --soft: #f8f9fa;
}

html,
body {
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

a {
  color: var(--accent);
  overflow-wrap: anywhere;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Candara", "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

hr {
  max-width: 100px;
  height: 2px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

hr.colored {
  border-color: var(--accent);
}

@media (min-width: 768px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  hr {
    max-width: 150px;
  }
}

.footer,
.masthead {
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}

section.page-section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  section.page-section {
    padding: 75px 0;
  }
}

#mainNav {
  background-color: var(--ink);
}

#mainNav .navbar-brand {
  color: white;
  font-family: "Candara", "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 44px;
  text-transform: uppercase;
}

#mainNav .navbar-toggler {
  padding: 15px;
  color: white;
  font-size: 14px;
}

#mainNav .navbar-toggler:focus,
#mainNav .navbar-toggler:hover {
  color: var(--ink);
  background-color: white;
}

#mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link {
  padding-top: 15px;
  padding-bottom: 15px;
  color: white;
}

#mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link:focus,
#mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link:hover {
  color: rgba(255, 255, 255, 0.55);
}

#mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link.active {
  color: var(--accent);
}

@media (min-width: 992px) {
  #mainNav {
    padding: 30px 0;
    background-color: transparent;
    transition: padding 0.3s ease, background-color 0.3s ease;
  }

  #mainNav.navbar-shrink {
    padding: 5px 0;
    background-color: var(--ink);
  }

  #mainNav .navbar-brand {
    font-size: 36px;
    line-height: 50px;
  }

  #mainNav .navbar-collapse .navbar-nav > .nav-item {
    margin-right: 5px;
  }

  #mainNav .navbar-collapse .navbar-nav > .nav-item:last-child {
    margin-right: 0;
  }

  #mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link {
    padding: 15px;
  }

  #mainNav .navbar-collapse .navbar-nav > .nav-item > .nav-link.active {
    color: var(--accent);
    border-radius: 5px;
    background-color: white;
  }
}

header.masthead {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  background: var(--ink) url("../img/roland/hero.jpg") center center / cover no-repeat;
}

header.masthead a {
  color: rgba(255, 255, 255, 0.7);
}

header.masthead a:hover,
header.masthead a:focus {
  color: white;
}

header.masthead .scroll-down {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

header.masthead .scroll-down .btn {
  width: 50px;
  height: 50px;
  padding: 0;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 30px;
  line-height: 50px;
}

header.masthead .scroll-down .btn:hover,
header.masthead .scroll-down .btn:focus {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

@media (min-width: 992px) {
  header.masthead {
    height: 100vh;
    min-height: 700px;
    padding-top: 0;
    padding-bottom: 0;
    background-attachment: fixed;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  header.masthead {
    background-attachment: scroll;
  }
}

.ticket-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.ticket-cta h3 {
  margin: 0;
}

.shows-list p {
  margin-bottom: 0.75rem;
}

.video-stack .embed-responsive + .embed-responsive {
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-link {
  display: block;
  overflow: hidden;
  background-color: var(--ink);
}

.gallery-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-link:hover img,
.gallery-link:focus img {
  opacity: 0.9;
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }
}

footer.footer {
  padding: 50px 0 20px;
  color: white;
  background: var(--ink) url("../img/roland/footer.jpg") center center / cover no-repeat;
}

@media (min-width: 1024px) {
  footer.footer {
    background-attachment: fixed;
  }
}

footer.footer a,
footer.footer a:hover,
footer.footer a:focus {
  color: white;
}

footer.footer p {
  font-size: 22px;
}

footer.footer .footer-contact-details {
  margin: 75px 0;
}

footer.footer .footer-social {
  margin-bottom: 75px;
}

footer.footer .copyright {
  font-size: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.btn {
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.site-lightbox.is-open {
  display: flex;
}

.site-lightbox img {
  max-width: min(100%, 1400px);
  max-height: 90vh;
  object-fit: contain;
}

.site-lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 28px;
  line-height: 40px;
}

body.press-page {
  min-height: 100vh;
  margin-top: 20px;
  color: white;
  background: #333 url("../img/roland/hero.jpg") center center / cover no-repeat;
  background-attachment: fixed;
}

.press-page .container {
  max-width: 1140px;
}

.press-box {
  margin: 10px;
  padding: 10px;
  color: white;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}

.press-bio-photo {
  min-height: 400px;
  height: 95%;
}

.press-bio-photo-inner {
  min-height: 400px;
  height: 100%;
  border-radius: 10px;
  background: url("../img/roland/bio.jpg") center center / cover no-repeat;
}

.press-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em;
  font-size: 2em;
}

.press-social a {
  margin: 20px 0;
}

.press-page a {
  color: white;
  font-weight: bold;
}

.press-page a:hover,
.press-page a:focus {
  color: #aaa;
  text-decoration: underline;
}

.contact-email {
  font-size: 20px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  body.press-page {
    background-attachment: scroll;
  }

  .press-social {
    flex-direction: row;
    justify-content: center;
  }

  .press-social a {
    margin: 0 14px;
  }
}

@media (max-width: 575px) {
  #mainNav .navbar-brand {
    font-size: 26px;
  }

  p {
    font-size: 16px;
  }

  .contact-email {
    font-size: 18px;
  }
}
