

.header {
    background-color: #272727;
    position: relative;
    z-index: 100;
    //margin-bottom: 26px;
}

.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.logo {
    background-color: #fddd10;
    display: flex;
    align-items: center;
    min-height: 85px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 10px;
}

.logo img {
    height: 65px;
    width: auto;
    margin-right: 10px;
}

.header .logo .text p{
    color: #272727;
    font-weight: 600;
    line-height: 1;
}

.logo-text p {
    font-size: 25px;
    line-height: 22px;
    margin: 0;
}

/* Desktop Navigation */
.navigation-desktop {
    display: none;
    flex: 1;
    padding-left: 20px;
}

.navigation-desktop a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.navigation-desktop a:hover {
    opacity: 0.5;
}

/* Header Links */
.header-links {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.header-links a:hover {
    opacity: 0.7;
}

.logout-btn {
    color: #fff;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s ease;
}

.logout-btn:hover {
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    margin-right: 10px;
}

/* Mobile Navigation */
.navigation-mobile {
    display: block;
    background-color: #3a3a3a;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.navigation-mobile.active {
    max-height: 400px;
}

.navigation-mobile a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: 1px solid #555;
    transition: background-color 0.3s ease;
}

.navigation-mobile a:hover {
    background-color: #555;
}

.navigation-mobile a:last-child {
    border-bottom: none;
}

.header .navigation-desktop{
    display:none;
    position:relative;
    padding-left:13px
}

@media only screen and (min-width:820px){
    
    .header .navigation-desktop{
        display:inline-block
    }

    .header .navigation-mobile{
        display:none !important;
    }

    .mobile-menu-toggle{
        display:none
    }
    .header .logo .text p{
        font-size: 25px;
    }

    .header-links {
        border-left: 1px solid #555;
    }

    .logout-btn {
        border-left: 1px solid #fff;
    }

    .header .header-links img{
        /* vertical-align: middle; */
        height: 24px;
        width: 20px;
    }

}

@media (max-width: 819px) {
    .logo {
        min-height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .logo-text p {
        font-size: 20px;
        line-height: 18px;
    }

    .header-links {
        gap: 10px;
        padding: 0 5px;
    }

    .header-links a {
        font-size: 18px;
    }

    .header .header-links img{
        /* vertical-align: middle; */
        height: 18px;
        width: 18px;
    }
}

@media (max-width: 480px) {
    .logo {
        min-height: 60px;
    }

    .logo img {
        height: 40px;
        margin-right: 8px;
    }

    .logo a {
        padding: 0 8px;
    }

    .logo-text p {
        font-size: 16px;
        line-height: 14px;
    }

    .header-links {
        gap: 8px;
    }

    .header-links a {
        font-size: 16px;
    }

    .header .header-links img{
        /* vertical-align: middle; */
        height: 16px;
        width: 16px;
    }

    .nav-mobile a {
        padding: 12px 15px;
        font-size: 14px;
    }
}
