@import url('https://fonts.cdnfonts.com/css/adobe-caslon-pro');

@font-face {
    font-family: 'akzidenz-grotesk_proXBdIt';
    src: url('akzidenz_grotesk_pro_extrabold_italic-webfont.woff2') format('woff2'),
        url('akzidenz_grotesk_pro_extrabold_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'akzidenz-grotesk_proXBd';
    src: url('/assets/fonts/akzidenz_grotesk_pro_extrabold_regular-webfont.woff2') format('woff2'),
        url('/assets/fonts/akzidenz_grotesk_pro_extrabold_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'akzidenz-grotesk_proMdCnIt';
    src: url('/assets/fonts/akzidenz_grotesk_pro_med_cnd_italic-webfont.woff2') format('woff2'),
        url('/assets/fonts/akzidenz_grotesk_pro_med_cnd_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'akzidenz-grotesk_proMdCn';
    src: url('/assets/fonts/akzidenz_grotesk_pro_med_cnd_regular-webfont.woff2') format('woff2'),
        url('/assets/fonts/akzidenz_grotesk_pro_med_cnd_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --dark: #191919;
    --cream: #E9DECF;
    --magenta: #EA4E7F;
}

.ak-bold {
    font-family: 'akzidenz-grotesk_proXBd';
    text-transform: uppercase;
}

.ak-med {
    font-family: 'akzidenz-grotesk_proMdCn';
    text-transform: uppercase;
}

body,
html {
    height: 100%;
    background-color: var(--cream);
    font-family: 'Adobe Caslon Pro', sans-serif;
    overflow-x: hidden;

}

/* menu, header */
.header {
    background: var(--dark);
    color: #fff;

}

.header .header-default {
    height: 10vh;
    min-height: 150px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-list {
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

@media (min-width: 560px) {
    .nav-list {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        height: 150px;
    }
}

.nav-list a {
    color: var(--cream);
    text-decoration: none;
    font-size: calc(1.375rem + 1.5vw);
    text-transform: uppercase;
    text-align: center;
}

.nav-list a:hover {
    color: var(--magenta);
}

.hamburger,
.close-menu {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 50px;
}

.navbar-overlay {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #191919;
    transition: height 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    padding: 0 2rem;
}

.navbar-overlay.active {
    overflow: visible;
    transition: height 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    height: 220px;
}

@media (min-width: 560px) {
    .navbar-overlay.active {
        height: 120px;
        /* Adjust to fit your nav */
    }
}

.menu .close-menu {
    display: none;
}

.menu.menu-open .close-menu {
    display: inline-block;
}

.menu.menu-open .hamburger {
    display: none;
}

.logo img {
    width: 100%;
}

.logo {
    width: 200px;

}

.logo a {
    display: block;
    background-color: var(--dark);
}

/* footer */
.sticky-footer {
    /* position: sticky;
    bottom: 0; */
    width: 100%;
    background: var(--dark);
    color: #fff;
    /* z-index: 100; */
    padding: 2rem 0;
}

.sticky-footer a {
    text-decoration: none;
    font-size: 0.8rem;

}

.sticky-footer a i {
    color: var(--cream);
}

.footer-top {
    padding: 1rem 2rem;
}

.footer-bottom {
    /* padding: 0.5rem 2rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.footer-contact {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer-contact-item {
    text-align: left;
    width: 100%;
    padding: 20px 10px;
    margin: 0 auto;
}
.footer-contact-item br {
    display: none;
}
@media (min-width: 560px) {
    .footer-bottom {
        flex-direction: row;
    }
    .footer-contact-item br {
        display: inline;
    }
}

/* tmp while hiding footer contacts and newsletter */
.sticky-footer {
    padding: 1rem 0;
}
.social-icons {
    margin: 0 auto;
}
/* home */
.video-preloader {
  position: absolute;
  z-index: 10;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s;
}
.video-preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.hero-video-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: absolute;
  top: 0; left: 0;
  display: block;
}

/* tour */
.tour .hero-section {
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}
.tour .hero-overlay-text {
    position: absolute;
    right: 2vw;
    bottom: 2vw;
    color: #fff;
    text-align: right;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 2;
}
@media (max-width: 576px) {
    .tour .hero-overlay-text {
        right: 4vw;
        bottom: 4vw;
        font-size: 1.1rem;
    }
}
/* hover effect */
@media (min-width: 768px)  {
    .tour .hero-section {
    overflow: hidden;
    min-height: 48vh;
    }
    .tour .hero-bg {
        opacity: 0;
        transition: opacity 0.8s;
        pointer-events: none;
    }
    .tour .hero-bg.active {
        opacity: 1;
        z-index: 1;
    }
}

/* tour */
.tour-dates-section {
    font-size: calc(1.2rem + 1.5vw);
    line-height: 1.5rem;
    color: var(--dark);
    padding: 2rem 0;

}
.tour-divider {
    display: none;
}
@media (max-width: 576px) {
.tour-divider {
    width: 10vw;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 2vh auto;
    display: block;
}
}
.tour-dates-section span,
.tour-dates-section a {
        /* padding: 0.5rem 0; */
}
@media (min-width: 960px) {
    .tour-dates-section {
        font-size: calc(1.375rem + 1.5vw);
    }
    .tour-dates-section span,
    .tour-dates-section a {
        padding: 0.8rem 0;
    }
}

.tour-dates-section a,
.tour-dates-section a:visited,
.tour-dates-section a:hover,
.tour-dates-section a:active {
    color: var(--dark);
    text-decoration: none;
}

.tour-dates-section .row:hover {
    background-color: var(--magenta);
}

.tour-date-col span,
.tour-venue span,
.tour-venue a {
    display: block;
}
.tour-venue span,
.tour-venue a {
    width: 100%;
    text-align: right;
    margin-right: .5rem;
}
@media (min-width: 650px) {
    .tour-date-col span,
    .tour-venue span,
    .tour-venue a {
        display: inline-block;
    }
    .tour-venue span {
        text-align: left;
    }
    .tour-venue a {
        padding-right: 1rem;
    }
}
.tour-date-link {
    flex: 1 1 0;
    text-align: right;
}
.sold-out {
    white-space: nowrap;

}

/* video */
.section-video {
    position: relative;
    width: 100%;
    /* min-height: 70vh; */
}

.video-txt {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    z-index: 4;
    color: var(--cream);
    font-size: 2rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 2rem;
    pointer-events: none;
}

.video-txt a,
.video-txt a:hover,
.video-txt a:active,
.video-txt a:visited {
    color: var(--cream);
    text-decoration: none;
}

.video-overlay {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-tn,
.video-tn-color {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    position: absolute;
}

.video-tn {
    z-index: 2;
    pointer-events: none;
}

.video-tn-color {
    z-index: 3;
    transition: opacity 1s;
    cursor: pointer;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* contact */
body.contact {
    background: #777169 url('/assets/img/artbanner2.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
}

body.contact .container {
    max-width: 540px;
    position: relative;
    z-index: 2;
}

 .card {
    background: rgba(187, 184, 180, 0.65);
    backdrop-filter: blur(3px);
    border: none;
    border-radius: 0;
    clip-path: polygon(16px 0%,
            /* top left "cut" */
            calc(100% - 16px) 0%,
            /* top right "cut" */
            100% 16px,
            100% calc(100% - 16px),
            calc(100% - 16px) 100%,
            16px 100%,
            0% calc(100% - 16px),
            0% 16px);

}

.card-header,
.card-header:first-child {
    background-color: var(--dark);
    color: var(--cream);
    font-size: 2rem;
    border-radius: 0;
}

.card .btn-primary {
    position: relative;
    overflow: hidden;
    border-color: var(--dark);
    border-radius: 0;
    background: var(--dark) url('/assets/img/btn-bg-1.png') no-repeat center;
    background-size: cover;
    transition: border-color 0.5s, background-color 0.5s;
}
.card .btn-primary:hover {
    border-color: var(--magenta);
}
.contact .card .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--magenta) url('/assets/img/btn-bg-1-hover.png') no-repeat center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    pointer-events: none;
    border-color: var(--magenta);
}

.music .card .btn-primary:hover {
    border-color: var(--dark);
    color: var(--dark);
    background: white;

}

.card .btn-primary:hover::after,
.card .btn-primary:focus::after {
    opacity: 1;
}

.card .btn-primary span,
.card .btn-primary strong,
.card .btn-primary i,
.card .btn-primary svg {
    position: relative;
    z-index: 2;
}
.card-text a,
.card-text a:visited,
.card-text a:hover,
.card-text a:active {
    color: var(--dark);
    text-decoration: none;
}
/* music */
.album-meta>div {
    flex: 1 1 0;
    min-width: 0;
}

.album-meta dt {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
}

.album-meta dd {
    margin-bottom: 0;
    font-size: 0.5rem;
}

body.music {
    background: #777169 url('/assets/img/artbanner3.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
}

body.music h1 {

    line-height: calc(1.375rem + 1.5vw);
}

body.music .card-body-header {
    border-bottom: 1px solid var(--dark);
}

.track-listing h2 {
    font-size: calc(0.9rem + .9vw);
}

.track-listing ol {
    padding-left: 1rem;
}

body.music .container {
    max-width: 960px;
}

.official-store .store-image-wrapper {
    aspect-ratio: 1/1;
    /* min-height: 220px; */
    position: relative;
    overflow: hidden;
}

.official-store .store-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.official-store .store-img.back {
    z-index: 1;
}

.official-store .store-img.front {
    z-index: 2;
}

.official-store .store-actions,
.enlarge-btn {
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.enlarge-btn {
    color: var(--cream);
    background-color:var(--dark);
    border: none;
    border-radius: 5px;
}
.official-store .store-image-wrapper:hover .store-img.front {
    transform: translateX(-100%);
}

.official-store .store-image-wrapper:hover .store-actions {
    opacity: 1;
    pointer-events: auto;
}

.custom-lightbox {
    transition: box-shadow 0.2s;
    will-change: opacity, transform;
}

.text-secondary {
    text-decoration: none;
    font-size: 0.7rem;
    color: var(--dark) !important;
}

body.music .card {
    background-color: #e9decfe1;
    backdrop-filter: blur(3px);
}
/* rotating art banner */
.bg-art-page header,.bg-art-page footer {
    position: relative;
    z-index: 2;
}
.bg-art {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-art-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.bg-art-picture.active {
  opacity: 1;
  z-index: 1;
}



/* util */
.breakpoint-indicator {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #191919cc;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.3em 0.8em;
  z-index: 9999;
  border-radius: 6px 0 0 0;
  pointer-events: none;
}
.breakpoint-indicator::after { content: "XS"; }
@media (min-width: 576px)  { .breakpoint-indicator::after { content: "SM"; } }
@media (min-width: 768px)  { .breakpoint-indicator::after { content: "MD"; } }
@media (min-width: 992px)  { .breakpoint-indicator::after { content: "LG"; } }
@media (min-width: 1200px) { .breakpoint-indicator::after { content: "XL"; } }
@media (min-width: 1400px) { .breakpoint-indicator::after { content: "XXL"; } }
