.header-desktop,
.language-dropdown-content {
    display: none;
}

.header-mobile button {
    background: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    text-align: inherit;
    vertical-align: baseline;
}

.header-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    background-color: rgba(82, 113, 255, 0.15);
    color: #00247d;
    padding: 0 10px;
    font-family: "Garet-Bold", sans-serif;
}

.header-mobile .buttons {
    font-weight: bold;
    font-size: clamp(1.25rem, 2vh, 3rem);
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}

.header-mobile .buttons button {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

.header-mobile .buttons .header-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header-mobile .buttons .header-button svg {
    width: clamp(2.5rem, 5vh, 7rem);
    height: auto;
    font-weight: 700;
}

.logo h1 {
    font-size: clamp(1.5rem, 4vh, 5rem);
    padding: 0;
    margin: 0;
    font-family: "Garet-Heavy", sans-serif;
    letter-spacing: 10px;
}

.header-mobile a {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.mobile-menu .language-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.mobile-menu .language-button img {
    border-radius: 10px;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: rgba(82, 113, 255, 0.15);
    position: relative;
    width: 100%;
    transition: max-height 0.3s ease-out;
    font-family: "Garet-Bold", sans-serif;
}

.mobile-menu.show {
    max-height: 500px;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    padding: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.mobile-menu a {
    cursor: grab;
    color: #00247d;
    font-size: clamp(1.25rem, 2vh, 3rem);
    display: block;
    padding: 10px;
}

.mobile-menu button {
    background: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    text-align: inherit;
    vertical-align: baseline;
}

.mobile-menu .language-selector {
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: center;
}

.mobile-menu .language-selector img,
.mobile-menu .language-option img{
    border-radius: 10px;
}

.mobile-menu .language-option {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}