/*
 Theme Name:   A Song a Week
 Theme URI:    https://asongaweek.net
 Author:       Ben
 Author URI:   https://asongaweek.net
 Description:  Custom theme for asongaweek.net — weekly music showcase with Swiper carousels, countdown, registration, and artist slider.
 Version:      2.0.0
 Text Domain:  asongaweek
*/

/* ---- Reset & Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #38214a;
}

a { color: #38214a; }
a:hover { color: #2a1838; }

.grecaptcha-badge { visibility: hidden !important; }

/* ---- Site Logo (top left on all pages except home) ---- */
.site-logo-wrap {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
}

.site-logo img {
    height: 110px;
    width: auto;
    transition: opacity 0.3s;
}

.site-logo-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.site-logo-wrap:hover .site-logo img,
.site-logo-wrap.active .site-logo img {
    opacity: 0;
}

.site-logo-wrap:hover .site-logo-nav,
.site-logo-wrap.active .site-logo-nav {
    opacity: 1;
    pointer-events: auto;
}

.site-logo-wrap:hover .site-logo-hint,
.site-logo-wrap.active .site-logo-hint {
    opacity: 0;
}

.site-logo-hint {
    position: absolute;
    top: 38%;
    right: -28px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.site-logo-hint svg {
    width: 20px;
    height: 20px;
    color: #38214a;
}



.site-logo-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #38214a;
    transition: color 0.3s, transform 0.3s;
}

.site-logo-nav-icon:hover {
    color: #6b3fa0;
    transform: translateY(-3px);
}

.site-logo-nav-icon svg {
    width: 36px;
    height: 36px;
}

.site-logo-nav-icon span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-content-spacer {
    height: 150px;
}

.page-template-page-artists .site-content-spacer,
.page-template-page-tracks .site-content-spacer,
.page-template-page-schedules .site-content-spacer,
.single-schedule .site-content-spacer,
.single-artist .site-content-spacer,
.single-track .site-content-spacer {
    display: none;
}

/* ---- Home page body lock ---- */
body.page-template-template-home {
    overflow: hidden;
    height: 100vh;
}

/* ---- Background Video ---- */
.bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.82);
}

/* ---- Main Vertical Slider (index-start) ---- */
.main-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px;
}

/* ---- Scroll Hint (bottom chevron) ---- */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-hint svg {
    width: 28px;
    height: 28px;
    color: #38214a;
    opacity: 0.5;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

.scroll-hint--up {
    bottom: auto;
    top: 30px;
    animation: scrollPulseUp 2.5s ease-in-out infinite;
}

@keyframes scrollPulseUp {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(-6px); }
}

/* ---- Slide Nav (right side) ---- */
.slide-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.slide-nav a {
    font-size: 13px;
    font-weight: 600;
    color: #5a5066;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s;
    padding-right: 10px;
    border-right: 2px solid transparent;
    text-align: right;
}

.slide-nav a.active {
    color: #38214a;
    border-right-color: #38214a;
}

.slide-nav a:hover { color: #38214a; }

/* ---- Pagination Dots ---- */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #38214a;
    opacity: .25;
    transition: opacity .3s, transform .3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* ---- Overview Slide ---- */
.overview-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.overview-logo {
    min-width: 600px;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.home-nav-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 32px;
}

.home-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #38214a;
    transition: color 0.3s, transform 0.3s;
}

/* Fixed overlay for corner icons (outside Swiper to avoid transform clipping) */
.corner-icons-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 50;
}
.corner-icons-overlay .home-nav-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #38214a;
    pointer-events: auto;
    /*transition: top 1.2s ease-in-out, left 1.2s ease-in-out;*/
    transition: top 1s ease-in-out, left 1s ease-in-out;
}
.corner-icons-overlay .home-nav-icon:hover {
    color: #6b3fa0;
}
.corner-icons-overlay .home-nav-icon svg {
    width: 50px;
    height: 50px;
}
.corner-icons-overlay .home-nav-icon span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-nav-icon:hover {
    color: #6b3fa0;
    transform: translateY(-4px);
}

