/* Define CSS variables */
:root {
   /* Heading sizes: based on a 16px base font-size */
   --h1-size: 3.75rem; /* 60px  */
   --h2-size: 3rem; /* 48px  */
   --h3-size: 1.8rem; /* 36px  */
   --h4-size: 1.875rem; /* 30px  */
   --h5-size: 1.5625rem;
   /* Body and button font size */
   --body-size: 1.25rem; /* 20px  */
}

/* Set default font-family for the body */
body {
   font-family: "Montserrat", sans-serif;
   font-size: var(--body-size);
   font-weight: 400;
}

/* Set heading sizes based on CSS variables */
h1 {
   font-size: var(--h1-size);
}

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

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

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

/* Button font size and style: Montserrat Bold, 20px */
button,
.button,
input[type="button"],
input[type="submit"] {
   font-family: "Montserrat", sans-serif;
   font-size: var(--body-size);
   font-weight: 700;
}

.next-show-tickets a {
    border: #7e5c55 2px solid;
    border-bottom: 4px solid #7e5c55;
    color: #f59294;
    background: #fbf5ec;
}
/* Montserrat Regular */
@font-face {
   font-family: "Montserrat";
   src: url("/wp-content/themes/budapestbar/webfonts/Montserrat-Regular.ttf") format("truetype");
   font-weight: 400;
   font-style: normal;
}

/* Montserrat Bold */
@font-face {
   font-family: "Montserrat";
   src: url("/wp-content/themes/budapestbar/webfonts/Montserrat-Bold.ttf") format("truetype");
   font-weight: 700;
   font-style: normal;
}

/* Delta Gothic One */
@font-face {
   font-family: "Dela Gothic One";
   src: url("/wp-content/themes/budapestbar/webfonts/DelaGothicOne-Regular.ttf") format("truetype");
   font-weight: normal;
   font-style: normal;
}

/* Default body font: Montserrat Regular/Bold (normal 400, bold automatically 700) */
body {
   font-family: "Montserrat", sans-serif;
   font-weight: 400;
   margin: 0;
}

/* Buttons: Montserrat Bold */
button,
.button,
input[type="button"],
input[type="submit"] {
   font-family: "Montserrat", sans-serif;
   font-weight: 700;
}

/* Headings: Delta Gothic One */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Dela Gothic One", sans-serif;
}

#logo {
   text-align: center;
}
ul#social-nav li {
   list-style: none;
   float: left;
   font-size: 26px;
   margin-left: 1rem;
}
a.button {
   display: block;
   background: #fffaf1;
   border-radius: 5px;
   padding: .5rem 1.5rem;
   margin: 0 0 1em;
   text-align: center;
}

a.button.tickets {
    max-width: 55%;
}

a.button {
    border: #7e5c55 2px solid;
    border-bottom: 4px solid #7e5c55;
}

/* --- POPUP --- */
/* 1) Thumbnail link (the band member circular images) */
.band-members .member > a.thumb-link {
  display: block;
  width: 100%;
  padding-top: 100%;      /* 1:1 ratio */
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.band-members .member > a.thumb-link img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2) Overlay (the dark background) */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0s linear 0.2s;
  z-index: 999;
}

/* 3) When the popup is active (#popup-xx hash), show the overlay */
.overlay:target {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

/* 4) The popup window itself */
.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  background: #fff;
  width: 80vw;
  max-width: 900px;
  max-height: 80vh;
  padding: 3rem;
  border-radius: 20px;
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  z-index: 1000;
  border: 5px solid #ff2a57;
}

/* 5) When overlay:target, also show the popup */
.overlay:target .popup {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


/* 6) Close button styles */
.overlay .overlay-close,
.popup .close {
  position: absolute;
  text-decoration: none;
  font-size: 2.5rem;
  line-height: 1;
  color: #ff2a57;
  z-index: 1001;
}
.popup .close {
  font-weight: bold;
}

/* 7) Ensure popup links/buttons donâ€™t inherit the thumb-link padding */
.overlay a,
.popup a {
  display: inline-block;
  width: auto;
  padding: 0;
  position: static;
  overflow: visible;
}

/* Tablet / small desktop */
@media (max-width: 768px) {
  .popup {
    /* bumped up relative to original */
    width: 90vw;
    max-width: none;
    max-height: 85vh;
    padding: 2.5rem;
    border-radius: 16px;
  }
  .popup h3 {
    font-size: 1.25rem;
  }
  .popup .close {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .popup {
    width: 95vw;
    max-width: none;
    max-height: 90vh;
    padding: 1.5rem;
    border-radius: 12px;
  }
  .popup h3 {
    font-size: 1.1rem;
  }
  .popup .close {
    font-size: 1.75rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}
/* --- ADVERT --- */

div#advert {
   height: 400px;
}
.advert-image {
   height: 400px;
   background-size: cover;
   background-position: center;
}

/* --- ADVERT END ---*/

/* FRONT-PAGE MAIN RULES  */

html {
   box-sizing: border-box;
   -ms-overflow-style: scrollbar;
}
*,
*::before,
*::after {
   box-sizing: inherit;
}

section {
   position: relative;
   width: 100%;
}


.clip-path {
   position: relative;
   z-index: 11;
   width: 100%;
}

.clip-path::before {
   content: "";
   position: absolute;
   top: -180px;
   left: 0;
   right: 0;
   bottom: -60px;
   background-color: #ffffff; /* TelÃƒÂ­tett, fehÃƒÂ©r hÃƒÂ¡ttÃƒÂ©r */
   z-index: 0;
   clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
}

/* A belsÃ…â€˜ tartalom Ã¢â‚¬â€ legyen vÃƒÂ­zszintes, nem ÃƒÂ¶rÃƒÂ¶kÃƒÂ¶lje a clip-path hatÃƒÂ¡st */
.next-show > * {
   position: relative;
   z-index: 2;
   transform: none;
}

.next-show.row h2 {
   text-transform: uppercase;
}

section#koncertek {
   position: relative;
   z-index: 13;
   padding-bottom: 7rem;
}

.koncertek-content {
   display: flex;
   flex-wrap: wrap;
   margin-top: .5em;
}

.background-img {
   position: relative;
}
/* PSEUDO ELEMENTS */
#koncertek h1 {
   position: relative;
   display: inline-block;
   text-transform: uppercase;
   font-weight: 900;
   margin-left: .7em;
   margin-bottom: 1em;
   color: #7e5c55;
}

