/*Page*/

body {

  background-color:black;
  width: 100%;
}

/*Main Content*/

.main-content-wrapper {
  width: 100%;
  /*min-height: 95vh;*/
  position: relative;
}

p,
a,
span,
b {
  font-size: 1.3em;
  color: lightgrey;
  line-height: 1;
}


a {
  text-decoration: underline;
  color: rgb(255 36 215);
}

h1,
h2,
h3,
h4 {
    justify-content: center;
    font-family: 'Cassandra';
    font-weight: 1;
    line-height: 1;
  }

h1 span,
h2 span,
h3 span,
h4 span {
  backdrop-filter: blur(50px);
}

/*Menu */
#menu-container {
  background-color: black;
  z-index: 1000;
  display: block;
  position: sticky;
  top: 0;

  border-bottom: 20px solid rgb(108 218 179);
}

#menu-container .menu-logo {
  height: 100vh;
  width: auto;
  object-fit: scale-down;
}

.scrolled .menu-logo{
  /*animation */
  animation: shrink 0.5s ease-in-out forwards;
}

.scrolled-no-anim .menu-logo {
  height: 120px!important;
}

@keyframes shrink {
  from {
    height: 100vh;
  }
  to {
    height: 120px;
  }
}


.menu-logo
{
  image-rendering: optimizeQuality;
}

.menu-item {
  font-family: 'Cassandra';
  font-size: 2em;

  color: rgb(108 218 179);
  text-transform: uppercase;
  text-decoration: none;
}

.menu-item:hover {
  text-decoration: underline;
  color: rgb(255 36 215);
}


.current-menu-item {
  --tw-text-opacity: 1;
  /* 108 218 179 */
  /* 108 218 179 */
  color: rgb(255 36 215);
  text-decoration: underline;
}




@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    z-index:3000;
    display:none;
  }

  .desktop-menu {
    display: none;
  }

  .desktop-menu {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top:0;
  width: 100vw;
  height: 100lvh;
  background-color: rgba(0, 0, 0, 1);
  /* Dark overlay */
  color: white;
  text-align: center;
  padding-top: 0;


  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile-menu  .mobile-logo-container  {
  max-width: 150px;
} 

#menu-close {
  font-size: 35px;
  font-weight: bolder;
  color: white;
}



/* youtube embed */
iframe {
    width:100%;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-bottom: 5rem;
    aspect-ratio: 3 / 2;
}


/* Sections */

.section-title
{
  font-size: 4rem;
}

@media (max-width: 768px) {

  h1 span {
     font-size: 0.8em;
  }

  h2 span {
     font-size: 0.8em;
  }

    
}

.section, .section-inverted 
{
  position: relative;
  overflow: hidden;

  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}  

.section {
  background-image: url(../images/bg.jpg);
  border-bottom: 20px solid #ff24d780;
}
.section-inverted {
  background-image: url(../images/bg-inv.jpg);
  border-bottom: 20px solid #6CDAB380;
}

.section h1 span,
.section h2 span,
.section h3 span,
.section h4 span {
  color: white;
}


.section-inverted h1 span,
.section-inverted h2 span,
.section-inverted h3 span,
.section-inverted h4 span {
  color: rgb(255 36 215);

}



/* HP */
.section-oh-my {

}
.section-oh-my .section-content p {
  text-align: center;
}

/*posts*/

.section-content { }

.section-content p {
  text-align: left;
  margin: 1.3rem;
}



/* concert */

.section-shows {
  background-image: url(../images/tj.png);
}

.concert-cell > div  {
  text-align: center;
}

.concert-single-item {
  min-width: 80vw;
}

@media (min-width: 768px) {
  .concert-cell {
    gap: 5rem;
  }
  
  .concert-cell > div {
    width:20%;
    text-align: center;
  } 
}

.single-concert-label {
  --tw-text-opacity: 1;
  color: rgb(108 218 179 / var(--tw-text-opacity));
}

.concert-cell {
  flex-grow: 1;
  align-items: center;
}

@media (max-width: 768px) {
  .concert-cell * {
    display: inline;
    min-width: 75vw;
  }
  .concert-date {
    margin-bottom: 20px;
  }
}


/* Gallery */
.grid-gal {
  margin: auto;
}

/* HTML: <div class="loader"></div> */
.loader {
  font-weight: bold;
  font-family: monospace;
  display: inline-grid;
  font-size: 30px;
}