.home-nav-icon svg {
    width: 50px;
    height: 50px;
}

.home-nav-icon span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.overview-content p {
    font-size: 17px;
    font-weight: 400;
    color: #3d3350;
    line-height: 1.6em;
}

/* ---- Countdown ---- */
.qodef-countdown-wrap {
    padding: 25px 20px;
    background: transparent;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.qodef-countdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #38214a;
    letter-spacing: -0.005em;
    margin-bottom: 30px;
}

.qodef-countdown { width: 100%; }

.qodef-m-date {
    display: flex;
    justify-content: space-between;
}

.qodef-digit-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    min-width: 33%;
}

.qodef-digit {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    line-height: .9em;
    font-weight: 700;
    color: #38214a;
    margin: 4px 0 0 0;
}

.qodef-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #38214a;
    font-size: 18px;
    line-height: 1.32em;
    letter-spacing: -0.005em;
    margin-bottom: 4px;
    width: 100%;
    text-align: center;
}

/* ---- Form / Registration ---- */
.form-wrap {
    max-width: 600px;
    width: 100%;
}

.form-header { margin-bottom: 40px; }

.form-header h2 {
    font-weight: 700;
    color: #38214a;
    font-size: 36px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    letter-spacing: -0.005em;
    margin: 0 0 8px;

    /*font-size: 36px;*/
    /*   font-weight: 700;*/
    /*   color: #38214a;*/
    /*   letter-spacing: -0.01em;*/
    /*   margin-bottom: 20px;*/
}

.form-header p {
    font-size: 17px;
    font-weight: 400;
    color: #3d3350;
    line-height: 1.5em;
}

