/* Custom Hamburger Menu Styling */
/* Hide the library's default hamburger icon */
.hc-nav-trigger {
    display: none !important;
}

/* Custom hamburger menu button */
.menu-col {
    position: relative;
}

.custom-hamburger {
    position: fixed;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    z-index: 9999;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.custom-hamburger:hover {
    background: rgba(255, 255, 255, 1);
}

/* Show custom hamburger on mobile */
@media(max-width: 960px) {
    .custom-hamburger {
        display: flex;
    }
}

/* Three lines for hamburger */
.custom-hamburger-lines {
    width: 20px;
    height: 16px;
    position: relative;
}

.custom-hamburger-line {
    width: 20px;
    height: 2px;
    background: #2c3e50;
    border-radius: 1px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.custom-hamburger-line:nth-child(1) {
    top: 0;
}

.custom-hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.custom-hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Transform to X when active */
.custom-hamburger.active .custom-hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.custom-hamburger.active .custom-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.custom-hamburger.active .custom-hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