#koncertek h1::after {
   content: "";
   display: block;
   width: 110%;
   height: 1em;
   background: url("/wp-content/themes/budapestbar/images/section2_line.svg") no-repeat center;
   background-size: contain;
   position: absolute;
   top: 1em;
   right: 0;
}

#hirlevel h1::after {
   content: "";
   display: block;
   width: 110%;
   height: 1em;
   background: url(/wp-content/themes/budapestbar/images/section3_line.svg) no-repeat center;
   background-size: contain;
   position: absolute;
   right: 0;
}

.background-img {
   background-image: url("/wp-content/themes/budapestbar/images/section2_image.png");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   width: 100%;
}

/* PSEUDO ELEMENTS END */

.next-show {
   background: #f59294;
   border-radius: 20px;
   color: #fffaf1;
   border: 5px solid #fffaf1;
   box-shadow: 1px 5px 4px rgb(0 0 0 / 26%);
   padding-right: 15px;
   padding-left: 15px;
}

.upper-content {
   display: grid;
   grid-template-columns: 1fr;
   gap: 1rem; 
}

@media (min-width: 992px) {
   .upper-content {
      grid-template-columns: repeat(2, 1fr);
   }
}

.next-show-title {
   background-color: #fffaf1;
   width: fit-content;
   margin-left: -15px;
}

.next-show-title h2 {
   color: #f59294;
   margin-left: 15px;
   margin-right: 15px;
   text-transform: uppercase;
}

.next-show-venue p {
   text-transform: uppercase;
}

.next-show-tickets {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.next-show-tickets a.button {
   display: inline-block;
   padding: 8px 20px;
   white-space: nowrap;
}

.next-show-artist p .artists-label {
   background-color: #ff2b57;
   text-transform: uppercase;
   padding: 0.2em 0.2em;
   font-weight: 800;
   letter-spacing: 2px;
   display: inline-block;
}

.next-show-artist h3 {
   position: relative;
   display: inline-block;
}

.next-show-artist h3::after {
   content: "";
   display: block;
   width: 25%;
   height: 5px;
   background-color: #f5cd4e;
   margin-top: 0.5em;
}

/* BUTTONS, Anchors */

a.button.tickets,
button.subscribe,
#mc_embed_signup input[type="submit"].subscribe {
   background: #ff2a57;
   color: #fff;
}

a.button,
button,
button.subscribe,
#mc_embed_signup input[type="submit"].subscribe {
   text-decoration: none;
   border-radius: 30px;
}

.next-show-artist h3 {
   text-transform: uppercase;
   max-width: 60%;
   margin-top: 0;
	margin-right: 20px;
}

/* --- FORTHCOMING SHOWS GRID CONTAINER --- */

div#shows-list{
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   grid-auto-rows: 1fr;
   margin-top: 5em;
}

.forthcoming-grid h3 {
   width: fit-content;
   white-space: normal;
   overflow-wrap: break-word;
   word-wrap: break-word;
   hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
}

@media (max-width: 1024px) {
   div#shows-list {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 0rem;
   }
}
@media (max-width: 812px) {
   div#shows-list {
      grid-template-columns: 1fr;
   }
}

.forthcoming-grid p {
   color: #7e5c55;
}


.forthcoming-shows-grid-container .forthcoming-grid {
   border-top: 20px solid #c7c098;
   padding-top: 30px;
   margin-top: 8px; 
   border-radius: 30px;
   box-shadow: 1px 5px 4px rgb(0 0 0 / 26%);
}


.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) {
   border-top-color: #f59294;
}


.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) {
   border-top-color: #a4d5d6;
}

.forthcoming-grid {
   background-color: #fffaf1;
   padding: 20px;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.datetime-container {
   display: flex;
   align-items: center;
   margin-left: -20px;
}

.date-block {
   background-color: #c7c098;
   padding: 10px;
   text-align: left;
   font-size: 2rem;
   font-weight: 600;
   color: #fffaf1;
}

.time-block {
   color: #c7c098;
   text-align: right;
   padding: 10px;
}

.time-block {
   position: relative;
   padding-left: 10px;
   text-align: right;
   padding: 10px;
   color: #c7c098;
   margin-left: 15px;
   font-size: 2rem;
   font-weight: 600;
   padding-left: 1.5rem;
}

.time-block::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 5px;
   height: 105%;
   background-color: #c7c098;
}

