/* ---------- Base styles ---------- */
@font-face {
    font-family: "Seven";           /* your custom name */
    src: url("fonts/seven.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    font-family: "Seven", sans-serif;
    color: var(--text, white);
}

/* Full viewport for html/body */
html, body {
    height: 100%;
    overflow: hidden;
}

/* ---------- Panorama ---------- */
.panorama {
    position: fixed;   /* key change */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;

    z-index: -1;       /* push it behind everything */
}

.header {
  
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) scale(0.57);
    transform-origin: top center;

    z-index: 10;
}

/* Track for scrolling images */
.track {
    display: flex;
    width: max-content;
    animation: scroll 200s linear infinite; /* same speed as before */
}

/* Panorama images fill vertical, keep aspect ratio */
.track img {
    height: 100vh;
    width: auto;
}
.menu {
    position: fixed;
    top: 42.0%;
    left: 50%;
    transform: translate(-50%, -20%); /* slightly below logo */
    
    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 10;
}

.mc-btn {
    width: 400px;              /* adjust to your texture */
    height: 40px;

    background: url("button.png") no-repeat center/cover;
    border: none;
    outline: none;

    color: white;
    font-family: "Seven", sans-serif;
    font-size: 18px;
    text-shadow: 2px 2px 0 #000;
    background-size: 100% 100%;

    cursor: pointer;
}
.mc-btn:hover {
    background-image: url("button_highlighted.png");
}
.mc-btn:active {
   
}
.skin {
    position: fixed;        /* fixed to viewport */
    bottom: 20px;           /* distance from bottom */
    right: 20px;            /* distance from right */
    
    width: 100px;           /* adjust size as needed */
    height: auto;
    
    z-index: 10;            /* above panorama but below other UI if needed */
    pointer-events: none;   /* so it doesn’t block clicks on buttons */
}

/* Smooth horizontal scroll animation */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* move half of total width */
}