body,
html {
    overflow-x: hidden;
    max-width: 100%;
    cursor: url(../Images/fork.png), auto;
    background-color: #F9F9F9;
}

.nav-btn {
    position: fixed;
    top: 60px;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border-radius: 100px;
    border: 1px solid white;
    z-index: 2;
    mix-blend-mode: difference;
    transition: background-color 0.2s ease, color 0.2s ease, mix-blend-mode 0.2s ease;
}

.nav-btn:hover {
    background-color: black;
    color: white;
    border-color: black;
    mix-blend-mode: normal;
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

.Mini-Titles {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0;
    justify-content: space-between;
    font-size: Medium;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    width: 100vw;
    background-color: #F9F9F9;
    height: 40px;
    padding: 0 1rem;
    border-bottom: 0.5px solid #000000;
    z-index: 1;
}

.Mini-Titles :hover {
    font-style: italic;
}

.mini-titles-container {
    color: #333333;
    position: fixed;
    right: 10px;
}

.header {
    margin-top: 3rem;
}

a {
    text-decoration: none;
    color: black;
}

.description {
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    align-items: first baseline;
    width: 80%;
    max-width: 1200px;
    justify-content: space-between;
    gap: 100px;
    margin: 5rem auto 3rem;
    padding: 0 1rem;
}

#titles {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    font-size: medium;
    text-transform: uppercase;
    line-height: 2px;
}

span {
    font-weight: bold;
}

#date {
    text-transform: lowercase;
    font-style: italic;
    font-size: small;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: medium;
    text-transform: uppercase;
}

#artbio {
    width: 700px;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0;
}

.item {
    width: 100%;
    min-height: 100vh;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#one {
    position: relative;
    margin-top: 2rem;
    background-color: #EDEDED;
    overflow: hidden;
}

#one video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}

.video-controls-bar {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.play-pause-btn .icon-play {
    display: none;
}

.play-pause-btn .icon-pause {
    display: block;
}

.play-pause-btn.paused .icon-play {
    display: block;
}

.play-pause-btn.paused .icon-pause {
    display: none;
}

.video-seek-bar {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    cursor: pointer;
}

.video-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.video-seek-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.audio-toggle-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.audio-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.audio-toggle-btn .icon-unmuted {
    display: none;
}

.audio-toggle-btn .icon-muted {
    display: block;
}

.audio-toggle-btn:not(.muted) .icon-unmuted {
    display: block;
}

.audio-toggle-btn:not(.muted) .icon-muted {
    display: none;
}

#three {
    background-image: url(Images/tickets.png);
    background-size: cover;
    background-position: center center;
}

#four {
    background-image: url(Images/mockup.png);
    background-size: cover;
    background-position: center center;
}

#five {
    position: relative;
    background-color: #EDEDED;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.five-video-wrapper {
    flex: 1;
    min-height: 100vh;
    position: relative;
}

#five video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.five-video-spacer {
    height: 3rem;
    flex-shrink: 0;
    background-color: #EDEDED;
}

.five-side-videos {
    display: flex;
    width: 100%;
    gap: 0;
    min-height: 100vh;
    padding-bottom: 3rem;
}

.five-video-left,
.five-video-right {
    flex: 1;
    position: relative;
    background-color: #EDEDED;
    overflow: hidden;
}

.five-video-left video,
.five-video-right video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#six {
    background-image: url(images/5.png);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2rem 1rem;
}

.scroll-top-btn {
    padding: 8px 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.scroll-top-btn:hover {
    background-color: black;
    color: white;
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
        max-width: 100%;
        cursor: url(../Images/fork.png), auto;
        background-color: #F9F9F9;
    }

    .description {
        display: flex;
        flex-direction: column;
        font-family: Arial, Helvetica, sans-serif;
        font-size: small;
        width: 90%;
        gap: 20px;
        padding: 0 5%;
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    #artbio {
        width: 100%;
    }

    .item {
        min-height: 50vh;
    }

    .five-side-videos {
        flex-direction: column;
        min-height: auto;
    }

    .five-video-left,
    .five-video-right {
        min-height: 50vh;
    }

    .video-controls-bar {
        left: 12px;
        right: 64px;
        bottom: 16px;
    }

    .play-pause-btn {
        width: 36px;
        height: 36px;
    }

    .audio-toggle-btn {
        bottom: 16px;
        right: 12px;
    }

}