
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace;
    cursor: none; /* Hides default cursor */
}


body {
    background: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start; /* Aligns content properly */
    align-items: flex-start;
    position: relative;
}


.custom-cursor {
    position: fixed;
    font-size: 18px;
    font-weight: bold;
    color: white;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
    z-index: 1000;
}


.header {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    max-width: 50%; 
}


.company-name {
    font-size: 10em; 
    font-weight: 700;
    text-align: right;
    white-space: normal;
    max-width: 100%;
}


.logo {
    max-width: 120px; 
    height: auto;
    margin-right: 15px; 
    object-fit: contain;
}


.menu-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px 0;
}


.fullscreen-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 0.6s ease-in-out;
}

/* Exit Menu Button (—) */
.exit-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3em;
    color: white;
    cursor: pointer;
}


.fullscreen-menu ul {
    list-style: none;
}

.fullscreen-menu li {
    margin: 20px 0;
}

.fullscreen-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
}


.page-content {
    text-align: center;
    font-size: 1.2em;
}


.back-link {
    color: white;
    text-decoration: none;
    display: block;
    margin-top: 20px;
}

@keyframes distortion {
    0% { transform: skewX(0deg) scale(1); opacity: 1; }
    20% { transform: skewX(5deg) scale(1.05); opacity: 0.9; }
    40% { transform: skewX(-5deg) scale(0.95); opacity: 1; }
    60% { transform: skewX(3deg) scale(1.02); opacity: 0.95; }
    80% { transform: skewX(-3deg) scale(0.98); opacity: 1; }
    100% { transform: skewX(0deg) scale(1); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Fix Layout While Hovering */
.distortion {
    display: inline-block;
    font-size: 6em; /* Adjust size */
    font-weight: 700;
    color: white;
    transition: all 0.2s;
    position: relative;
}

.distortion:hover {
    animation: distortion 0.3s infinite alternate ease-in-out, flicker 0.1s infinite;
}


/* Title Wrapper to Keep it Centered */
.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full-screen height */
    width: 100%;
    text-align: center;
    position: absolute;
}