.forthcoming-grid h3 {
   text-transform: uppercase;
   color: #c7c098;
   margin-bottom: 0;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .date-block {
   background-color: #f59294;
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .time-block {
   color: #f59294;
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .time-block::before {
   background-color: #f59294;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) h3 {
   color: #f59294;
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) h3 {
   color: #a4d5d6;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .date-block {
   background-color: #a4d5d6;
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .time-block {
   color: #a4d5d6;
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .time-block::before {
   background-color: #a4d5d6;
}

.forthcoming-shows-grid-container .forthcoming-grid .artists-label {
   text-transform: uppercase;
   color: #c7c098;
   font-weight: 800;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .artists-label {
   color: #f59294;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .artists-label {
   color: #a4d5d6;
}

.forthcoming-shows-grid-container .forthcoming-grid .venue {
   background-color: #c7c098;
   padding: 5px 10px;
   display: inline-block;
   max-width: fit-content;
   color: #fffaf1;
   font-weight: 600;
   margin-top: 0;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .venue {
   background-color: #f59294;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .venue {
   background-color: #a4d5d6;
}


.forthcoming-shows-grid-container .forthcoming-grid .button-group {
   display: flex;

   align-items: center;
   margin-top: 10px;
   justify-content: space-between;
}


.forthcoming-shows-grid-container .forthcoming-grid .button-group .tickets {
   flex: 1 0 auto; 
   margin-right: 8px; 
}

.forthcoming-shows-grid-container .forthcoming-grid .button-group a.button.facebook-logo {
   flex: 0 0 auto;
   font-size: 1.25em;
}

.forthcoming-shows-grid-container .forthcoming-grid .button-group a.button.facebook-logo {
   color: #c7c098;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .button-group a.button.facebook-logo {
   color: #f59294;
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .button-group a.button.facebook-logo {
   color: #a4d5d6;
}

a.button.facebook-logo {
   background: none;
}


.forthcoming-shows-grid-container .forthcoming-grid .facebook-logo i {
  display: none;
}

.forthcoming-shows-grid-container .forthcoming-grid .facebook-logo {
  display: inline-block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
}


.forthcoming-shows-grid-container .forthcoming-grid:nth-child(1)
  .facebook-logo {
  background-image: url('/wp-content/themes/budapestbar/images/section2_FB_olive.svg');
}


.forthcoming-shows-grid-container .forthcoming-grid:nth-child(2)
  .facebook-logo {
  background-image: url('/wp-content/themes/budapestbar/images/section2_FB_pink.svg');
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-child(3)
  .facebook-logo {
  background-image: url('/wp-content/themes/budapestbar/images/section2_FB_blue.svg');
}

/* === color variations === */

:root {
  --color-1: #c7c098; /* olive */
  --color-2: #f59294; /* pink */
  --color-3: #a4d5d6; /* turquoise */
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2),
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5),
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) {
  border-top-color: var(--color-2);
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3),
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6),
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) {
  border-top-color: var(--color-3);
}

/* additional colors */

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .button-group a.button.facebook-logo,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .button-group a.button.facebook-logo,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .button-group a.button.facebook-logo {
  color: var(--color-2);
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) h3,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .artists-label,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .button-group a.button.facebook-logo,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .button-group a.button.facebook-logo,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .button-group a.button.facebook-logo {
  color: var(--color-3);
}

/* Dateblock */

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .date-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .date-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .date-block {
  background-color: var(--color-2);
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .date-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .date-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .date-block {
  background-color: var(--color-3);
}

/* Timeblock */

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .time-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .time-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .time-block {
  color: var(--color-2);
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .time-block::before,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .time-block::before,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .time-block::before {
  background-color: var(--color-2);
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .time-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .time-block,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .time-block {
  color: var(--color-3);
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .time-block::before,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .time-block::before,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .time-block::before {
  background-color: var(--color-3);
}

/* Venue background */

.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(2) .venue,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(5) .venue,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(8) .venue {
  background-color: var(--color-2);
}
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(3) .venue,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(6) .venue,
.forthcoming-shows-grid-container .forthcoming-grid:nth-of-type(9) .venue {
  background-color: var(--color-3);
}

/* Facebook logo */

.forthcoming-shows-grid-container .forthcoming-grid:nth-child(1),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(4),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(7) {
  .facebook-logo {
    background-image: url('/wp-content/themes/budapestbar/images/section2_FB_olive.svg');
  }
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-child(2),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(5),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(8) {
  .facebook-logo {
    background-image: url('/wp-content/themes/budapestbar/images/section2_FB_pink.svg');
  }
}

.forthcoming-shows-grid-container .forthcoming-grid:nth-child(3),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(6),
.forthcoming-shows-grid-container .forthcoming-grid:nth-child(9) {
  .facebook-logo {
    background-image: url('/wp-content/themes/budapestbar/images/section2_FB_blue.svg');
  }
}

.load-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8rem;
}

/* NEWSLETTER */

#hirlevel {
   position: relative;
   background-image: url("/wp-content/themes/budapestbar/images/section3_background.jpg");
   background-repeat: no-repeat;
   background-position: center center;
   background-attachment: fixed;
   background-size: cover;
   min-height: 400px;
   display: flex;
   align-items: center;
}

#hirlevel .inner-content {
   position: relative;
   z-index: 1;
   margin-top: 5rem;
}

#hirlevel .inner-content h1 {
   position: relative;
   z-index: 1;
   width: fit-content;
   color: #fff;
   margin-left: .0em;
}


.newsletter-text {
   background: #fffaf1;
   padding: 1em 1em;
   color: #ff2a57;
   font-weight: 600;
   margin-top: 2rem;
   max-width: 80%;
}

/*** MAILCHIMP FORM ***/

#mc_embed_signup {
   /* max-width: 500px; */
   margin: 2rem 0;
}

#mc_embed_signup form,
#mc_embed_signup #mc_embed_signup_scroll {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   max-width: 90%;
}

#mc_embed_signup .mc-field-group {
   display: flex;
   flex-direction: column;
}

#mc_embed_signup label {
   margin-bottom: 0.5rem;
   font-weight: 600;
   color: #7e5c55;
}

#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
   width: 100%;
   box-sizing: border-box;
   padding: 0.75rem;
   border: 3px solid #21c8cb;
   border-radius: 30px;
   font-size: 1rem;
   box-shadow: 1px 5px 4px rgb(0 0 0 / 26%);
}

#mc_embed_signup input[type="submit"].subscribe {
   padding: .5rem 3rem;
   border: #7e5c55 2px solid;
   border-bottom: 4px solid #7e5c55;
   margin-bottom: 2rem;
   cursor: pointer;
}

