html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: clip;

}
footer {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #ffffff;
    z-index: 10;
}


.row {
    margin-left: 0;
    margin-right: 0;
}
/* ====================== HERO SECTION ====================== */
.full-viewport-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 100vh;
}

/* ====================== BAND SECTIONS ====================== */
/* All bands are transparent so the fixed background shows through */
.band {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: transparent !important;
    align-content: center;
    justify-content: center;
}

    .band h2 {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .band p {
        color: #f0f0f0;
        text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    }

/* Dark overlay for sections that have .band-with-bg */
.band-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); /* Adjust 0.65 as needed */
    z-index: 1;
}

.band-light.band-with-bg::before {
    background-color: rgba(0, 0, 0, 0.40); /* Lighter overlay for light bands */
}
.container-fluid{
    padding: 0;
}

.band > .container-fluid {
    position: relative;
    padding: 0;
    z-index: 2;
}

/* ====================== PARALLAX BACKGROUND ====================== */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(/images/backgroundImage/20260321_171434.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* ====================== SCROLLING & HEADER ====================== */
:root {
    --header-height: 72px;
}

section {
    scroll-margin-top: var(--header-height);
}

/* ====================== CARDS & SCROLL CONTAINERS ====================== */
.horizontal-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

    .horizontal-scroll-container::-webkit-scrollbar {
        height: 8px;
    }

    .horizontal-scroll-container::-webkit-scrollbar-thumb {
        background-color: #adb5bd;
        border-radius: 4px;
    }

    .horizontal-scroll-container::-webkit-scrollbar-track {
        background: #f1f3f5;
    }

.card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}
.card {
    background: #8aa9c8;
    border-radius: 25px;
    margin: 10px;
}
.players-row {
    min-width: max-content;
}

/* ====================== MEDIA PLAYER ====================== */
#mediaPlayer {
    max-width: 500px;
}

.song-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #9ba89f;
    color: #fff;
    border: 3px solid black;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    background: #8AA9C8;
    padding: 10px;
    border-radius: 20px;
    border: 3px solid black;
}

.control-btn {
    background: #0cf;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}
    .control-btn:hover {
        background: #00aaff;
    }
    .control-btn .icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 28px;
        height: auto;
        max-height: 28px;
        object-fit: contain;
        transition: opacity 0.2s ease;
        pointer-events: none;

    }
    #playBtn {
        opacity: 1;
    }
    #pauseBtn {
        opacity: 0;
    }

.progress-container {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seek-bar {
    flex: 1;
    accent-color: #0cf;
}

.time {
    font-size: 14px;
    min-width: 40px;
    color: black;
}

.volume-container {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.volume-slider {
    accent-color: #0cf;
    width: 100px;
}

@media (max-width: 480px) {
    .player-controls {
        flex-direction: column;
    }

    .progress-container {
        width: 100%;
    }
}

/* ====================== PHOTO VIEWER ====================== */
#photoViewerContainer {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: #1e1e2f;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.image-container {
    position: relative;
    flex: 1;
    max-width: 100%;
    touch-action: pan-y;
}

#currentImage {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
    cursor: pointer;
    transition: transform 0.2s;
}

    #currentImage:hover {
        transform: scale(1.02);
    }

.nav-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 50px;
    height: 80px;
    font-size: 40px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

    .nav-btn:hover {
        background: #0cf;
        color: #000;
    }

.counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

input[type="range"] {
    touch-action: none;
}
