﻿.mud-appbar,
.mud-dialog,
.mud-drawer {
    backdrop-filter: blur(20px) contrast(1.5) saturate(2) blur(10px) brightness(1.5) blur(20px);
    -webkit-backdrop-filter: blur(5px) contrast(1.5) saturate(2) blur(10px) brightness(1.5) blur(20px);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-overlay {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    text-align: left;
    z-index: 10;
}

.carousel-overlay-empty {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.carousel-overlay-right {
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    padding: 60px;
    text-align: right;
    z-index: 16;
}

.carousel-button {
    position: absolute;
    top: 75%;
    z-index: 10;
    margin-left: 1%;
    color: white;
}

.zoom-effect img {
    width: 100%;
    height: auto;
    transform: scale(1);
    animation: zoom-animation 8s infinite alternate ease-in-out;
}

@keyframes zoom-animation {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease-in-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left-to-right {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeftToRight 1s ease-in-out forwards;
}

@keyframes fadeInLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right-to-left {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRightToLeft 1s ease-in-out forwards;
}

@keyframes fadeInRightToLeft {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left-to-right {
    opacity: 0;
}

.animate-right-to-left {
    opacity: 0;
}

.animate-in-down {
    opacity: 0;
}

.animate-in-up {
    opacity: 0;
}

.equal-height-grid {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 1 auto;
}

    .equal-height-card > .MudCardContent {
        flex-grow: 1;
    }

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Images/Background/Background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.background-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Images/Background/Background_light.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.background-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Images/Background/Background2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.background-overlay-light2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Images/Background/Background_light.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.background-container {
    position: relative;
}

.navlink {
    background-color: transparent !important;
    color: inherit !important;
}

.dynamic-height-carousel {
    height: auto;
    max-height: 80vh;
    transition: height 0.3s ease;
    overflow: hidden;
}

    .dynamic-height-carousel .mud-carousel-item {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }

        .dynamic-height-carousel .mud-carousel-item p {
            overflow-wrap: break-word;
            margin: 0;
        }

.skcsFooter {
    padding-bottom: 0%
}

@media (max-width: 600px) {
    .skcsFooter {
        padding-bottom: 20%;
    }
}

.noclick {
    pointer-events: none;
}