#mc_embed_signup input[type="submit"].subscribe:hover, a.button.tickets:hover, button.subscribe:hover {
   background-color: #f59294;
   transition:.3s;
}

div#mc_embed_signup_scroll p {
    font-style: italic;
    font-size: .9em;
    font-weight: 100;
    color: #7e5c55;
    margin-bottom: 0;
}

div#mc_embed_signup_scroll a {
    color: #7e5c55;
}

@media (min-width: 768px) {
   #mc_embed_signup {
   }
   #mc_embed_signup form {
      gap: 1.5rem;
   }
}

.rightside-img.newsletter.col-md-6::before {
   content: "";
   background: url(/wp-content/themes/budapestbar/images/section3_image.png) center center / contain no-repeat;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
}

/* BIO Section */

section#bio {
   border-top: 40px #a4d5d6 solid;
   padding-top: 10em;
   padding-bottom: 10em;
}

#bio .band-members {
   position: relative;
   z-index: 15;
   background-color: #fff;
   border-radius: 1rem;
   padding: 5rem 8rem;
   margin: -4rem auto 0; 
   max-width: 1400px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   border: 3px solid #ff2a57;
}

#bio .inner-content.container {
   position: relative;
   z-index: 15;
   background-color: #ff2b57;
   border-radius: 1rem;
   padding: 8rem 3.5em;
   top: 0rem;
   width: auto;
}

#bio .inner-content .row {
   display: grid;
   grid-template-columns: 1fr;
   gap: 1rem;
}

@media (min-width: 992px) {
   #bio .inner-content .row {
      grid-template-columns: repeat(2, 1fr);
   }
}

#bio {
   position: relative;
   background: url("/wp-content/themes/budapestbar/images/section4_background.jpg");
   background-size: cover, auto;
   padding: 1rem 0;
}

#bio h2 {
   position: relative;
   width: fit-content;
}

.bio-upper.right > h2 {
   color: #fff;
}

.bio-upper.right {
   color: #fff;
   padding-bottom: 3rem;
}

.bio-upper.right p {
   padding-top:1em;
}

.bio-upper.right h2 {
   text-transform: uppercase;
}

.bio-upper.right h2::after {
   content: "";
   display: block;
   width: 110%;
   height: 1em;
   background: url("/wp-content/themes/budapestbar/images/section4_line.svg") no-repeat center;
   background-size: contain;
   position: absolute;
   right: .2rem;
}

.bio-upper.col-md-6 {
   position: relative;
   /* padding-bottom: 22rem; */
   padding-right: 5rem;
}

img.bio-left {
   width: 100%;
}

/* band members */
#bio .band-members .member {
   text-align: center;
   margin-bottom: 1.5rem;
}

#bio .band-members .member a {
   display: block;
   width: 100%;
   position: relative;
   border-radius: 50%;
   overflow: hidden;
}

#bio .band-members .member a img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   background: #fead7a;
}

#bio .inner-content {
  position: relative;
  padding-top: 25vw;            
  background-color: #ff2b57;
  border-radius: 1rem;
  overflow: visible;           
  margin-top:10rem
}

#bio .inner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 1400px;          
  aspect-ratio: 1600/300;      
  background: url("/wp-content/themes/budapestbar/images/section4_flowers.png") no-repeat center/contain;
  z-index: 1;
}

#bio .inner-content,
#bio .inner-content .row,
#bio .inner-content .bio-upper {
  z-index: 2;
  position: relative;
}

/* ---------- 1) Setting up the grid container ---------- */
.band-members .row {
   display: grid;
   /* on mobile: 1 item per row (you can choose 2 if you prefer) */
   grid-template-columns: 1fr;
   gap: 1rem; /* spacing between cells */
   justify-items: center; /* center-align content */
}

/* ---------- 6) Fixed image sizes in .member ---------- */
.band-members .member img {
   width: 150px; /* adjust as you like */
   height: 150px; /* same px value so it doesn't stretch */
   object-fit: cover; /* crop proportionally, donÃ¢â‚¬â„¢t distort */
   display: block; /* avoid leaving whitespace below */
   margin: 0 auto; /* center */
}

/* 1) The grid container: free-flow by default, but 6 columns from Ã¢â€°Â¥1535px */
.band-members .row {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap: 1.5rem; /* set this as you like */
   justify-content: center;
}

