/* French Flag Styling */
.logo-flag {
    display: flex;
    width: 50px;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    margin-right: 15px;
    animation: flagSwing 2s infinite ease-in-out;
}

/* Flag colors */
.flag-part {
    flex: 1;
    height: 100%;
}

.flag-part.blue {
    background: #0055A4;
}

.flag-part.white {
    background: #ffffff;
}

.flag-part.red {
    background: #EF4135;
}

.mascot img {
    width: 100px;
    height: auto;
    animation: floatMascot 3s ease-in-out infinite;
}

@keyframes floatMascot {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}