@font-face {
    font-family: "MewsFont";
    src: url("MewsFont-Regular.otf");
}

body {
    margin: 0;
    font-family: "MewsFont";
}

.siteCont {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    perspective: 1600px;
    transform-style: preserve-3d;
}

.skyBg {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(#cde7ff, #fdfaf5); */
    background: linear-gradient(#addce2,#67cdee);
    z-index: -2;
    pointer-events: none;
}

.cloudDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    animation: drift linear infinite;
    opacity: 0.8;
}

.cloudLarge {
    width: 353px;
    height: 115px;
}

.cloudMedium {
    width: 240px;
    height: 76px;
}

.cloudSmall {
    width: 121px;
    height: 36px;
}

@keyframes drift {
    from { 
        transform: translateX(0) scaleX(var(--cloud-scale));
    }
    to {
        transform: translateX(3000px) scaleX(var(--cloud-scale));
    }
}

.header {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 700;
    z-index: -1;
    color: #2e497b;
    animation: bob 4s ease-in-out infinite;
}

@keyframes bob {
    0% { transform: translate(-50%, 5px);}
    50% { transform: translate(-50%, -5px);}
    100% { transform: translate(-50%, 5px);}
}

.hausDiv {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: calc(100vh - 15%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightHaus {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    pointer-events: none;
}

.linkBar {
    width: 72%;
    height: calc(100% - 426px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    gap: 10px;
    z-index: 4;
    background: #fffac6;
}

.icon {
    font-size: 32px;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    height: 30%;
    margin-bottom: 10px;
    /* color: #ffd891; */
    color: #c7b28b;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    outline: none;
    text-decoration: none;
}

.mobileLabel {
    display: none;
}

.icon:hover {
    color: #ffd891;
    transform: translateY(-4px) scale(1.04);
}

.tooltip {
    position: absolute;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 5;
}

@media (max-width: 500px) {
    .siteCont {
       height: auto;
       min-height: 100vh;
       overflow-y: hidden;
    }

    .skyBg {
        height: 110vh;
        min-height: 100vh;
    }

    .header {
        font-size: clamp(24px, 6vw, 36px);
        top: 2%
    }

    .hausDiv {
        top: 10%;
        width: 80vw;
        height: auto;
    }

    .lightHaus {
        width: 100vw;
        top: calc(10% - 40px);
    }

    .linkBar {
        width: 90%;
        height: 50vh;
        padding: 12px 0;
        gap: 0;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .icon {
        font-size: 20px;
        padding: 0;
        margin-bottom: 20%;
        height: auto;
    }

    .mobileLabel {
        display: inline-block;
        padding-left: 4px;
        font-size: 18px;
    }

    .cloudLarge {
        width: 180px;
        height: auto;
    }

    .cloudMedium {
        width: 140px;
        height: auto;
    }

    .cloudSmall {
        width: 90px;
        height: auto;
    }

    @keyframes drift {
        from { transform: translateX(0);}
        from { transform: translateX(200vw);}
    }
}