/*----------------------------------------------------------------------------*/
/*#region root */
/*----------------------------------------------------------------------------*/
:root {
    --bg: #fff;
    --text: #181a1e;
    --dark-blue: #22bdd6;
    --blue: #a7e1e2;
    --content-bg: #fff;
}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Overriding HTML Tag */
/*----------------------------------------------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    height: 100vh;
    width: 100vw;
    background-image: url("../asset/images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6, p, a, button, span {
    font-family: Arial;
}

img, svg, a {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Home Page */
/*----------------------------------------------------------------------------*/
/* Container styling */
.home-container {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 4vh 3rem !important;
    margin: 0;
    box-sizing: border-box;
}

.image-sources img {
    width: 100%;
    text-align: center;
}
.logo-img {
    max-width: 35vw;
}

.title-img {
    max-width: 60vw;
}

.description-img-2 {
    text-align: center;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 3vh;
    align-items: center;
}

.description-img {
    max-width: 75vw;
}

.bottom_text_image {
    max-width: 20vw;
    height: 100%;
    max-height: 1.6vh;
}


.shinning-effect {
    position: relative;
    /*padding: 1.25vh 0;*/
    background-color: var(--blue);
    border: none;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    width: 50vw;
}

.shinning-effect::before {
    content: '';
    position: absolute;
    top: 0;
    /*left: -50%;*/
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FFF, transparent);
    animation: shine 10s infinite ease-in-out;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.enter_button {
    height: 100%;
    max-height: 2.2vh;
    margin: 1.25vh 0;
}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Language selection Page */
/*----------------------------------------------------------------------------*/
.language-container {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 4vh 3rem !important;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.bottom_text {
    display: block;
}

.language-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 14vh;
}

.language-selection-title {
    margin-bottom: 3vh;
    max-width: 80%;
    height: 4vh;
}


.language-selection-button-list {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    align-items: center;
}

.lang-btn {
    width: 100%;
    max-width: fit-content;
    padding: 3vh 16vw;
    border: none;
    border-radius: 40px;
    box-shadow: 0 2px 3vw rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.3s ease;
    background-color: #efe6dd;
}

.lang-btn img{
    max-width: 70%;
}

.lang-btn.selected {
    background-color: var(--blue);
    font-weight: bold;
}

.lang-btn:hover:not(.selected) {
    background-color: #efe6dd;
}

.legal_age_popout_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.legal_age_popout {
    background-color: #efe6dd;
    border-radius: 25px;
    padding: 3vh 5vw;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 3vh;
    width: 70%;
}

.icon-image{
    max-width: 5vw;
    align-self: center;
}

.age-text{
    max-width: 85%;
    align-self: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1.5vw
}

.age-btn {
    padding: 1vh 11vw;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--blue);
}

.age-btn img{
    max-width: 5vw;
    height: 2.3vh;
}

.age-btn:active {
    background-color: var(--blue);
}