/* 2) Same box size for every .member, centered */
.band-members .member {
   width: 150px;
   text-align: center;
   margin: 0 auto;
}

.band-members .member img {
   width: 150px;
   height: 150px;
   object-fit: cover;
   border-radius: 50%;
   display: block;
   margin: 0 auto 0.5rem;
}

/* -------- base: grid container, centered -------- */
.band-members .row {
   display: grid;
   justify-content: center; 
   gap: 1.5rem;
}

#bio .band-members h2 {
   width: unset;
   text-align: center;
   margin-bottom: 8rem;
   color: #ff2b57;
}

#bio .band-members h2::before {
   content: "";
   display: block;
   width: 100%;
   height: 0.6em;
   background: url("/wp-content/themes/budapestbar/images/section4_line2.svg") no-repeat center;
   background-size: contain;
   position: absolute;
   top: 7rem;
}

#bio .band-members .row .member:nth-child(1) img {
  background-color: #A4D5D6;
}
#bio .band-members .row .member:nth-child(1) h3 {
  color: #A4D5D6;
}

#bio .band-members .row .member:nth-child(2) img {
  background-color: #FF2B57;
}
#bio .band-members .row .member:nth-child(2) h3 {
  color: #FF2B57;
}

#bio .band-members .row .member:nth-child(3) img {
  background-color: #FFAE7B;
}
#bio .band-members .row .member:nth-child(3) h3 {
  color: #FFAE7B;
}

#bio .band-members .row .member:nth-child(4) img {
  background-color: #C7C098;
}
#bio .band-members .row .member:nth-child(4) h3 {
  color: #C7C098;
}

#bio .band-members .row .member:nth-child(5) img {
  background-color: #F59294;
}
#bio .band-members .row .member:nth-child(5) h3 {
  color: #F59294;
}


#bio .band-members .row .member:nth-child(6) img {
  background-color: #A4D5D6;
}
#bio .band-members .row .member:nth-child(6) h3 {
  color: #A4D5D6;
}

#bio .band-members .row .member:nth-child(7) img {
  background-color: #FF2B57;
}
#bio .band-members .row .member:nth-child(7) h3 {
  color: #FF2B57;
}


#bio .band-members .row .member:nth-child(8) img {
  background-color: #FFAE7B;
}
#bio .band-members .row .member:nth-child(8) h3 {
  color: #FFAE7B;
}


#bio .band-members .row .member:nth-child(9) img {
  background-color: #C7C098;
}
#bio .band-members .row .member:nth-child(9) h3 {
  color: #C7C098;
}

#bio .band-members .row .member:nth-child(10) img {
  background-color: #F59294;
}
#bio .band-members .row .member:nth-child(10) h3 {
  color: #F59294;
}


#bio .band-members .row .member:nth-child(11) img {
  background-color: #A4D5D6;
}
#bio .band-members .row .member:nth-child(11) h3 {
  color: #A4D5D6;
}


#bio .band-members .row .member:nth-child(12) img {
  background-color: #FF2B57;
}
#bio .band-members .row .member:nth-child(12) h3 {
  color: #FF2B57;
}

#bio .band-members .row .member:nth-child(13) img {
  background-color: #FFAE7B;
}
#bio .band-members .row .member:nth-child(13) h3 {
  color: #FFAE7B;
}


#bio .band-members .row .member:nth-child(14) img {
  background-color: #C7C098;
}
#bio .band-members .row .member:nth-child(14) h3 {
  color: #C7C098;
}

#bio .band-members .row .member:nth-child(15) img {
  background-color: #F59294;
}
#bio .band-members .row .member:nth-child(15) h3 {
  color: #F59294
}


#bio .band-members .row .member:nth-child(16) img {
  background-color: #A4D5D6;
}
#bio .band-members .row .member:nth-child(16) h3 {
  color: #A4D5D6;
}

#bio .band-members .row .member:nth-child(17) img {
   background-color: #FF2B57; 
}
#bio .band-members .row .member:nth-child(17) h3 {
   color: #FF2B57; 
}

#bio .band-members .row .member:nth-child(18) img {
   background-color: #FFAE7B;
}
#bio .band-members .row .member:nth-child(18) h3 {
   color: #FFAE7B;
}

h3.band-member-h3 {
   font-size: 0.99em;
   width: 80%;
   margin: auto;
   margin-top: 2rem;
   margin-bottom: 2rem;
}

@media (max-width: 450px) {
   .band-members .member {
      width: 100px;
   }
}

/* promo part */

#promo.fullwidth {
   width: 100%;
   margin: 0;
   padding: 0;
}
#promo .row {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
}

#promo .left-side-promo-img {
   flex: 0 0 50%;
   max-width: 50%;
   position: relative;
   padding-right: 0;
   padding-left: 0;
}
#promo .left-side-promo-img .promo-image {
   background-size: cover;
   background-position: center center;
   width: 100%;
   height: 800px;
   object-fit: cover;
}

