/* Splash Page Styles */
.splash-page {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    background-color: #f0f0f0;
}

/* Dark overlay to make text readable over any image */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.splash-page .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.splash-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.splash-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.splash-page h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.splash-page p {
    font-size: 1.2rem;
    line-height: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}