/* static/css/header.css */

header {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    background-color: #1a2a4c;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.header-finoria-title {
    font-family: 'SUSE', sans-serif;
    color: white;
    font-size: 55px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4) !important;
    animation: float 3s ease-in-out infinite;
    animation-play-state: running;
    transform-origin: center;
}

.header-text-button {
    font-family: 'Outfit', sans-serif;
    background-color: transparent;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 20px;
    display: inline-block; 
    text-align: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.header-text-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.header-finoria-title:hover {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.02) !important;
}

.header-finoria-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4a6491;
    transition: width 0.3s ease;
}

.header-finoria-title:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .header-right {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .header-text-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

