/* Navigation Bar */
.nav-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    }
.nav-container-left{
    display: flex;
    justify-content: flex-start;
    margin-left: -32vw;
    margin-top: 0.8vh;
}
.nav-container-right{
    display: flex;
    justify-content: flex-end;
}
.nav-container-right.nav-right-guest{
    margin-right: -32.5vw;
}
.nav-container-right.nav-right-auth{
    margin-right: -32.5vw;
}

.nav-box-left{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000d5;
    border: solid 0.05vh #f7b10a;
    width: 25vw;
    border-radius: 0.1vh;
    box-shadow: 0vh 0.1vh 0.2vh #1414148c;
} 
.nav-box-right{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8vh;
    border-radius: 0.1vh;
    width: auto;
}
.nav-btn1{
    background-color: #000000d5;
    border: solid 0.05vh #f7b10a;
    transition: 0.2s;
    padding: 1vh 1.4vh;
}
.nav-btn1:hover{
    border: solid 0.05vh #f7b10a;
    background-color: #b37a00;
    transition: 0.5s;
}
.nav-btn2{
    background-color: #ff0000a2;
    color: #f7b10a;
    border: solid 0.05vh #9b0202;
    transition: 0.2s;
    padding: 1vh 1.4vh;
}
.nav-btn2:hover{
    border: solid 0.05vh #9b0202;
    background-color: #e41111;
    transition: 0.5s;
}
.nav-left{
    display: flex;
    width: 23vw;
    justify-content: space-around;
    align-items: center;
    padding: 1vh 1.4vh;
}
.nav-right{
    display: flex;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2vw;
}
.nav-left a{
    color: #fff;
    font-size: 0.8vw;
    transition: 0.5s;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
}
.nav-left a:hover{
    color: #ffd089;
    transition: 0.2s;
}
.nav-right a{
    color: #fff;
    font-size: 0.8vw;
    transition: 0.5s;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
}
.nav-right a:hover{
    color: #ffd089;
    transition: 0.2s;

}
.dropdown-content a:hover{
    color: #fff;
    transition: none;
}
.profile-menu-wrapper{
    position: relative;
    display: flex;
    align-items: center;
}
.profile-trigger{
    border: solid 0.05vh #f7b10a;
    background-color: #000000d5;
    border-radius: 50%;
    padding: 0.3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.4vh 1.2vh rgba(0, 0, 0, 0.35);
}
.profile-trigger:hover,
.profile-menu-open .profile-trigger{
    background-color: #b37a00;
    border-color: #f7b10a;
    transform: translateY(-0.2vh);
}
.profile-trigger img{
    width: 4vh;
    height: 4vh;
    border-radius: 50%;
    object-fit: cover;
    border: solid 0.05vh #f7b10a;
}
.profile-menu{
    position: absolute;
    top: calc(100% + 1.2vh);
    right: 0;
    width: min(22vw, 320px);
    background-color: rgba(0, 0, 0, 0.92);
    border: solid 0.05vh #f7b10a;
    border-radius: 1vh;
    box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.45);
    padding: 1.4vh 1.2vh;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6vh);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 50;
}
.profile-menu-open .profile-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.profile-menu-header{
    display: flex;
    align-items: center;
    gap: 1.2vh;
    padding-bottom: 1vh;
    border-bottom: solid 0.05vh rgba(247, 177, 10, 0.35);
}
.profile-menu-avatar{
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    object-fit: cover;
    border: solid 0.05vh #f7b10a;
}
.profile-menu-details{
    display: flex;
    flex-direction: column;
    gap: 0.3vh;
    color: #fff;
}
.profile-menu-name{
    font-size: 1.9vh;
    font-weight: 600;
    letter-spacing: 0.05vh;
}
.profile-menu-role{
    font-size: 1.5vh;
    color: #ffd089;
}
.profile-menu-section{
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    padding: 0.6vh 0;
    border-bottom: solid 0.05vh rgba(247, 177, 10, 0.18);
}
.profile-menu-section:last-of-type{
    border-bottom: none;
}
.profile-menu-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #ffffffd0;
    font-size: 1.55vh;
    padding: 0.9vh 1vh;
    border-radius: 0.8vh;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
}
.profile-menu-item:hover{
    background-color: rgba(179, 122, 0, 0.28);
    color: #fff;
}
.profile-menu-chevron{
    font-size: 2vh;
    color: #f7b10a;
    line-height: 1;
}
.profile-menu-footer{
    padding-top: 0.8vh;
}
.profile-signout{
    display: block;
    text-align: center;
    padding: 1vh;
    color: #fff;
    background: #ff0000a2;
    border: solid 0.05vh #9b0202;
    border-radius: 0.8vh;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
}
.profile-signout:hover{
    background: #e41111;
    border-color: #9b0202;
}
.profile-menu-wrapper-guest .profile-menu-header{
    border-bottom: solid 0.05vh rgba(247, 177, 10, 0.25);
}
.profile-login-form{
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
}
.profile-login-field input{
    width: 90%;
    padding: 0.9vh 1vh;
    border-radius: 0.7vh;
    border: solid 0.05vh rgba(247, 177, 10, 0.35);
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 1.5vh;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.profile-login-field input:focus{
    outline: none;
    border-color: #f7b10a;
    box-shadow: 0 0 0.8vh rgba(247, 177, 10, 0.35);
}
.profile-login-submit{
    width: 96%;
    margin-top: 0.4vh;
    padding: 1vh;
    border-radius: 0.8vh;
    border: solid 0.05vh #f7b10a;
    background: linear-gradient(135deg, #f7b10a, #b37a00);
    color: #000;
    font-weight: 600;
    font-size: 1.6vh;
    cursor: url('/assets/images/cursor/cursor_pointer.png'), auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-login-submit:hover{
    transform: translateY(-0.15vh);
    box-shadow: 0 0.7vh 1.4vh rgba(247, 177, 10, 0.35);
}
.profile-login-submit:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.profile-login-error{
    min-height: 1.6vh;
    margin: 0;
    font-size: 1.35vh;
    color: #ffb5b5;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.profile-login-error.active{
    opacity: 1;
}
.profile-guest-footer{
    gap: 0.7vh;
    align-items: stretch;
}
.profile-guest-text{
    color: #ffffffc4;
    font-size: 1.4vh;
    margin-bottom: 0.2vh;
}
.profile-register-link{
    background-color: rgba(243, 182, 56, 0.12);
    color: #ffd089;
}
.profile-register-link:hover{
    background-color: rgba(243, 182, 56, 0.24);
    color: #fff;
}
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