.qodef-contact-form-7 {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

input[type=text],
input[type=email],
textarea {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 18px;
    padding: 2px 0;
    font-family: inherit;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #3d3350;
    background-color: transparent;
    border: 0 solid rgba(139,131,149,.4);
    border-bottom-width: 1px;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    color: rgba(93,81,108,.7);
    background-color: transparent;
    border-color: #5a5066;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
    color: inherit;
    opacity: 1;
}

textarea {
    padding: 11px 0;
    border: 0 solid rgba(139,131,149,.4);
    border-bottom-width: 1px;
    resize: vertical;
    min-height: 120px;
}

select {
    width: 100%;
    padding: 2px 0 2px 8px;
    font-family: inherit;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #3d3350;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(139,131,149,.4);
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238b8395' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    margin: 0 0 18px;
    transition: border-color .2s ease-out;
}

select:focus { border-color: #5a5066; }

.checkbox-group { margin: 10px 0 18px; }

.checkbox-group label {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: #3d3350;
    cursor: pointer;
    padding: 6px 0;
}

.checkbox-group input[type=checkbox] {
    margin-right: 8px;
    accent-color: #38214a;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e4594b;
    margin-top: 4px;
}

.form-disclaimer {
    margin-top: 14px;
    font-size: 17px;
    color: #5a5066;
    font-weight: 400;
}

.form-response {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.form-response.success {
    background-color: rgba(56,33,74,.05);
    color: #38214a;
    border: 1px solid rgba(56,33,74,.1);
}

.form-response.error {
    background-color: rgba(228,89,75,.05);
    color: #e4594b;
    border: 1px solid rgba(228,89,75,.1);
}

.qodef-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 10px 0 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4em;
    outline: 0;
    box-sizing: border-box;
    transition: color .35s ease-out, background-color .35s ease-out, box-shadow .35s ease-out, transform .35s ease-out;
    padding: 7px 38px;
    color: #fff;
    background-color: #38214a;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px 0 rgba(56,33,74,0);
    transform: translateY(0);
}

.qodef-button:hover {
    box-shadow: 0 10px 25px 0 rgba(56,33,74,.5);
    transform: translateY(-3px);
}

.qodef-button .qodef-m-text {
    position: relative;
    display: inline-block;
}

/* ---- About Slide ---- */
.about-content {
    text-align: center;
    max-width: 700px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #38214a;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}


.whale {
    display: inline-block;
    animation: whaleSwim 3s ease-in-out infinite;
    font-size: 50px;
}

@keyframes whaleSwim {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-8px) rotate(-5deg); }
    50%  { transform: translateY(0) rotate(0deg); }
    75%  { transform: translateY(5px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.about-content p {
    font-size: 17px;
    font-weight: 400;
    color: #3d3350;
    line-height: 1.7em;
    margin-bottom: 14px;
}

/* ---- Album Carousel (showcase / single-schedule) ---- */
.qodef-album-player-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
}

.qodef-album-player-slider .swiper-wrapper {
    align-items: center;
    flex: 1;
    min-height: 0;
}

.qodef-album-player-slider .swiper-slide {
    width: 70%;
    padding: 0 2%;
}

.qodef-album-player-slider .qodef-e-inner {
    transform: translateY(10%);
    transition: transform .6s ease-in-out, opacity .5s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide-active .qodef-e-inner {
    transform: translateY(0);
}

.pair-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    margin: 4% 0 2%;
}

.pair-item {
    position: relative;
    flex: 0 0 auto;
}

.pair-item-link {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    border-radius: 50%;
}

.qodef-e-media-image {
    position: relative;
    margin: auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    height: 44vh;
    width: 44vh;
    max-width: 100%;
}

.qodef--background-svg {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    opacity: 1;
    transition: .5s ease-out .5s;
    overflow: visible;
    z-index: -1;
}

.qodef--background-svg path {
    fill: none;
    stroke-width: 2;
    stroke-linejoin: round;
}

.qodef-e-inner-info-holder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.qodef-album-player-slider .qodef-e-inner-info-holder {
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}

.swiper-slide-active .qodef-e-inner-info-holder {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease-in-out .3s, transform .5s ease-in-out .3s;
}

.qodef-e-title {
    margin: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.35);
    padding: 6px 16px 4px;
    border-radius: 6px 6px 0 0;
}

.qodef-e-info-content {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    margin-top: 0;
    background: rgba(0,0,0,0.35);
    padding: 2px 16px 6px;
    border-radius: 0 0 6px 6px;
}

/* ---- Player Bar ---- */
.qodef-album-player-slider .qodef-m-player-holder {
    transition: opacity .5s ease-in-out;
    opacity: 0;
}

.swiper-slide-active .qodef-m-player-holder {
    opacity: 1;
    transition: opacity .5s ease-in-out .3s;
}

.qodef-album-player {
    width: 100%;
    padding: 30px 0 10px;
}

.dual-player {
    display: flex;
    justify-content: center;
    gap: 4vw;
}

.qodef-m-player {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 118px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 7px 17.82px .18px rgba(228,155,148,.2);
    width: 44vh;
    max-width: 100%;
    overflow: hidden;
}

.player-custom-ui {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: opacity .3s ease;
}

.qodef-m-player.spotify-active .player-custom-ui {
    opacity: 0;
    pointer-events: none;
}

.spotify-iframe-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: 5px;
    overflow: hidden;
}

.qodef-m-player.spotify-active .spotify-iframe-wrap {
    opacity: 1;
}

.spotify-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.qodef-m-player-heading {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 7px;
}

.qodef-m-player-track-title {
    margin: 0 10px 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38214a;
}

.qodef-m-player-controls ul {
    display: flex;
    align-items: center;
    margin: 0; padding: 0;
    list-style: none;
}

.qodef-m-player-controls ul li { margin: 0; padding: 0; }

.qodef-m-player-controls ul li a {
    position: relative;
    display: block;
    color: #5a5066;
    line-height: 1;
    cursor: pointer;
    transition: color .2s;
}

.qodef-m-player-controls ul li a:hover { color: #38214a; }

.qodef-m-player-track-title a {
    color: inherit;
    text-decoration: none;
}

.qodef-m-player-track-title a:hover { color: #5a5066; }

.qodef-m-player-controls ul li a.jp-play { top: 1px; }

.qodef-m-player-controls-icon {
    display: block;
    width: 22px;
    height: auto;
    max-height: 24px;
    fill: currentColor;
}

.qodef-m-player-controls-icon.qodef--play { width: 23px; }

.qodef-m-track-progress {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 3px;
}

.qodef-m-track-progress * { width: 100%; height: inherit; }

.jp-seek-bar {
    cursor: pointer;
    background-color: rgba(139,131,149,.4);
}

.jp-play-bar {
    background-color: #38214a;
    width: 0%;
}

.qodef-m-player-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: -7px;
}

span.qodef-m-album-title,
a.qodef-m-album-title {
    color: #5a5066;
    text-decoration: none;
    font-size: 0.75rem;
}

a.qodef-m-album-title:hover { color: #38214a; }

.qodef-swiper-navigation-holder {
    padding: 20px 0 20px;
    margin-top: -10px;
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.schedule-label {
    font-size: 15px;
    font-weight: 600;
    color: #38214a;
    transition: opacity .3s ease-in-out;
}

/* ---- Artist Slider ---- */
.section-wrap {
    width: 100%;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 29px;
    font-weight: 700;
    color: #38214a;
    letter-spacing: -0.005em;
    line-height: 1.2em;
}

.qodef-artists-list {
    width: 100%;
    overflow: hidden;
}

.qodef-artists-list .swiper-slide {
    width: auto;
    text-align: center;
    margin-bottom: 20px;
}

.artist-slider .qodef-e-inner {
    position: relative;
    transform: none;
    transition: none;
    height: auto;
}

.artist-slider .qodef-e-media-image {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0;
    background: none;
    height: auto;
    width: auto;
}

.artist-slider .qodef-e-media-image > img {
    border-radius: 50%;
    transform: scale(.67) translateY(0);
    box-shadow: none;
    transition: transform .4s ease-out;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 324px;
}

.qodef-e-media-image-shadow {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    z-index: -1;
    transition: .5s ease-out;
    opacity: .5;
    transform: translateY(-12%) scale(.67);
    transform-origin: bottom;
}

.qodef-e-media-image-shadow > img {
    filter: blur(12px);
    border-radius: 50%;
    width: 100%;
    max-width: 324px;
    display: block;
    margin: 0 auto;
}

.swiper-slide {
    /*background: red;*/
}
.overview-content,
.qodef-countdown-wrap,
.form-wrap

{
        /*background: green;*/
}

.artist-slider .swiper-slide-active .qodef-e-media-image > img {
    transform: scale(.97) translateY(0);
}

.swiper-slide-active .qodef-e-media-image-shadow {
    opacity: .7;
    transform: translateY(3%) scale(.96);
}

.swiper-slide:not(.swiper-slide-active):hover .qodef-e-media-image-shadow {
    opacity: .6;
}

.artist-slider .swiper-slide:not(.swiper-slide-active):hover .qodef-e-media-image > img {
    transform: scale(.67) translateY(-10px);
}

.artist-slider .qodef-e-info-content {
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease-out .1s;
    font-size: inherit;
    color: inherit;
    text-shadow: none;
    margin-top: 0;
    background: none;
}

.artist-slider .swiper-slide-active .qodef-e-info-content {
    opacity: 1;
    transform: translateY(0);
}

.qodef-e-info-artist {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.qodef-e-info-content-link {
    display: inline-block;
    padding: 4px 12px 6px;
    border-radius: 5px;
    background: #38214a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease;
}

.qodef-e-info-content-link:hover {
    background: #2a1838;
    color: #fff;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 1366px) {
    .qodef-e-media-image { height: 40vh; width: 40vh; }
    .qodef-m-player { width: 40vh; }
}

@media only screen and (max-width: 1024px) {
    .qodef-digit { font-size: 50px; }
    .qodef-countdown-wrap { padding: 20px 15px; }
    .overview-logo { max-width: 320px; min-width: auto; }
    .qodef-e-media-image { height: 34vh; width: 34vh; }
    .qodef-m-player { width: 34vh; }
    .qodef-album-player-slider .swiper-slide { width: 80%; }
    .qodef-e-title { font-size: 1.3rem; }
    .artist-slider .qodef-e-media-image > img,
    .qodef-e-media-image-shadow > img { max-width: 260px; }
}

@media only screen and (max-width: 768px) {
    .site-logo-nav { width: calc(100vw - 40px); }
    .site-logo img { height: 90px; }
    .site-content-spacer { height: 135px; }
    .qodef-album-player-slider { height: auto; min-height: auto; }
    .qodef-album-player-slider .swiper-wrapper { align-items: flex-start; flex: none; }
    .qodef-album-player-slider .qodef-e-inner { height: auto; justify-content: flex-start; }
    .qodef-album-player-slider .swiper-slide:not(.swiper-slide-active) .qodef-m-player-holder { display: none; }
    .page-template-page-artists .site-content-spacer,
    .page-template-page-tracks .site-content-spacer,
    .page-template-page-schedules .site-content-spacer,
    .single-schedule .site-content-spacer,
    .single-artist .site-content-spacer,
    .single-track .site-content-spacer { display: block; }
    .home-nav-icons { gap: 24px; margin-top: 24px; }
    .home-nav-icon svg { width: 32px; height: 32px; }
    .home-nav-icon span { font-size: 11px; }
    .qodef-album-player-slider .swiper-slide { width: 90%; padding: 0; }
    .pair-holder { flex-direction: column; gap: 3vh; }
    .dual-player { flex-direction: column; align-items: center; gap: 2vh; }
    .qodef-e-media-image { height: 42vh; width: 42vh; }
    .qodef-album-player-slider .qodef-m-player { width: 42vh; max-width: calc(100% - 40px); margin: 0 auto; }
    .qodef-e-title { font-size: 1.4rem; }
    .main-slider { height: 100dvh; }
    .main-slider .swiper-slide { height: 100dvh; }
    .scroll-hint { bottom: 16px; }
}

@media only screen and (max-width: 680px) {
    .slide-nav { display: none; }
    .main-slider .swiper-slide { padding: 30px 20px; }
    .qodef-m-date { flex-wrap: wrap; }
    .qodef-digit-wrapper { min-width: 50%; margin-bottom: 30px; }
    .qodef-digit-wrapper:last-child { margin-bottom: 0; }
    .qodef-countdown-wrap { padding: 15px 10px; }
    .qodef-digit { font-size: 40px; }
    .qodef-label { font-size: 15px; }
    .overview-logo { max-width: 400px; min-width: auto; }
    .about-content h2 { font-size: 28px; }
    .slide-nav { gap: 20px; }
    .slide-nav a { font-size: 12px; }
    .qodef-button { width: 100%; text-align: center; }
    .artist-slider .qodef-e-media-image > img,
    .qodef-e-media-image-shadow > img { max-width: 220px; }
    .section-title h2 { font-size: 24px; }
}

@media only screen and (max-width: 500px) {
    .qodef-e-media-image { height: 36vh; width: 36vh; }
    .qodef-e-title { font-size: 1.1rem; }
}

@media only screen and (max-width: 480px) {
    .qodef-digit-wrapper { width: 100%; min-width: 100%; }
}

/* ---- Single Track Page ---- */
.single-track-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

.single-track-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 4%;
}

.single-track-page .qodef-e-media-image-holder {
    margin: 4% 0 2%;
    position: relative;
}

.single-track-page .qodef-e-media-image {
    height: 44vh;
    width: 44vh;
}

.single-track-page .qodef-m-player {
    width: 44vh;
    max-width: 100%;
    margin: 0 auto;
}

.single-track-page .qodef-album-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 0 10px;
}

@media only screen and (max-width: 1366px) {
    .single-track-page .qodef-e-media-image { height: 40vh; width: 40vh; }
    .single-track-page .qodef-m-player { width: 40vh; }
}

@media only screen and (max-width: 1024px) {
    .single-track-page .qodef-e-media-image { height: 34vh; width: 34vh; }
    .single-track-page .qodef-m-player { width: 34vh; }
}

@media only screen and (max-width: 768px) {
    .single-track-page { justify-content: flex-start; padding-top: 0; min-height: auto; }
    .single-track-page .qodef-e-media-image { height: 42vh; width: 42vh; }
    .single-track-page .qodef-m-player { width: 42vh; }
}

@media only screen and (max-width: 500px) {
    .single-track-page .qodef-e-media-image { height: 36vh; width: 36vh; }
    .single-track-page .qodef-m-player { width: 36vh; }
}

/* ---- Artists Carousel ---- */
.page-template-page-artists .qodef-album-player-slider .swiper-slide { width: 50%; }

@media only screen and (max-width: 1024px) {
    .page-template-page-artists .qodef-album-player-slider .swiper-slide { width: 60%; }
}

@media only screen and (max-width: 768px) {
    .page-template-page-artists .qodef-album-player-slider .swiper-slide { width: 75%; }
}

/* ---- Tracks Carousel ---- */
.page-template-page-tracks .qodef-album-player-slider .swiper-slide { width: 50%; }

@media only screen and (max-width: 1024px) {
    .page-template-page-tracks .qodef-album-player-slider .swiper-slide { width: 60%; }
}

@media only screen and (max-width: 768px) {
    .page-template-page-tracks .qodef-album-player-slider { height: auto; }
    .page-template-page-tracks .qodef-album-player-slider .swiper-slide { width: 75%; }
}

/* ---- Schedule Carousel (two-track pairs per slide) ---- */
.single-schedule .qodef-album-player-slider .swiper-slide,
.page-template-page-schedules .qodef-album-player-slider .swiper-slide {
    width: 64%;
}

.schedule-pair {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4vw;
    margin: 4% 0 2%;
}

.schedule-pair-label {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #38214a;
    order: 1;
}

.schedule-track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-track-item .qodef-m-player-holder {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.schedule-track-item .qodef-m-player {
    width: 44vh;
    max-width: 100%;
}

@media only screen and (max-width: 1366px) {
    .schedule-track-item .qodef-m-player { width: 40vh; }
}

@media only screen and (max-width: 1024px) {
    .single-schedule .qodef-album-player-slider .swiper-slide,
    .page-template-page-schedules .qodef-album-player-slider .swiper-slide { width: 72%; }

    .schedule-track-item .qodef-m-player { width: 34vh; }
}

@media only screen and (max-width: 768px) {
    .single-schedule .qodef-album-player-slider,
    .page-template-page-schedules .qodef-album-player-slider { height: auto; }

    .single-schedule .qodef-album-player-slider .swiper-slide,
    .page-template-page-schedules .qodef-album-player-slider .swiper-slide { width: 100%; padding: 0 20px; box-sizing: border-box; }

    .schedule-pair { flex-direction: column; gap: 4vh; }
    .schedule-track-item { flex-direction: row; align-items: center; gap: 3vw; width: 100%; }
    .schedule-track-item .pair-item { flex: 0 0 auto; }
    .schedule-track-item .qodef-e-media-image { height: 22vh; width: 22vh; }
    .schedule-track-item .qodef-m-player-holder { flex: 1; padding-top: 0; }
    .schedule-track-item .qodef-m-player { width: 100%; height: 100px; padding: 14px 20px; }
    .schedule-track-item .qodef-e-inner-info-holder { display: none; }
    .single-schedule .qodef-swiper-navigation-holder,
    .page-template-page-schedules .qodef-swiper-navigation-holder,
    .page-template-page-artists .qodef-swiper-navigation-holder,
    .page-template-page-tracks .qodef-swiper-navigation-holder { display: none; }
    .schedule-pair-label { display: block; order: 1; }
    .schedule-track-item:first-of-type { order: 0; }
    .schedule-track-item:last-of-type { order: 2; }
}

@media only screen and (max-width: 500px) {
    .schedule-track-item .qodef-e-media-image { height: 18vh; width: 18vh; }
    .schedule-track-item .qodef-m-player { height: 90px; padding: 10px 14px; }
}
