* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Confillia Bold", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Confillia Bold", sans-serif;
    font-weight: bolder;
    font-size: 16px;
    overflow: hidden;
        /* Hide any potential scrollbars */
        touch-action: none;
        /* Prevent touch actions that can lead to accidental scrolling */
    
}

.cursor {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    z-index: 1000;
}

.logo a, .contact a {
    font-weight: bolder;
    font-size: 16px;
}

nav {
    position: fixed;
    width: 100%;
    padding: 30px 20px; /* shorthand */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marquee-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

.marquee-wrapper.t-1 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    
}

h1 {
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 200px;
    font-family: "Confillia Bold", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    width: 100%;
    white-space: nowrap;
    animation: marquee 85s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0%, -50%); }
    50% { transform: translate(-200%, -50%); }
    50.5% { transform: translate(-200%, -50%); }
    100% { transform: translate(0%, -50%); }
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
}

.modal-images {
    width: 100%;
    height: 100%;
}

.role {
    margin: 5px 0;
}

.img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.img#t-1 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.info {
    display: none;
}

.t-1 {
    background: #a80000;
}

.t-2 {
    background: #ceccc0;
}

.volume-5 .t-2 {
    background: #ffae00;
}

.t-3 {
    background: #a80000;
}



/* ipad pro */
@media(max-width: 1200px) {
    .marquee-wrapper h1 {
        font-size: 120px;
        /* Adjust as needed */
    }
    .contact {
        font-size: 16px;
    }
}
/* ipad */
@media(max-width: 900px) {
    .marquee-wrapper h1 {
        font-size: 100px;
        /* Adjust as needed */
    }
    .contact {
        font-size: 16px;
    }

}

@media (max-width: 600px) {
    .marquee-wrapper h1 {
        font-size: 80px;
        /* Adjust as needed */
    }
    .contact {
            font-size: 14px;
        }
}

a:link {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: white;
    background-color: transparent;
}

a:active {
    color: black;
    background-color: transparent;
}

/* transient hint toast */
.hint-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 10px);
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 14px;
    border-radius: 9999px;
    font-size: 14px;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    user-select: none;
    display: inline-flex;       /* center text inside the bubble */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hint-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}