.loader:before,
.loader:after {
  content: "Loading...";
  grid-area: 1/1;
  -webkit-mask-size: 100% 5px, 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: l35-1 1s infinite;
}

.loader:before {
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
}

.loader:after {
  -webkit-mask-image:
    linear-gradient(#000 0 0);
  animation:
    l35-1 1s infinite,
    l35-2 .2s infinite cubic-bezier(0.5, 200, 0.5, -200);
}

@keyframes l35-1 {
  0% {
    -webkit-mask-position: 0 20px, 0 0
  }

  20% {
    -webkit-mask-position: 0 8px, 0 0
  }

  40% {
    -webkit-mask-position: 0 100%, 0 0
  }

  60% {
    -webkit-mask-position: 0 3px, 0 0
  }

  80% {
    -webkit-mask-position: 0 15px, 0 0
  }

  100% {
    -webkit-mask-position: 0 0, 0 0
  }
}

@keyframes l35-2 {
  100% {
    transform: translate(0.1px)
  }
}

.lightbox-trigger:hover {
  opacity: 0.8;
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black background with opacity */
  justify-content: center;
  /* Center content horizontally */
  align-items: center;
  /* Center content vertically */
  padding: 20px;
  /* Add some padding */
  box-sizing: border-box;
}

/* Lightbox Content (Image) */
.lightbox-content {
  display: block;
  /* Display as block to allow margin auto */
  margin: auto;
  /* Center horizontally */
  max-width: 90%;
  max-height: 85vh;
  /* Limit height to viewport height */
  width: auto;
  height: auto;
  border-radius: 8px;
  /* Rounded corners */
  animation: fadeIn 0.5s;
  /* Simple fade-in animation */
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
}

/* Add Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.grid-sizer {
  width: 20%;
}

.grid-gal-item {
  cursor: pointer;
  float: left;
  width: 20%;
  /*border: 2px solid hsla(0, 0%, 0%, 0.5);*/
  padding: 2px;
  /*  visibility:hidden;*/
  opacity: 0;

}

.grid-gal-item--width2 {
  width: 40%;
}

/* Optional: Add lightbox functionality */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}


/*contact form*/
/*contact form*/
/*contact form*/

.wpcf7 input,
.wpcf7 textarea {
  color: black;
  width: 80vw;
  border-radius: 7px;
  padding: 5px;
  font-size: 1.2rem !important;
}

.wpcf7-submit {
  color: white !important;
  text-transform: uppercase;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #ff24d7;
  border-radius: 0!important;
  cursor: pointer;
  background-image: none;
  width: 100px !important;
  margin-right: auto;
  position: relative;
  display: block;
  margin-left: auto;
  font-style: italic;
}

.section-contact-us{
  background-image: url(../images/fulllogo.jpeg);
}



/* MUSIC */
.section-music {
  background-image: url(../images/recs.jpg);
}

.music-item-main {
  max-height: 1100px;
}

.music-item-main h1,
.music-item-main h2,
.music-item-main h3,
.music-item-main h4 {
  color: white;
  text-align: center;
}

.music-item-main h1 {
  font-size: 5rem;
}

.music-item-main h2 {
  font-size: 4rem;
}

.music-item-main h3 {
  font-size: 2.5rem;
}

.music-item-main h4 {
  font-size: 1.5rem; 
}


.music-link span,
.music-link svg {
  display: inline;
}

.music-link span {
  font-size: 1.1em;
  margin-left: 20px;
  text-decoration-line: underline;
}

.bc-stacked-player {
  width: 100%;
  max-width: 450px;
}

.bc-embed {
  border: 0;
  width: 100%;
  height: 580px;
}

@media (max-width:480px) {
  .bc-embed  {
    height: 450px; /* Slightly shorter for smaller screens */
  }
}

/* Download */
.redeem-success-page h2
{
  color: white;
  text-align: center;
}

.redeem-success-page p
{
  text-align: center;
}
/*BIO*/

.section-bio {
  background-image: url(../images/turn.png);
}

.section-bio p {
  text-align:left;
}

/* WooCommerce overrides. */
/* COME ON T, fix this shit.*/

/* product page*/
/* product page*/
/* product page*/
/* product page*/
.woocommerce-notices-wrapper {
  font-size: 2rem;
  color: rgb(108 218 179);
}

.woocommerce-message {
  border-top-color: #720eec !important;
}

.woocommerce-message .button {
  color: white !important;
  background-color: rgb(108 218 179) !important;
}


