﻿.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.loading-pelican {
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

.pelican-body {
    fill: #ffffff;
    stroke: #1a75ff;
    stroke-width: 3;
}

.pelican-wing {
    fill: #e6f0ff;
    stroke: #1a75ff;
    stroke-width: 3;
    animation: flapWings 2s ease-in-out infinite;
    transform-origin: center;
}

.pelican-neck {
    fill: none;
    stroke: #1a75ff;
    stroke-width: 3;
    animation: neckMove 3s ease-in-out infinite;
}

.pelican-head {
    fill: #ffffff;
    stroke: #1a75ff;
    stroke-width: 3;
}

.pelican-beak {
    fill: #ffd700;
    stroke: #cc9900;
    stroke-width: 2;
}

.pelican-pouch {
    fill: #ff9999;
    stroke: #ff6666;
    stroke-width: 2;
    animation: breathe 2s ease-in-out infinite;
}

.pelican-eye {
    fill: #000000;
}

.pelican-legs {
    stroke: #1a75ff;
    stroke-width: 3;
    stroke-linecap: round;
}

.loading-text {
    margin-top: 20px;
    color: #1a75ff;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes flapWings {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@keyframes neckMove {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}