.age-btn:hover{
    background-color: var(--blue);
}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Map Page */
/*----------------------------------------------------------------------------*/
/* Container styling */
.story-container {
    /*position: relative;
    height: 100vh;*/
    /*width: 95vw;
    border: 2px solid var(--dark-blue);*/
    /*box-sizing: border-box;
    background-image: url("../asset/images/terrior_line.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    /*max-height: 100vh;*/
    /*max-width: 1200px !important;
    max-height: 1920px !important;*/
    aspect-ratio: 1200 / 1920;
    position: relative;
    padding: 4vh 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.background-svg-container {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.background-svg-container svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Pop-up Notification */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    visibility: visible;
}

.popup-container.gone{
    visibility: hidden;
    z-index: -10;
}

.notification-container {
    background-color: #efe6dd;
    border-radius: 20px;
    padding: 4vh 6vw;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 3vh;
    width: 70%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 20px;
}

.notification_title {
    max-width: 60%;
    align-self: center;
}

.notification_image{
    max-width: 80%;
}

.touchpoint {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.touchpoint[data-point="1"] {
    top: 18%;
    right: 9%;
}

.touchpoint[data-point="2"] {
    top: 43%;
    left: 18%;
}

.touchpoint[data-point="3"] {
    top: 74%;
    right: 18%;
}

.touchpoint-circle {
    position: relative;
    width: 8rem;
    height: 8rem;
    background-color: var(--blue);
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    display: flex;
    align-items: center !important;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.touchpoint.active .touchpoint-circle::before,
.touchpoint.active .touchpoint-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: inherit;
    height: inherit;
    background-color: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: waveEffect 2s infinite linear;
    z-index: 0;
}

.touchpoint.active .touchpoint-circle::before {
    animation-delay: 0s;
}

.touchpoint.active .touchpoint-circle::after {
    animation-delay: 0.5s;
}


@keyframes waveEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
/*.touchpoint.active .touchpoint-circle {
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}*/

.touchpoint-one-text{
    width: 20px !important;
    margin-right: 10px;
}

.touchpoint-circle img {
    width: 35px;
    height: auto;
    z-index: 1;
}

.touchpoint-tagname {
    background-color: var(--blue);
    border: 1px solid var(--dark-blue);
    padding: 0.7vh 4vw;
    text-align: center;
    color: var(--text);
    margin-top: 10%;
    animation: fadeInAnimation ease 2s;
    width: 22vw;
    display: flex;
    align-items: center;
}

.touchpoint-tagname img{
    object-fit: contain;
    height: 1.8vh;
    width: 100%;
}


.cask-text{
    /*width: 200px;*/
    padding: 1vh 1.5vw;
}

.touchpoint:not(.active) {
    pointer-events: none;
}

.touchpoint:not(.active) .touchpoint-circle{
    opacity: 0.75;
}

.touchpoint.disabled .touchpoint-circle {
    background-color: #d3d3d3;
    cursor: not-allowed;
    border: none;
    transition: none;
    opacity: 1;
    z-index: 1;
}

.completed-stamp{
    display: none;
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 100%;
    z-index: 2;
}

.completed-stamp.show{
    display: block;
    animation: fadeInAnimation ease 2s;
    height: 60%;
}

/* Path Lines */
.line-path {
    position: absolute;
    z-index: auto;
}


.line-path[data-line="1"] {
    /*animation: fadeInAnimation ease 5s;*/
    /*max-width: 64vw;*/
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.line-path[data-line="2"] {
    /*animation: revealStroke ease 5s;*/
    /*max-width: 41vw;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.touchpoint.disabled {
    display: flex;
    align-items: center;
}

.clip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /*clip-path: circle(0% at 0 0);*/
    z-index: 2;
    will-change: clip-path, transform;
    transform: translateZ(0);
    transition: clip-path 2.5s ease-in-out;
    display: none;
}

.clip video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
}

video::-webkit-media-controls {
    display: none !important;
    opacity: 0;
}

video::before{
    content: none !important;
}

video::cue {
    display: none;
}

.back-button {
    position: absolute;
    bottom: calc((70 / 1920) * 100%);
    left: calc((70 / 1200) * 100%);
    background-color: var(--blue);
    transform: translate(0, 0);
    display: flex;
    justify-content: center;
    padding: 1vh 2vw;
    width: 20vw;
    height: 3.5vh;
    cursor: pointer;
    pointer-events: auto;
}

.back-button img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.skip-button {
    position: absolute;
    bottom: 3.5vh;
    right: 4vw;
    padding: 1vh 2vw !important;
    border: none;
    background-color: var(--blue);
    /*display: block;*/
    z-index: 1000;
    pointer-events: auto;
    display: flex;
    /*width: auto !important;*/
    height: 4vh;
    align-items: center;
    justify-content: center; 
    gap: 2vw;
}

.skip-button img{
    object-fit: contain;
    width: 100%;
    height:100%;
}

.bottom_text_image_white {
    position: absolute;
    max-width: 20vw;
    bottom: 4vh;
    height: 100%;
    max-height: 1.6vh;
    transform: translateX(-50%);
    z-index: 1;
}

.arrow_icon {
    width: 5.5vw !important;
}

.continue_button {
    max-width: 19vw !important;
}

.touchpoint.disabled .touchpoint-line,
.touchpoint.disabled .touchpoint-tagname {
    visibility: hidden;
}

.touchpoint.disabled .touchpoint-circle img{
    opacity: 0.4;
}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Complete Page */
/*----------------------------------------------------------------------------*/
.endpage-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.endpage-container img{
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Store Selection Page */
/*----------------------------------------------------------------------------*/
.store-selection-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 0;
    box-sizing: border-box;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
}

.store-selection-container img {
    width: 40%;
}

.store-selection{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 6vh;
    align-items: center;
}

.store-label {
    font-size: 4rem;
    display: block;
    color: var(--text);
}

.store-dropdown {
    width: 80%;
    max-width: 600px;
    font-size: 4rem;
    border: 0.5px solid var(--text);
    border-radius: 15px;
    background-color: #efe6dd;
    appearance: none;
    -webkit-appearance: none;
    margin-top: 4vh;
    padding: 5px 10px;
    justify-content:center;
    text-align: center;
}

.store-dropdown:focus {
    outline: none;
}

.store-submit-btn {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 64px;
    color: var(--text);
    background-color: var(--blue);
    border: none;
    border-radius: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/*#region Media query */
/*----------------------------------------------------------------------------*/
@media screen and (max-width: 1024px){
    .shinning-effect{
        /*padding: 1.25vh 12vw;*/
        max-width: 50%
    }

    .enter-button img{
        max-width: 60%
    }

    .touchpoint-circle {
        width: 6rem;
        height: 6rem;
    }

    .touchpoint-one-text{
        width: 18px !important;
    }

    /*.touchpoint-tagname img{
        width: 130px;
    }

    .cask-text img {
        width: 180px;
    }*/
}


@media screen and (max-width: 600px) {
    .shinning-effect {
        max-width: 60%
    }

    .enter-button img {
        max-width: 60%
    }

    .lang-btn {
        width: 75%;
        padding: 2vh 2rem; /* Reduced padding for small screens */
        border-radius: 20px;
    }

    .lang-btn img{
        max-width: 50%;
    }

    .language-selection-title{
        max-width: 90%;
    }

    .touchpoint-circle{
        width: 4rem;
        height: 4rem;
    }

    /*.touchpoint-tagname img {
        max-width: 70px;
    }*/

    .touchpoint-one-text {
        width: 10px !important;
        margin-right: 5px;
    }

    /*.touchpoint-circle img {
        width: 20px;
    }*/
}

@media screen and (max-width: 480px) {

    .touchpoint-circle {
        width: 3rem;
        height: 3rem;
    }

    .touchpoint-circle img{
        width: 16px;
    }

}
/*----------------------------------------------------------------------------*/
/*#endregion*/
/*----------------------------------------------------------------------------*/


.hidden {
    display: none;
}