/* Auto-generated splash screen CSS for: hotel */
/* Animation Type: fade */
/* Generated at: 2026-02-06 20:42:28 */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(222, 33, 33, 1);
    color: #000000;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity 0.5s ease-out;
    animation: splashFadeIn 0.8s ease-in-out;
    transition: opacity 0.5s ease-out;
}

.splash-screen-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
}

#splash-screen img.splash-screen-logo,
#splash-screen .splash-screen-logo-container img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    animation: splashImageFadeIn 0.8s ease-in-out 0.2s both;
    margin: 0;
}

#splash-screen h1 {
    animation: splashTextFadeIn 0.8s ease-in-out 0.4s both;
}

#splash-screen p {
    animation: splashTextFadeIn 0.8s ease-in-out 0.6s both;
}

@keyframes splashFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes splashImageFadeIn {
    from { opacity: 0; transform: scale(0.8) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes splashTextFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #splash-screen img {
        max-width: 200px;
        max-height: 200px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #splash-screen img {
        max-width: 150px;
        max-height: 150px;
        margin-bottom: 15px;
    }
}

#splash-screen h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #000000;
}

#splash-screen p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0;
    color: #000000;
}

#splash-screen > div:last-child {
    margin-top: 30px;
}

#splash-screen[style*='display: none'] {
    display: none !important;
}

#splash-screen[style*='opacity: 0'] {
    opacity: 0 !important;
}


/* Loader Styles - Type: circle */
#splash-screen > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

#splash-screen .splash-loader-circle {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #000000;
    border-radius: 50%;
    animation: splashLoaderCircle 1s linear infinite;
}

@keyframes splashLoaderCircle {
    to { transform: rotate(360deg); }
}