#promo .right-side-promo-text {
   flex: 0 0 50%;
   max-width: 50%;
   position: relative;
   background: url("/wp-content/themes/budapestbar/images/section5_right.jpg") no-repeat center center;
   background-size: cover;
   width: 100%;
   max-height: 800px;
}
#promo .right-side-promo-text .promo-text {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   padding: 2rem;
   color: #fff;
   text-align: center;
}
#promo .right-side-promo-text .promo-text h2 {
   margin: 0;
   font-size: 2.5em;
   line-height: 1.2;
   text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
   #promo .row {
      flex-direction: column;
   }
   #promo .left-side-promo-img,
   #promo .right-side-promo-text {
      flex: 0 0 100%;
      max-width: 100%;
   }
   #promo .left-side-promo-img .promo-image,
   #promo .right-side-promo-text {
      height: 400px;
      margin-top: -1em;
   }
   #promo .right-side-promo-text .promo-text {
      position: relative;
      transform: none;
      top: auto;
      left: auto;
      padding: 3.5rem;
   }
}

/* ---------------------------------------------------
   MUSIC section
--------------------------------------------------- */
#zene {
   padding: 70px 15px;
   z-index: 12;
}


/* Title + line + illustration */
#zene .music-title-container {
   position: relative;
   display: flex;
   align-items: center;
   margin-bottom: 50px;
   flex-wrap: wrap;
}
#zene .music-title-container h1 {
   font-weight: 700;
   text-transform: uppercase;
   margin: 0;
   position: relative;
   width: fit-content;
   flex: 1;
   padding-left: 1em;
   color: #7e5c55;
}
#zene .music-title-container h1::after {
   content: "";
   display: block;
   width: 110%;
   height: 1em;
   background: url("/wp-content/themes/budapestbar/images/section6_line.svg") no-repeat center;
   background-size: contain;
   position: absolute;
   left: -30px;
}
#zene .music-title-container .bio-left {
   height: auto;
   max-width: 60%;
}

/* Releases grid */
#zene .releases {
   display: flex;
   flex-wrap: wrap;
   margin: 0 -15px;
   color: #f59294;
}
#zene .release {
   padding: 0 15px;
   margin-bottom: 40px;
   text-align: center;
   width: 100%;
}
@media (min-width: 576px) {
   #zene .release {
      width: 50%;
   }
}
@media (min-width: 768px) {
   #zene .release {
      width: 33.3333%;
   }
}

/* Album art wrapper */
#zene .release img {
   display: inline-block;
   width: 100%;
   height: auto;
   border: 4px solid transparent;
   border-radius: 22px;
   box-sizing: border-box;
   margin-bottom: 15px;
}

/* Title / year */
#zene .release h3 {
   font-size: 1.125rem;
   margin: 0 0 5px;
   font-weight: 600;
   text-transform: uppercase;
   color: #7e5c55;
   margin-bottom: 0;
}
#zene .release p {
   font-size: 0.9rem;
   color: #7b5a53;
   margin: 0 0 12px;
}

#zene p.release-date {
    font-size: 1em;
    margin-top:0;
}

/* Icon links */
#zene .release a {
   margin: 0 6px;
   font-size: 1.4rem;
   display: inline-block;
}
#zene .release a i {
   transition: color 0.2s;
}

/* Accent colors via nth-child */
:root {
   --accent-red: #ff4b5c;
   --accent-teal: #00bfa5;
   --accent-orange: #ff9500;
}


#zene .release:nth-child(3n + 1) img {
   border-color: var(--accent-red);
}
#zene .release:nth-child(3n + 1) a i {
   color: var(--accent-red);
}


#zene .release:nth-child(3n + 2) img {
   border-color: var(--accent-teal);
}
#zene .release:nth-child(3n + 2) a i {
   color: var(--accent-teal);
}


#zene .release:nth-child(3n) img {
   border-color: var(--accent-orange);
}
#zene .release:nth-child(3n) a i {
   color: var(--accent-orange);
}

img.attachment-medium.size-medium.wp-post-image {
   padding: 1.5rem;
   background: #fffaf1;
}

/* 0) Hide the original font icon */
.service-icon i {
  display: none;
}

/* 1) Base style for all icons */
.service-icon {
  display: inline-block;
  width: 1.5em;       /* adjust as needed */
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px; /* hides any text */
  overflow: hidden;
}

/* 2) Nth-child + service-specific swaps */

.service-icon {
  display: inline-block;
  width: 1.5em;            
  height: 1.5em;          
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%; 
}
.service-icon.youtube {
  width: 2.2em; 
}

#zene .release:nth-child(3n+1) .service-icon.spotify {
  background-image: url('/wp-content/themes/budapestbar/images/section6_spotify_lightpink.svg');
}
#zene .release:nth-child(3n+1) .service-icon.apple {
  background-image: url('/wp-content/themes/budapestbar/images/section6_applemusic_lightpink.svg');
}
#zene .release:nth-child(3n+1) .service-icon.youtube {
  background-image: url('/wp-content/themes/budapestbar/images/section6_youtube_lightpink.svg');
  background-size: cover;
}

#zene .release:nth-child(3n+2) .service-icon.spotify {
  background-image: url('/wp-content/themes/budapestbar/images/section6_spotify_lightblue.svg');
}
#zene .release:nth-child(3n+2) .service-icon.apple {
  background-image: url('/wp-content/themes/budapestbar/images/section6_applemusic_lightblue.svg');
}
#zene .release:nth-child(3n+2) .service-icon.youtube {
  background-image: url('/wp-content/themes/budapestbar/images/section6_youtubelightblue.svg');
}


#zene .release:nth-child(3n) .service-icon.spotify {
  background-image: url('/wp-content/themes/budapestbar/images/section6_spotify_lightorange.svg');
}
#zene .release:nth-child(3n) .service-icon.apple {
  background-image: url('/wp-content/themes/budapestbar/images/section6_applemusic_lightorange.svg');
}
#zene .release:nth-child(3n) .service-icon.youtube {
  background-image: url('/wp-content/themes/budapestbar/images/section6_youtube_lightorange.svg');
}