@media (min-width: 768px) {
  div.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    max-width: 50%;
  }
}


.woocommerce div.product div.images img {
  border-radius: 0.5rem;
}

.woocommerce div.product .woocommerce-product-attributes,
.woocommerce div.product .shop_attributes,
.woocommerce div.product .woocommerce-Tabs-panel--description {
  color: white;
}

.woocommerce div.product form.cart {
  font-size: 1.3rem;
  display: block;
  margin-top: 10px;
}

.woocommerce div.product .quantity .qty {
  font-size: 2rem;
  color: rgb(108 218 179);
  font-style: bolder;
}

.woocommerce div.product form.cart div.quantity {
  color: black;
}

.woocommerce div.product div.product_meta {
  display: none;
}

.woocommerce div.product div.summary {
  font-size: 1.5rem;
}

/* Pannelli sotto */
.woocommerce div.product .woocommerce-Tabs-panel h2 {
  color: rgb(108 218 179);
  font-size: 1.5rem;
}

.woocommerce div.product .woocommerce-Tabs-panel p {
  font-size: 1.2rem;
}

.woocommerce div.product .woocommerce .woocommerce-ordering select {
  color: #3c3b3b;
}

/* Cart Page */
/* Cart Page */
/* Cart Page */
/* Cart Page */

.wp-block-woocommerce-filled-cart-block {
  font-size: 1.3rem;
}

.wp-block-woocommerce-filled-cart-block th {
  font-size: 1.5rem;
  color: rgb(108 218 179);
}

.is-large.wc-block-cart .wc-block-cart__totals-title {
  font-size: 1.5rem !important;
  color: rgb(108 218 179) !important;
}

.wc-block-cart-item__wrap .wc-block-components-product-name,
.wc-block-components-totals-item .wc-block-components-totals-item__label {
  font-size: 2rem !important;
  color: rgb(108 218 179) !important;
}

.wc-block-components-totals-item .wc-block-formatted-money-amount {
  font-size: 2rem !important;
}

.wc-block-components-product-metadata {
  font-size: 1.3rem !important;
}

.wc-block-cart-item__wrap .wc-block-cart-item__remove-link {
  font-size: 1.3rem !important;
}

.wc-block-cart-item__wrap .wc-block-cart-item__prices {
  display: none;
}

.wc-block-cart__submit-container {
  background-color: rgb(108 218 179) !important;
  border-radius: 2rem;
}

/*Mobile Submit cart color issue*/
/*Mobile subtotals*/
@media (max-width: 782px) {
  .wc-block-cart .wc-block-cart__submit-container--sticky {
    position: relative !important;
  }

  .wc-block-components-totals-item .wc-block-formatted-money-amount,
  .wc-block-cart-item__total .wc-block-formatted-money-amount {
    font-size: 1.3rem !important;
  }
}

/* shop page */
/* shop page */
/* shop page */
.add_to_cart_button {
  background-color: rgb(108 218 179) !important;
  border-radius: 0 !important;
  color: white !important;
  font-size: 1.5rem !important;
}

@media (max-width: 782px) {
  .add_to_cart_button {
    font-size: 1.1rem !important;
  }
}

.added_to_cart {
  font-size: 1.3rem !important;
  margin-left: 10px;
}

.woocommerce ul.products li.product a img {
  border-radius: 0.5rem;
}

.woocommerce-ordering,
.woocommerce-result-count {
  display: none;
}

.woocommerce-loop-product__title {
  font-size: 1.5rem !important;
}

/*checkout*/
/*checkout*/
/*checkout*/

.wp-block-woocommerce-cart {
  min-width: 80vw;
}


.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link.wc-block-components-quantity-selector input,  .wc-block-components-quantity-selector button {
  
  color: white !important;
}


.wp-block-woocommerce-cart input{
  color: white;
}

.wc-block-checkout,
.wc-block-checkout input {
  font-size: 1.2rem !important;
}

.wc-block-components-checkout-step__title,
.wc-block-components-checkout-order-summary__title-text {
  color: rgb(108 218 179) !important;
  font-size: 2rem !important;
}

.wc-block-components-checkout-step__description {
  font-size: 1.3rem !important;
}

.wc-block-components-order-summary-item__individual-price {
  display: none;
}

.wc-block-components-checkout-place-order-button {
  background-color: #ce29b0 !important;
  border-radius: 2rem;
  color: white !important;
  font-size: 1.5rem !important;

}