/* Splash screen specific styles */
#splash-screen {
    flex-direction: column; /* Align items vertically */
    justify-content: center;
    align-items: center;
    position: fixed; /* Ensure it covers the whole screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* Light grey background */
    opacity: 0; /* Start transparent */
    transition: opacity 0.5s ease-in-out; /* Smooth fade for .active class */
}

/* Make splash screen visible when active */
#splash-screen.active {
    opacity: 1;
    /* .screen.active from style.css will handle display:flex and z-index */
}

/* The .active class is added by main.js to trigger visibility */
/* No need for #splash-screen.active here as it's handled in style.css or js */

#splash-logo {
    display: block;
    max-width: 50%; 
    max-height: 50%; 
    min-width: 50px; 
    min-height: 50px; 
    color: #f0f0f0; 
    animation: fadeInScale 1s ease-out forwards;
}

/* Container for the sub-logos */
#splash-sub-logos {
    display: flex; /* Arrange sub-logos side-by-side */
    justify-content: center;
    align-items: center;
    margin-top: 25px; /* Space between main logo and sub-logos */
}

.splash-sub-logo-img {
    max-width: 240px;  /* Doubled from 120px */
    max-height: 120px; /* Doubled from 60px */
    margin: 0 20px;   /* Space between sub-logos */
    opacity: 0; /* Start hidden */
    animation: fadeIn 1s ease-out 0.5s forwards; /* Staggered fade-in */
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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