@font-face {
    font-family: "Grotesk";
    src: url("fonts/OtoiwoGroteskCompressed-Black.otf");
}

* {
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

.page {
    position: absolute;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.3s ease;
    background-color: #fff;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Start Page Styles */
#start-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-image {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.start-image img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-button {
    font-family: "Grotesk", sans-serif;
    color: #fff;
    font-size: 3vh;
    background: #000;
    border: none;
    width: 35vw;
    height: 10vh;
    cursor: pointer;
    position: absolute;
    bottom: 7vh;
    right: 7vw;
    letter-spacing: 0.4vw;
}

.start-button:focus,
.start-button:active,
.start-button:hover {
    outline: none !important;
    background: #000 !important;
    color: #fff !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}


/* Gallery Page Styles */
#gallery-page {
    background: #fff;
    overflow: hidden;
}

.gallery-container {
    width: 900vw; /* 9 slides × 100vw each */
    height: 100vh;
    display: flex;
    overflow: hidden;
    transition: transform 0.5s ease;
    transform: translateX(0);
    position: relative;
}

.arrows {
    position: fixed;
    width: 100vw;
    height: 15vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.arrows img {
    height: 5vh;
    width: auto;
}

.gallery-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
}

.gallery-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Progress Bar Styles */
.progress-container {
    position: fixed;
    bottom: 6.5vh;
    right: 5vw;
    width: 9vw;
    z-index: 100;
    text-align: left;
}

.progress-text {
    font-family: "Grotesk", sans-serif;
    color: #000;
    font-weight: 800;
    font-size: 2vh;
    margin-bottom: 0;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.progress-text.hidden {
    opacity: 0;
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.progress-bar-image {
    width: 100%;
    height: auto;
}

.progress-dot {
    width: 1.5vh;
    height: 1.5vh;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%)  rotate(45deg);
    transition: left 0.3s ease;
    box-shadow: 0 0 2vh rgba(255, 255, 255, 0.5);
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.back-button {
    position: fixed;
    font-family: "Grotesk", sans-serif;
    color: #fff;
    font-size: 3vh;
    background: #000;
    border: none;
    width: 35vw;
    height: 10vh;
    cursor: pointer;
    bottom: 7vh;
    left: 7vw;
    letter-spacing: 0.4vw;
}

.back-button:focus,
.back-button:active,
.back-button:hover {
    outline: none !important;
    background: #000 !important;
    color: #fff !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}