#zene p.bpb-title {
   text-transform: uppercase;
   font-size: 1em;
   color: #7e5c55;
   margin-bottom: 0;
}

.load-more-releases-container {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
}

/* CONTACT */

#kapcsolat {
   position: relative;
   background-image: url("/wp-content/themes/budapestbar/images/section7_background.jpg");
   background-repeat: no-repeat;
   background-position: center center;
   background-attachment: fixed;
   background-size: cover;
   min-height: 400px;
   flex-wrap: wrap;
}

/* ---------------------------------------------------
   CONTACT (Management)
--------------------------------------------------- */
#kapcsolat {
   position: relative;
   padding: 8rem 1rem;
   flex-wrap: wrap;
   margin: auto;
}


#kapcsolat h2 {
   z-index: 2;
   display: flex;
   margin: 0 auto 0;
   padding: 1rem 2.5rem;
   background-color: #f17f7b;
   color: #ffffff;
   font-size: 2.25rem;
   font-weight: 700;
   border-radius: 1rem;
   text-align: center;
   margin: auto;
   max-width: fit-content;
   margin-bottom: 5rem;
}


#kapcsolat .contact {
   position: relative;
   z-index: 2;
   max-width: 600px;
   margin: -4rem auto 0;
   padding: 3rem 2rem;
   background-color: #ffffff;
   border-radius: 1rem;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
   text-align: center;
   color: #222;
   margin: auto;
}


#kapcsolat .col-12 h3 {
   margin: 0 0 1rem;
   font-size: 1.5rem;
   font-weight: 700;
}


#kapcsolat .col-12 p {
   margin: 0.5rem 0;
   font-size: 1rem;
   line-height: 1.4;
   color: #333;
}

.contact a {
   color: #111;
   font-weight: 700;
   text-decoration: none;
}


#kapcsolat .col-12 p strong,
#kapcsolat .col-12 p .highlight {
   font-weight: 600;
   color: #000;
}

#kapcsolat .contact h3 {
   width:100%;
}
#kapcsolat .contact p {
   width:100%;
}

@media (max-width: 576px) {
   #koncertek h1 {
      margin-left:0;
   }
   #kapcsolat h2 {
      font-size: 1.75rem;
      padding: 0.75rem 1.5rem;
   }
   #kapcsolat .col-12 {
      margin: -3rem 1rem 0;
      padding: 2rem 1.5rem;
   }
   .contact a, p {
      font-size: 1rem;
   }
   #kapcsolat .contact {
      max-width: 450px;
   }
}

@media (max-width: 476px) {
   #koncertek h1 {
      margin-left:0;
   }
   #kapcsolat h2 {
      font-size: 1.6rem;
   }
}

/* ---------------------------------------------------
 Footer 
--------------------------------------------------- */

footer#colophon {
   background: #ff2a57;
   padding-top: 4em;
   padding-bottom: 4em;
}

div#inner-footer {
   display: flex;
}

.right-side-content nav ul li {
   display: inline;
}

ul#menu-lablec {
   display: inline-flex;
}

ul#menu-lablec {
   padding: 0;
}

ul#menu-lablec li {
   margin-left: 1em;
}

.right-side-content {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}

#menu-lablec {
   list-style: none;
   margin: 0;
   padding: 0;
}


#menu-lablec > li:nth-child(2) {
   position: relative;
   padding-left: 1em; 
}


#menu-lablec > li {
  position: relative;
  padding-left: 1.2em; /* hely a pontnak */
}

#menu-lablec > li:nth-child(2)::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff
}

ul#menu-lablec li a {
   text-decoration: none;
   color: #fff;
   font-weight: 600;
}

p.source-org.copyright {
    color: #fff;
}

/* ---------------------------------------------------
   General Media Query rules 
--------------------------------------------------- */

@media (max-width: 1535px) {
   #bio .inner-content.container {
      padding: 5rem 5rem;
   }
   .band-members .row {
      grid-template-columns: repeat(6, 150px);
   }
   #bio .band-members {
      max-width: 1100px;
   }
}

@media (max-width: 1399px) {
   .band-members .row {
      grid-template-columns: repeat(4, 150px);
   }
   #bio .band-members {
      max-width: 900px;
   }
}
@media (max-width: 1280px) {
   #bio .inner-content.container {
      padding: 2rem 3rem;
   }
   .bio-upper.left {
      display: flex;
      align-items: center;
   } 
}

@media (max-width: 1199px) {
   #bio .band-members {
      max-width: 800px;
      padding: 4rem 3rem;
   }
   #bio .band-members h2 {
      margin-bottom: 5rem;
   }
   #bio .band-members h2::before {
      top: 3rem;
   }
}


@media (max-width: 1199px) {
   h1 {
      font-size: var(--h2-size);
   }
   h2 {
      font-size: var(--h3-size);
   }
   h3 {
      font-size: var(--h4-size);
   }
   h4 {
      font-size: 1.5625rem;
   }
}

@media (max-width: 476px) {
   h2 {
      font-size: var(--h4-size);
   }
   h3 {
      font-size: var(--h6-size);
   }
   h4 {
      font-size: 1.5625rem;
   }
}



