/* Desktop Header Styles */
#app-header {
    height: 400px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.header-top-row {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 16px;
    position: relative;
    z-index: 2;
}

.header-logo {
    height: 30px;
    width: auto;
}

.header-main-banner {
    height: 299px;
    width: 100%;
    position: relative;
}

.header-banner-image {
    width: 100%;
    height: 271px;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

.header-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 271px;
    display: flex;
    z-index: 0;
}

.overlay-column-left {
    flex: 1;
    background-color: rgba(200, 18, 41, 0.478);
}

.overlay-column-right {
    flex: 1;
}

.header-title-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 272px;
    height: 105px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Language Switcher Desktop */
.language-switcher {
    display: flex;
    justify-content: flex-end;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.language-switcher-current {
    width: 101px;
    text-align: center;
    color: #862733;
    font-size: 12px;
    font-weight: 400;
    word-wrap: break-word;
    justify-content: right;
    display: flex;
    align-items: center;
}

.language-arrow {
    margin-left: 4px;
    width: 12px;
    height: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
    min-width: 80px;
}

.language-dropdown-item {
    width: 100%;
    text-align: center;
    color: #862733;
    font-size: 12px;
    font-weight: 400;
    word-wrap: break-word;
    padding: 8px 12px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: background 0.2s;
}

.language-dropdown-item:hover {
    background-color: #f0f0f0;
} 