/* Custom Neue Kabel font */
@font-face {
    font-family: 'Neue Kabel';
    src: url('assets/NeueKabel.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --scale: 1.5;
    --bauhaus-red: #cf3a2b;
    --bauhaus-green: #1c9446;
    --bauhaus-yellow: #ffcf01;
    --bauhaus-cyan: #4ec3c7;
    --bauhaus-purple: #6969b0;
    --bg-color: #ffffff;
}

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

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

body {
    font-family: 'Neue Kabel', 'Outfit', sans-serif;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 50px;
    gap: 50px;
}

/* Logo Styles */
.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 150px;
    height: auto;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Face Container - Centered */
.face-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    min-height: 200px;
}

/* Face Parts Container */
.face-parts {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Individual Face Parts */
.face-part {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.05s ease;
}

.face-part img {
    width: auto;
    height: auto;
    display: block;
}

/* Under Construction Text */
.under-construction {
    flex-shrink: 0;
    text-align: center;
    margin-top: 30px;
}

.under-construction span {
    font-family: 'Neue Kabel', sans-serif;
    font-size: clamp(24px, 3.5vw, 24px);
    font-weight: normal;
    color: #212121;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}


/* Smooth transitions for face changes */
.face-part {
    opacity: 1;
}

.face-part.changing {
    opacity: 0.9;
}