/*styles*/

:root {
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --accent-cyan: #00f3ff;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
    color: white;
    background: #111 !important;
}

.font2 {
    font-family: "proxima-nova", sans-serif;
}

body.active {
    overflow-y: hidden;
}

.fancybox-container {
    z-index: 999999;
}

.container {
    max-width: 1400px;
    overflow: hidden;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1000px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
    /*padding-left: 100px;*/
}
.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
    transition: all .5s ease
}

a:hover {
    text-decoration: none;
    color: inherit;
}

/*Blog*/


.block.image {
    background-attachment: fixed;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 80px;
}

.block.image .heading {
    color: white;
}

.block.image .small-heading {
    color: white;
}

.block.image p {
    font-size: 19px;
    color: white;
}

.block.image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.2);*/
    background: #07253f;
    opacity: .75;
}

.small-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.small-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.wide-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.large-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.small-block.white {
    background: white;
}

.small-block.blue {
    background: #07253f;
}

.small-block.light-blue {
    background: #4b769b;
}

.wide-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.large-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.post-hold {
    padding: 40px 0;
    border-bottom: 1px solid #07253f;
}

.small-block.post {
    min-height: unset;
    display: block;
    height: unset;
}

.blog-post-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-inner {
    position: relative;
    padding: 65px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.block-inner.post {
    padding: 40px;
}

/* Header */



/*Home*/

/* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #0d0d0d;
            position: relative;
            z-index: 100;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 3px;
            color: #00d9d9;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .date-time {
            font-size: 12px;
            color: #888;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 60vh;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                        url('/wp-content/uploads/2026/02/Alan-Matthews-Studio-3-e1770201215292.jpeg');
            background-size: cover;
            background-position: top;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }

        /*.hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
        }*/

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero img {
            max-height: 120px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: bold;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 14px;
            color: var(--accent-cyan);;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        /* Main Content */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 60px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        /* Latest Mix */
        .latest-mix {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 20px;
        }

        .mix-player {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 8px;
        }

        .mix-cover {
            width: 60px;
            height: 60px;
            background-color: #333;
            border-radius: 5px;
        }

        .mix-info {
            flex: 1;
        }

        .mix-title {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .waveform {
            height: 30px;
            background: linear-gradient(to right, #00d9d9 0%, #00d9d9 30%, #333 30%, #333 100%);
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }

        .waveform::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 30%;
            background: repeating-linear-gradient(
                to right,
                #00d9d9 0px,
                #00d9d9 2px,
                transparent 2px,
                transparent 5px
            );
        }

        .play-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .play-btn {
            width: 30px;
            height: 30px;
            background-color: #00d9d9;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
        }

        .play-btn::before {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 52%;
            transform: translate(-50%, -50%);
            color: #000;
            font-size: 10px;
        }

        .time-slider {
            flex: 1;
            height: 4px;
            background-color: #333;
            border-radius: 2px;
            position: relative;
        }

        .time-slider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 30%;
            height: 100%;
            background-color: #00d9d9;
            border-radius: 2px;
        }

        /* Top Original */
        .top-original {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 20px;
        }

        .track-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 8px;
        }

        .track-cover {
		  width: 22%;
		  aspect-ratio: 1 / 1; /* keeps it square */
		  border-radius: 14px;
		  background-color: #1a1a1a; /* fallback if image fails */
		  background-size: cover;
		  background-position: center;
		  background-repeat: no-repeat;
		  overflow: hidden;
		  position: relative;
		}

		.track-list{
		  display:flex;
		  flex-direction:column;
		  gap:12px;
		}


        .track-info h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .track-info p {
            font-size: 12px;
            color: #888;
        }

        /* Stats */
        .stats {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            background-color: #1a1a1a;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .stat-icon {
            width: 30px;
            height: 30px;
            background-color: #00d9d9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .stat-text {
            font-size: 12px;
            color: #00d9d9;
        }

        /* Bio and Gallery Section */
        .bio-gallery {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .bio-section {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 30px;
        }

        .bio-section h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #00d9d9;
        }

        .bio-section p {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        .gallery {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 30px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .gallery-item {
            aspect-ratio: 1;
            background-color: #333;
            border-radius: 8px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        /* Promoter Vault */
        .promoter-booking {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .promoter-vault {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 30px;
        }

        .download-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background-color: #1a1a1a;
            border-radius: 5px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #00d9d9;
        }

        .download-item:hover {
            background-color: #222;
        }

        .download-icon {
            color: #00d9d9;
        }

        .download-text {
            font-size: 13px;
            color: #00d9d9;
        }

        /* Booking Form */
        .booking-form {
            background-color: #0d0d0d;
            border-radius: 10px;
            padding: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group p {
            margin-bottom: 0;
        }

        .form-group input {
            background-color: #1a1a1a;
            border: 1px solid #333;
            padding: 12px;
            border-radius: 5px;
            color: #fff;
            font-size: 14px;
        }

        .form-group input:focus {
            outline: none;
            border-color: #00d9d9;
            background-color: #1a1a1a;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 30px;
            background-color: #0d0d0d;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #00d9d9;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: #00d9d9;
            color: #000;
        }

        .footer a {
            transition: all 0.3s;
        }

        .footer a:hover {
            color: #00ffff !important;
        }

        .copyright {
            font-size: 11px;
            color: #666;
        }

/* =========================
PDF EXPORT MODE
========================= */

/* Turn off animations/transitions for clean capture */
.pdf-export-mode * {
  animation: none !important;
  transition: none !important;
}

/* AOS fix (if you use it) */
.pdf-export-mode [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Hide these in the PDF */
.pdf-export-mode .press-kit-btn,
.pdf-export-mode .download-item,
.pdf-export-mode .menu,
.pdf-export-mode .menu-toggle,
.pdf-export-mode .pdf-hide {
  display: none !important;
}

/* Show pdf-only blocks only during export */
.pdf-only {
  display: none;
}
.pdf-export-mode .pdf-only {
  display: block !important;
}

/* Prevent weird clipping during canvas render */
.pdf-export-mode #epk-export {
  overflow: visible !important;
}

/* Optional: spacing between sections in the PDF */
.epk-section {
  margin-bottom: 24px;
}

/* Optional: make your PDF contact block match your vibe */
.pdf-contact {
  background: #0d0d0d;
  border: 1px solid rgba(0, 217, 217, 0.35);
  border-radius: 14px;
  padding: 22px;
}
.pdf-contact p {
  margin: 8px 0;
}

/* Hide normal grid versions in PDF */
.pdf-export-mode .pdf-hide { display:none !important; }

/* Show PDF-only stacked versions */
.pdf-only { display:none; }
.pdf-export-mode .pdf-only { display:block !important; }

/* Make PDF stacked layout vertical + spaced */
.pdf-export-mode .epk-pdf-stack > * {
  margin-bottom: 20px;
}

/* Force any grid/flex from desktop to behave nicely in PDF mode */
.pdf-export-mode .epk-pdf-stack .content-grid,
.pdf-export-mode .epk-pdf-stack .bio-gallery {
  display: block !important;
}

/* Two-column layout for PDF */
.pdf-export-mode .pdf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Force site background during PDF export */
.pdf-export-mode,
.pdf-export-mode body,
.pdf-export-mode #epk-export {
  background: #0d0d0d !important; /* or your main site bg */
  /*font-size: 22px;*/
}

/* Ensure sections inherit background */
.pdf-export-mode .epk-section {
  background: transparent !important;
}

.pdf-only { display:none; }
.pdf-export-mode .pdf-only { display:block !important; }
.pdf-export-mode .pdf-hide { display:none !important; }

.pdf-export-mode .pdf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pdf-export-mode,
.pdf-export-mode p {
    font-size: 22px !important;
}

.pdf-export-mode .stat-item .stat-text,
.pdf-export-mode .stat-item .stat-icon {
    font-size: 20px !important;
}

.pdf-export-mode h2, .pdf-export-mode h3 {
    font-size: 22px !important;
}

/* Ensure dark background exists in export mode */
.pdf-export-mode,
.pdf-export-mode body,
.pdf-export-mode #epk-export {
  background: #0d0d0d !important;
}

/* PDF: put Bio + Gallery side-by-side */
.pdf-export-mode .pdf-bio-gallery-row {
  display: grid;
  gap: 18px;
  align-items: start;
}

/* PDF: tighten spacing in the bio */
.pdf-export-mode .pdf-bio-gallery-row .bio-section p {
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* PDF: shrink the genre pills a bit */
.pdf-export-mode .pdf-bio-gallery-row .bio-section span {
  padding: 4px 10px !important;
  font-size: 10px !important;
}

/* PDF: make gallery tiles smaller */
.pdf-export-mode .pdf-bio-gallery-row .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* If your tiles are background-image blocks, control height like this */
.pdf-export-mode .pdf-bio-gallery-row .gallery-item {
  height: 340px;              /* adjust 60–90px depending on fit */
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

/* PDF: optional - only show 4 images to guarantee fit */
.pdf-export-mode .pdf-bio-gallery-row .gallery-item:nth-child(n+5) {
  display: none;
}

/* PDF: remove the "margin-top:20px" effect */
.pdf-export-mode .pdf-bio-gallery-row .gallery {
  margin-top: 0 !important;
}

.genre-pill {
    font-size: 11px;
}

.pdf-export-mode .genre-pill {
  font-size: 22px !important;
  padding: 8px 14px;
}

/* Fullscreen PDF export overlay */
#pdf-export-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

#pdf-export-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* The "Generating EPK PDF..." box ON TOP of the overlay */
#pdf-export-overlay .pdf-loading-msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00d9d9;
  color: #000;
  padding: 20px 40px;
  border-radius: 10px;
  z-index: 1000000; /* above overlay */
  font-weight: bold;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  text-align: center;
  min-width: 280px;
}

/* Optional subtle animated dots */
#pdf-export-overlay .pdf-loading-msg .dots::after {
  content: "";
  display: inline-block;
  width: 18px;
  text-align: left;
  animation: pdfDots 1s infinite steps(4);
}

@keyframes pdfDots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}

/* Prevent scrolling while exporting */
body.pdf-export-lock {
  overflow: hidden !important;
}


/* Buttons */

button {
    border: none;
}

button:hover {
    cursor: pointer;
}

.btn-glow {
    background: var(--accent-cyan);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transition: 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--text-dim);
    color: var(--text-main);
    padding: 15px 30px;
    text-decoration: none;
    margin-left: 15px;
    border-radius: 5px;
}

/*Gallery*/

.gallery-hold {
        position: relative;
        padding: 40px 30px;
    }
    .gallery-items {
        margin: 12.5px;
    }
    .gallery-image {
        height: 450px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .details {
        position: relative;
        padding: 20px 10px;
    }
    .tag {
        font-weight: 400;
        font-size: 19px;
/*        text-transform: uppercase;*/
    }
    .cat {
        font-weight: 300;
        font-size: 15px;
        opacity: .7;
    }
    .light {
        font-weight: 200;
    }
    .style-heading {
        position: relative;
        font-size: 26px;
        margin-bottom: 0;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
        opacity: .9;
        letter-spacing: 1px;
    }
    .style-heading::before {
        position: absolute;
        content: "";
        left: 50%;
        transform: translate(-50%);
        bottom: -2px;
        height: 3px;
        width: 20px;
        background: #525252;
    }
    .slick-arrow {
        background: transparent;
        color: #525252;
    }
    .slick-prev {
        left: -42px;
        font-size: 25px;
    }
    .slick-next {
        right: -40px !important;
        font-size: 25px;
    }
    .gallery-image {
      object-fit: contain;
      object-position: center;
    }
    .side-bar {
        position: absolute;
        padding: 40px 0;
        width: 15vw;
        right: 0;
        text-align: right;
        z-index: 1;
        transition: all .5s ease;
    }
    .gal-hold {
        width: 85vw;
    }
    .tab-wrap ul {
        font-size: 21px;
        margin-bottom: 20px;
        font-weight: 400;
        line-height: 40px;
        text-transform: uppercase;
    }
    .content_title {
     margin-bottom: 40px;
    }
     .content_title .title {
         color: white;
    }
     .content_title .title small {
         font-weight: 100;
    }
     .main {
         /*padding: 15px;*/
         margin: auto;
    }
     .main * {
         transition: all 0.4s;
    }
     .main .top_banner, .main .bottom_banner {
         text-align: center;
         color: white;
    }
     .main .main_content {
         column-gap: 20px;
         width: 100%;
    }
     .main .main_content .picture_wrapper {
         margin-bottom: 20px;
         position: relative;
         overflow: hidden;
         transition: all .3s ease;
    }
     .main .main_content .picture_wrapper img {
         height: 100%;
         width: 100%;
         object-fit: cover;
         box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.06);
         position: relative;
         transition: all .5s ease;
         overflow: hidden;
    }
    }
    .main .main_content .picture_wrapper img:hover {
        box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.15);
    }
     @media (min-width: 1200px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 768px) and (max-width: 1199px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 576px) and (max-width: 767px) {
         .main_content {
             column-count: 2;
        }
    }
     @media (max-width: 575px) {
         .main_content {
             column-count: 1;
        }
    }
    .box {
        overflow: hidden;
        display: none;
    }

    .selected {
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .checklist_wrap .box{
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .contextNav.onethird {
        background-color: transparent; }

    .tab-wrap li {
        cursor: pointer;
        position: relative;
        transition: all .5s ease;
        line-height: 20px;
        padding: 20px 30px;
    }

    .tab-wrap li.active, .tab-wrap li:hover {
        background: #f2ede4;
    }
    .magnifier {
        position: absolute;
        bottom: -70px;
        font-size: 40px;
        z-index: 99;
        right: 15px;
        text-align: center;
        width: 48px;
        transition: all .5s ease;
        padding: 3px;
        color: #fff;
    }
    .main .main_content .picture_wrapper:hover .magnifier {
        bottom: 0;
    }
    .social {
        display: inline-flex;
        position: relative;
        right: 30px;
    }
    .social li a {
        color: white;
        font-size: 20px;
        text-decoration: none !important;
    }
    .btn-large {
        position: absolute;
        right: 0;
        bottom: 45px;
        width: 100%;
        cursor: pointer;
        transition: all .5s ease;
        line-height: 20px;
        padding: 20px 30px;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: 400;
        color: white !important;
        text-decoration: none !important;
    }
    .btn-large:hover {
        background: #0d0d0d;
    }
    .side-button {
        width: fit-content;
        left: -43px;
        position: absolute;
        background: black;
        z-index: 9999;
        font-size: 26px;
        padding: 4px 9px;
        border-radius: 5px 0 0 5px;
        top: 45%;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        transition: all .5s ease;
    }
    .side-button.closer {
        width: fit-content;
        left: 25px;
        position: absolute;
        z-index: 9999;
        font-size: 30px;
        top: 42px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all .5s ease;
        transform: unset;
        border-radius: unset;
        padding: unset;
        background: unset;
    }
    @media(max-width: 1800px) {
        .side-bar {
          width: 20vw;
        }
        .gal-hold {
          width: 80vw;
        }
    }
    @media(max-width: 1500px) {
        .side-bar {
          width: 25vw;
        }
        .gal-hold {
          width: 75vw;
        }
    }
    @media(max-width: 991px) {
        .gal-hold {
          width: 100vw;
        }
        .side-bar {
            position: fixed;
            width: 100%;
            max-width: 220px;
            z-index: 9;
            right: -220px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 20px 0 0 20px;
        }
        .side-bar.active {
            right: 0;
        }
        .side-bar, .side-button {
          background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }
        .side-button {
            opacity: 1;
            visibility: visible;
        }

        .tab-wrap ul {
          font-size: 19px;
        }
    }

    @media(max-width: 345px) {
        .side-bar.active .side-button {
            opacity: 0;
            visibility: hidden;
        }
        .side-bar.active .side-button.closer {
            opacity: 1;
            visibility: visible;
        }
    }

/*Defaults*/

.banner {
    padding: 80px 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.9;
}

.block-array {
    position: relative;
    padding: 80px 0;
}

.block-array .service-block {
    position: relative;
    display: block;
    box-shadow: 0 0 20px 10px var(--secondary)0a;
    padding: 20px;
}

.block-array .service-block .image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-array .service-block .title {
    font-size: 24px;
    margin: 15px 0;
    font-weight: bold;
}

.block-array .service-block p {
    font-size: 14px;
}

.founder {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.9;
}

.founder .image {
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 90%;
    background-position: center;
    float: right;
    background-size: cover;
}

.welcome.page {
    position: relative;
    padding: 80px 0;
}

h1,h2,h3,h4 {
    /*font-size: inherit !important;*/
    /*font-weight: inherit !important;*/
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    background: var(--primary);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.sub {
    font-size: 22px;
    color: var(--secondary);
    text-transform: uppercase;
}

.heading {
    font-size: 65px;
    line-height: 65px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.heading span {
    /*background-image: linear-gradient(55deg, #80A0DF 0%, #7CD2CC 33%, #7CD2CC 66%, #80A0DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400%;*/
    color: var(--secondary);
}

.form-control {
    border-radius: 0;
}

/*Footer*/



/*Responsive*/

@media only screen and (min-width : 1200px) {
    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
        padding-left: 0;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .top-header .logo {
      display: none;
    }

    .top-header {
        display: none;
    }

    .header .bottom-header {
        position: fixed;
        z-index: 99999;
        width: 100%;
        top: 0;
        padding-left: 0;
    }

    .header .logo {
        text-align: left !important;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: white;
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
    }

    .header .bottom-header ul.menu {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: #191b1d;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .bottom-header ul.menu li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .bottom-header ul.menu li a {
        padding: 22px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .bottom-header ul li ul.dropdown {
        position: relative !important;
        left: 50%;
        top: 0;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        opacity: 0;
/*        background: white;*/
        text-align: center;
        height: auto;
        visibility: hidden;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        transform: translate(-50%);
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
        text-align: center;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }

    body {
        text-align: center;
    }

    .left-banner {
        display: none;
    }
    
    .container-fluid {
        padding-left: 0;
    }

    .split-section .split-content {
        padding: 80px 20px;
    }
}

@media (max-width: 991px) {
    .text-right,.text-left {
        text-align: center !important;
    }

    .hero .main {
        font-size: 35px;
        line-height: 35px;
    }

    .hero {
    	padding:180px 0;
    }

    .hero .cfhold {
        margin-top: 20px;
    }

    .discover {
        padding: 80px 0;
    }

    .discover .middle-sec {
        padding: 20px;
    }

    .about {
        padding: 0;
    }

    .about .about-image {
        width: 100%;
    }

    .about .about-image::after,
    .about .about-image::before {
        display: none;
    }

    .about .col-md-7 {
        margin-bottom: 40px;
    }

    .heading {
        font-size: 25px;
        line-height: 25px;
    }

    .sub {
    	font-size: 18px;
    }

    .hero .hblock {
    	padding: 20px;
    }

    .hero .aholder {
    	justify-content: center;
    }
}

@media (max-width: 768px) {
    .team .member {
        margin: 20px;
    }

    .hero .hblock {
    	margin-top: 20px;
    }

    .hero .hblock .image {
    	min-height: 150px;
    	margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

}

@media (max-width: 400px) {

}


/* ==========================================================
   EPK RESPONSIVE PACK (paste at END of CSS)
   ========================================================== */

/* a bit safer: don't let cards overflow on tiny screens */
#epk-export * {
  box-sizing: border-box;
}

@media (max-width: 1400px) {
  .container.wide {
    max-width: 1400px;
  }
}

/* ---------- <= 1200px (laptops / small desktops) ---------- */
@media (max-width: 1200px) {

  /* your .container is used globally in your theme,
     so we scope it to the EPK only */
  #epk-export .container,
  #epk-export .container.wide {
    padding: 30px 30px;
  }

  .hero {
    padding: 0 30px;
    background-attachment: scroll; /* fixed bg can glitch on mobile/laptop */
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* make stats span full width as a nicer layout */
  .stats {
    grid-column: 1 / -1;
  }

  .bio-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .promoter-booking {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .track-info h3 {
    font-size: 16px;
  }
}

/* ---------- <= 991px (tablet) ---------- */
@media (max-width: 991px) {

  #epk-export .container,
  #epk-export .container.wide {
    padding: 26px 20px;
    font-size: 12px;
  }

  .pdf-export-mode,
.pdf-export-mode p {
  font-size: 12px !important;
}

  /* hero becomes more "banner-like" */
  .hero {
    height: auto;
    min-height: 420px;
    padding: 60px 20px;
    background-attachment: scroll;
  }

  .hero img {
    max-height: 100px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .content-grid {
    grid-template-columns: 1fr; /* stack the three blocks */
    gap: 18px;
  }

  .bio-gallery {
    grid-template-columns: 1fr; /* stack bio + gallery */
    gap: 18px;
  }

  .promoter-booking {
    grid-template-columns: 1fr; /* stack vault + form */
    gap: 18px;
  }

  /* make track cards more compact */
  .track-card {
    padding: 12px;
    gap: 12px;
  }

  .track-cover {
    width: 74px;               /* fixed size works better on mobile */
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    flex: 0 0 auto;
  }

  .track-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .track-info p {
    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* stats: make items align nicely */
  .stat-item {
    padding: 12px;
  }
}

/* ---------- <= 768px (large phones / small tablets) ---------- */
@media (max-width: 768px) {

  .section-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .bio-section,
  .gallery,
  .latest-mix,
  .top-original,
  .stats,
  .promoter-vault,
  .booking-form {
    padding: 18px;
    border-radius: 12px;
  }

  .bio-section p {
    font-size: 13px;
  }

  /* genre pills: wrap tighter */
  .genre-pill {
    font-size: 11px;
    padding: 6px 10px !important;
  }

  /* gallery tiles slightly taller */
  .gallery-item {
    border-radius: 10px;
  }

  .pdf-export-mode #epk-export { font-size: 18px; }
.pdf-export-mode #epk-export p { font-size: 1em; }
.pdf-export-mode #epk-export .genre-pill { font-size: 1em !important; }

/* === PDF FIXES (put at very end) === */

/* 1) Kill the global font override (comment out your 22px rule) */
/* .pdf-export-mode,
.pdf-export-mode p { font-size: 22px !important; } */

/* 2) Set controlled sizes instead */
.pdf-export-mode #epk-export { font-size: 12px !important; }
.pdf-export-mode .bio-section p { font-size: 11px !important; line-height: 1.35 !important; }
.pdf-export-mode .genre-pill { font-size: 11px !important; padding: 4px 10px !important; }


.pdf-export-mode .pdf-bio-gallery-row .gallery-grid {
  grid-template-columns: repeat(1, 1fr) !important;
}


}

/* MOBILE PDF: swap booking form for info list */
.pdf-mobile-shot .booking-form {
  display: none !important;
}

.pdf-mobile-shot .promoter-vault-pdf {
  display: block !important;
}

/* MOBILE PDF: strip player UI */
.pdf-mobile-shot .waveform,
.pdf-mobile-shot .play-controls,
.pdf-mobile-shot .play-btn,
.pdf-mobile-shot .time-slider {
  display: none !important;
}



/* ---------- <= 576px (phones) ---------- */
@media (max-width: 576px) {

  #epk-export .container,
  #epk-export .container.wide {
    padding: 22px 14px;

  }

  .pdf-export-mode {
    font-size: 12px !important;
  }

  .hero {
    padding: 48px 14px;
    min-height: 380px;
  }

  .hero img {
    max-height: 90px;
    margin-bottom: 14px;
  }

  .press-kit-btn {
    width: 100%;
    max-width: 360px;
    padding: 14px 18px;
  }

  .track-card {
    align-items: flex-start;
  }

  .track-cover {
    width: 64px;
    border-radius: 10px;
  }

  .track-info h3 {
    font-size: 14px;
  }

  .track-info p {
    font-size: 11px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* stats: bigger tap / readability */
  .stat-text {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* ---------- <= 400px (tiny phones) ---------- */
@media (max-width: 400px) {

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 15px;
  }

  .track-cover {
    width: 56px;
  }

  .genre-pill {
    font-size: 10px;
    padding: 5px 9px !important;
  }
}


/* ===== STOP PDF PAGE BREAKS ===== */
.pdf-export-mode * {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

.pdf-export-mode .epk-section,
.pdf-export-mode .track-card,
.pdf-export-mode .stat-item,
.pdf-export-mode .bio-section,
.pdf-export-mode .gallery-item {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* Mobile screenshot PDF mode: keep the site layout, don't swap to pdf-only */
.pdf-export-mode.pdf-mobile-shot .pdf-only { display: none !important; }
.pdf-export-mode.pdf-mobile-shot .pdf-hide { display: block !important; }

/* Also neutralise any aggressive PDF font overrides you added */
.pdf-export-mode.pdf-mobile-shot,
.pdf-export-mode.pdf-mobile-shot p,
.pdf-export-mode.pdf-mobile-shot h1,
.pdf-export-mode.pdf-mobile-shot h2,
.pdf-export-mode.pdf-mobile-shot h3,
.pdf-export-mode.pdf-mobile-shot .genre-pill {
  font-size: inherit !important;
}
