﻿/* Splash Screen */
#splash-screen {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px; /* Adjust based on your logo size */
    height: 150px; /* Adjust based on your logo size */
}

.logo {
    width: 80px; /* Adjust based on your logo size */
    height: auto;
    z-index: 2;
}

.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: ripple 2s infinite;
    opacity: 0;
}

    .ripple-circle:nth-child(1) {
        animation-delay: 0s;
        border: 2px solid #3A2056;
    }

    .ripple-circle:nth-child(2) {
        animation-delay: 0.7s;
        border: 2px solid #6A277E;
    }

    .ripple-circle:nth-child(3) {
        animation-delay: 1.4s;
        border: 2px solid #B92881;
    }

@keyframes ripple {
    0% {
        transform: scale(0.6);
        opacity: 0.0;
    }

    25% {
        opacity: 0.6;
    }

    50% {
        opacity: 1.0;
    }

    75% {
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
