/* Premium Header Styling */
.akshardham-header {
    background-color: rgba(230, 228, 220, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Exact creamy off-white matching image */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 90px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle bottom border */
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hamburger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 1.5px;
    background-color: #1a1a1a;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger-icon:hover span {
    background-color: #666;
    /* Hover effect */
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    /* Spacing between nav items identical to image */
    flex: 3;
}

.nav-item {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 11px;
    letter-spacing: 4px;
    /* Wide tracking for elegant look */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-item:hover {
    opacity: 0.6;
}

.nav-item.active {
    color: var(--orange-accent, #ea580c);
    border-bottom: 2px solid var(--orange-accent, #ea580c);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.logo-wrapper img {
    height: 65px;
    /* Adjusting the gurukul logo height */
    object-fit: contain;
}

.header-right {
    flex: 1;
    /* Spacer to keep the center completely balanced */
}

/* Responsive adaptations */
@media (max-width: 992px) {
    .nav-item {
        display: none;
        /* Hide text menu on smaller screens */
    }

    .header-center {
        gap: 0;
    }
}

@media (max-width: 576px) {
    .akshardham-header {
        padding: 0 20px;
        height: 70px;
    }

    .logo-wrapper img {
        height: 45px;
    }
}