/* reset */

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

html, body { height: 100%; overflow: hidden; }

body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.stage {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* The video is shot portrait; rotate it to fill landscape screens. */
@media (orientation: landscape) {
    .bg-video {
        width: 100vh;
        height: 100vw;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
}

.logo {
    width: min(60vw, 420px);
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
    animation: fade-in 2s ease both;
}

.contact {
    position: absolute;
    top: 85%;
    font-weight: 500;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    opacity: 0.66;
    animation: fade-in-contact 2s ease 1s both;
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fade-in-contact {
    from { opacity: 0; }
    to   { opacity: 0.66; }
}

.audio-toggle {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}

.audio-toggle:hover { background: rgba(0, 0, 0, 0.45); }
.audio-toggle img { width: 1.1rem; height: 1.1rem; }