@font-face {
  font-family: poppin;
  src: local("Poppins-Medium"), url(../font/poppins.ttf) format("woff");
}

@font-face {
  font-family: Pyidaungsu;
  src: local("Pyidaungsu"), url(../font/Pyidaungsu.ttf);
}

@font-face {
  font-family: argon;
  src: local("argon"), url(../font/argon.ttf);
}

@font-face {
  font-family: hopong;
  src: local("hopong"), url(../font/hopongv1.ttf);
}

:root {
    font-size: 10px;
  --primarycolor: #f4a261;
  --secondarycolor: #0f3460;
  --bg-color: #1A1A2E;
  --smanga-bg: rgba(183,195,234,0.63);
  --text-white: #fff;
  --text-black: #000;
  --logo: url("../img/logo2.png");
  --body-font-size: 10px;
  --gradient: linear-gradient(to right, #f4a261, #b0c9d7);
}

body{
    font-family: hopong;
}

p{
    margin: 0;
    padding: 0;
}

.navbar-section{
    background-color: var(--primarycolor);    
    width: 100%;
}

.custom-navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    color: var(--text-black);
}

.logo-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.logo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-logo{
    font-size: 2rem;
    font-family: hopong;
    color: var(--text-black);
    margin: 0;
}

.nav-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list .nav-item .nav-link{
    text-decoration: none;
    color: var(--text-black);
    font-size: 1.8rem;
    font-family: hopong;
}

.profile-cont{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.profile-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-count{
    font-size: 1.6rem;
    color: var(--text-black);
    font-family: hopong;
}

.profile-name{
    font-size: 1.6rem;
    color: var(--text-black);
    font-family: hopong;
}

.dropdown-item{
    font-size: 1.6rem;
    color: var(--text-black);
    font-family: hopong;
}

@media screen and (max-width: 1024px) {
    .nav-list{
        display: none;
    }
    
    .logo-img{
        width: 35px;
        height: 35px;
    }

    .profile-img{
        width: 30px;
        height: 30px;
    }

    .nav-logo{
        font-size: 1.6rem;
    }

    .star-count{
        font-size: 1.4rem;
    }

    .profile-name{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 375px) {
    .nav-logo{
        font-size: 1.4rem;
    }

    .star-count{
        font-size: 1.2rem;
    }

    .profile-name{
        font-size: 1.2rem;
    }
    
}