﻿body, html {
    overflow-x: hidden;
}

.mouse-icon {
    position: absolute;
    border: 2px solid currentColor;
    border-radius: 30px;
    height: 50px;
    width: 30px;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

    .mouse-icon:before {
        content: "";
        display: block;
        position: relative;
        border-radius: 4px;
        background-color: currentColor;
        width: 4px;
        height: 10px;
        top: 4px;
        margin-left: auto;
        margin-right: auto;
        animation-name: drop;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-delay: 0s;
        animation-iteration-count: infinite;
        animation-play-state: running;
    }


.cover-letter {
    position: relative;
    font-family: "Montserrat", Helvetica, sans-serif;
    font-size: 20rem;
    line-height: 1;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.07);
    z-index: -2;
    -webkit-user-select: none;
    user-select: none;
}

    .cover-letter.letter-2x {
        font-size: 25rem;
    }

    .cover-letter.letter-3x {
        font-size: 30rem;
    }

    .cover-letter.letter-4x {
        font-size: 35rem;
    }

    .cover-letter.letter-5x {
        font-size: 40rem;
    }


.text-shadow-light {
    text-shadow: 0 0.5rem 1.5rem rgba(37, 39, 52, 0.05) !important;
}

.text-shadow-light-lg {
    text-shadow: 0 1.5rem 4rem rgba(37, 39, 52, 0.05) !important;
}

.text-shadow-dark {
    text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.text-shadow-dark-lg {
    text-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.12) !important;
}

.text-neumorphic-primary {
    color: #050CDD;
    text-shadow: 20px 20px 60px #040abc, -20px -20px 60px #060efe;
}

.text-neumorphic-secondary {
    color: #414455;
    text-shadow: 20px 20px 60px #646f7e, -20px -20px 60px #8897aa;
}

.text-neumorphic-light {
    color: #f5f7f9;
    text-shadow: 20px 20px 60px #cfd0d2, -20px -20px 60px #ffffff;
}

.text-neumorphic-dark {
    color: #100d22;
    text-shadow: 20px 20px 60px #06050e, -20px -20px 60px #110c3a;
}

.text-neumorphic-white {
    color: #fff;
    text-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #fff;
}


.overlay:not(.overlay-global):not(.overlay-advanced) {
    position: relative;
    z-index: 1;
}

.overlay.overlay-global, .overlay.overlay-advanced {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
    z-index: -1;
}

.overlay.overlay-global {
    position: fixed;
}

.overlay.overlay-advanced {
    position: absolute;
    border-radius: inherit;
}

    .overlay.overlay-advanced.vegas-container {
        height: auto !important;
    }

.overlay .overlay-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

    .overlay .overlay-inner.vegas-container {
        height: auto !important;
    }

.overlay .overlay-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    max-width: none;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.overlay canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.overlay[class*=overlay-]:not(.overlay-advanced):before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    z-index: -1;
}

.overlay-primary:before {
    background-color: #050CDD;
}

.overlay-secondary:before {
    background-color: #414455;
}

.overlay-success:before {
    background-color: #21ce5b;
}

.overlay-info:before {
    background-color: #3fc4e3;
}

.overlay-warning:before {
    background-color: #f3ed4f;
}

.overlay-danger:before {
    background-color: #ff5b5c;
}

.overlay-light:before {
    background-color: #f5f7f9;
}

.overlay-dark:before {
    background-color: #1d1e29;
}

.overlay-white:before {
    background-color: #fff;
}

.overlay-10:before {
    opacity: 0.1;
}

.overlay-20:before {
    opacity: 0.2;
}

.overlay-30:before {
    opacity: 0.3;
}

.overlay-40:before {
    opacity: 0.4;
}

.overlay-50:before {
    opacity: 0.5;
}

.overlay-60:before {
    opacity: 0.6;
}

.overlay-70:before {
    opacity: 0.7;
}

.overlay-80:before {
    opacity: 0.8;
}

.overlay-90:before {
    opacity: 0.9;
}

/* The parent container that clips the image */
.zoom-container {
    overflow: hidden;
    border-radius: 8px; /* Optional: matches Bootstrap card curves */
}

    /* The actual image or content inside */
    .zoom-container img {
        transition: transform .5s ease; /* Makes the zoom smooth */
        width: 100%;
    }

    /* The hover effect */
    .zoom-container:hover img {
        transform: scale(1.02); /* 1.1 = 110% size. Adjust as needed */
    }
