
/* Header */
.header-bar {
    width: 100vw !important;
    background-color: var(--primary-color);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; 
    min-width: 0;
}

.header-bar > div,
.header-bar > * {
    min-width: 0; 
}

.logo-image {
    height: auto;
    max-height: 50px;
    object-fit: contain;
}


.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    min-width: 0;
    max-width: 120px;     
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-label {
    margin: 0 4px;
    color: white;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: 36px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 120px;
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lang-menu li {
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-menu li:hover {
    background: #f0f0f0;
}

.lang-menu .active-lang {
    font-weight: bold;
    color: var(--primary-color, #B51398);
}

.banner-bg {
    position: relative;
    width: 100vw;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.banner-image {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
    top: 0;
    left: 0;
}