/**
 * Additional Styles - Transalliance Logistics
 * This file is for any additional custom styles
 */

/* Smooth scroll offset for fixed elements */
html {
    scroll-padding-top: 75px;
}

/* Language dropdown */
.header-lang {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.header-lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--color-azure-6, #000B1E);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    min-width: 60px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-lang.open .header-lang-dropdown {
    display: block;
}

.header-lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}

.header-lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}
