/* BAAS Logo - Vertical Layout */
.legends-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 8px;
}

.legends-emblem {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.legends-text {
    font-size: 18px;
    font-weight: bold;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.legends-text-small {
    font-size: 14px;
}

.legends-text-large {
    font-size: 24px;
}

/* Logo SVG Styles */
.logo-svg {
    width: 100%;
    height: 100%;
}

/* Header Logo */
.header .legends-logo {
    color: white;
}

.header .legends-text {
    color: #D4AF37;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .legends-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .legends-emblem {
        width: 48px;
        height: 48px;
    }
}