@media (max-width: 991px) {
   .band-members .row {
      grid-template-columns: repeat(3, 150px);
   }
   #bio .band-members {
      max-width: 600px;
   }
   h3.band-member-h3 {
      width: 100%;
      margin: auto;
      margin-top: 1rem;
      margin-bottom: 1rem;
   }

   .next-show-tickets {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
   }
   section#bio {
      padding-top: 2em;
   }
   #promo .right-side-promo-text .promo-text h2 {
      font-size:2.5rem;
   }
}

@media (max-width: 812px) {

}

@media (max-width: 812px) {
   #bio .band-members h2 {
      margin-bottom: 5rem;
   }
   #bio .band-members h2::before {
      top: 4rem;
   }
}

@media (max-width: 767px) {
   section#bio {
      padding-top: 0rem;
   }
   .img-layer-flowers {
      z-index: 2;
      top: 0px;
      left: 22%;
      background-repeat: no-repeat;
      background-position: center;
      /* margin-top: 4.5rem; */
   }
   .band-members .row {
      grid-template-columns: repeat(2, 150px);
      gap: 15px;
   }
   #bio .band-members {
      max-width: 450px;
   }
   #bio .band-members h2::before {
      top: 4rem;
   }
   #bio .inner-content.container {
      padding: 3rem;
   }
   .newsletter-text {
      max-width: 100%;
   }
   #mc_embed_signup form, #mc_embed_signup #mc_embed_signup_scroll {
      max-width: 100%;
   }
   #promo .right-side-promo-text .promo-text h2 {
      font-size:2rem;
   }
   #zene .music-title-container .bio-left {
      max-width: 100%;
      margin-top:5rem
   }

}

@media (max-width: 575px) {
   .inner-content.container {
      max-width: 400px;
   }
   #bio .inner-content.container {
      max-width: 420px;
   }
   #bio .band-members {
      max-width: 380px;
   }
   #bio .band-members h2::before {
      top: 4.5rem;
   }
   a.button.tickets {
       max-width: 100%;
   }
   .next-show-tickets a.button {
      width: 100%;
   }
   ul#menu-lablec {
      display: flex;
      flex-wrap:wrap;
      justify-content:flex-start
   }
   .right-side-content {
      justify-content:flex-start
   }
   #menu-lablec > li {
      padding-left:0;
   }
}

@media (max-width: 450px) {
   .inner-content.container {
      max-width: 350px;
   }
   #bio .inner-content.container {
      max-width: 350px;
   }
   #bio .band-members {
      max-width: 320px;
   }
   #bio .band-members h2::before {
      top: 7.5rem;
   }
   h1 {
      font-size: 2.8rem;
   }
   h2 {
      font-size: 2rem;
   }
   h3 {
      font-size: 1rem;
   }
   h4 {
      font-size: 1.5625rem;
   }
   #koncertek h1 {
      font-size:2.4rem
   }
   #kapcsolat .contact {
      max-width: 350px;
      display: flex;
      flex-wrap: wrap;
      padding: 1rem 1rem;
   }
   a.footer-logo-img img {
      height: 70px;
      display: flex;
   }
}
@media (max-width: 400px) {
   .band-members .row {
      /* grid-template-columns: repeat(1, 150px); */
   }
   #koncertek h1::after {
      left:0;
      width:100%;
   }
   #zene .music-title-container h1::after {
      width: 100%;
      left: 0;
   }
   

}

.container {
   width: 100%;
   padding-right: 15px;
   padding-left: 15px;
   margin-right: auto;
   margin-left: auto;
   position: relative;
   z-index: 12;
}
@media (min-width: 576px) {
   .container {
      max-width: 540px;
   }
}
@media (min-width: 768px) {
   .container {
      max-width: 720px;
   }
}
@media (min-width: 992px) {
   .container {
      max-width: 960px;
   }
}
@media (min-width: 1200px) {
   .container {
      max-width: 1140px;
   }
}
@media (min-width: 1366px) {
   .container {
      max-width: 1200px;
   }
}
@media (min-width: 1536px) {
   .container {
      max-width: 1400px;
   }
}
@media (min-width: 1920px) {
   .container {
      max-width: 1600px;
   }
}
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
   width: 100%;
   padding-right: 15px;
   padding-left: 15px;
   margin-right: auto;
   margin-left: auto;
}
@media (min-width: 576px) {
   .container,
   .container-sm {
      max-width: 540px;
   }
}
@media (min-width: 768px) {
   .container,
   .container-sm,
   .container-md {
      max-width: 720px;
   }
}
@media (min-width: 992px) {
   .container,
   .container-sm,
   .container-md,
   .container-lg {
      max-width: 960px;
   }
}
@media (min-width: 1200px) {
   .container,
   .container-sm,
   .container-md,
   .container-lg,
   .container-xl {
      max-width: 1140px;
   }
}
@media (min-width: 1366px) {
   .container,
   .container-sm,
   .container-md,
   .container-lg,
   .container-xl {
      max-width: 1200px;
   }
}
@media (min-width: 1536px) {
   .container,
   .container-sm,
   .container-md,
   .container-lg,
   .container-xl {
      max-width: 1440px;
   }
}
@media (min-width: 1920px) {
   .container,
   .container-sm,
   .container-md,
   .container-lg,
   .container-xl {
      max-width: 1600px;
   }
}
.next-show-artist p.venue {
    font-weight: bold;
    color: #f59294;
    background: #fffaf1;
    padding: .25rem .5rem;
    display: inline-block;
}