/* ========================================
   SPLASH SCREEN STYLES
   ======================================== */

/* Background Video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: -1;
}

/* Main Splash Container */
.splash-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.splash-content {
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow-dark);
    animation: contentFadeIn 1.5s ease-in-out;
}


/* Splash Title */
.splash-title {
    font-size: 48px;
    color: var(--primary-orange);

    text-shadow: 2px 2px 4px var(--shadow-light);
    animation: titleFadeIn 2s ease-in-out;
}

/* Mission Section */
.splash-mission {
    font-size: 20px;
    color: var(--neutral-dark-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    animation: missionFadeIn 2.5s ease-in-out;
}

/* Team Section */
.team-section, .mission-section {
    margin-bottom: 40px;
    animation: teamFadeIn 3s ease-in-out;
}

.team-title {
    font-size: 24px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    position: relative;
}

.team-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.team-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.team-list1  {
    background: var(--primary-orange-light);
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--neutral-dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}
.team-list2  {
    background: var(--primary-orange);
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--neutral-dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}


/* Loader Container */
.loader-container {
    animation: loaderFadeIn 3.5s ease-in-out;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.loader-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: loaderPulse 1.5s infinite ease-in-out;
}

.loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.loading-text {
    color: var(--neutral-gray);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

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

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

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

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

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

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

@keyframes loaderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .splash-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .splash-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .splash-mission {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .team-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .team-list li {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .splash-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .splash-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .splash-mission {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .team-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .team-list li {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .loading-text {
        font-size: 14px;
    }
}