/* ...existing code... */

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80vw;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.logo img {
    height: 48px;
    width: auto;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none; /* Changed from disc to none */
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-nav li {
    position: relative;
    transition: color 0.2s;
}

.main-nav li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.main-nav li a:hover,
.main-nav li a:focus {
    background: #222;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Changed from center to flex-end for right alignment */
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: #222;
    border-radius: 2px;
    transition: width 0.2s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s, background 0.3s;
    transform-origin: right center; /* Ensures shrinking/expanding is from the right */
}

/* Hamburger collapse: all bars shrink to right */
.hamburger.collapse span {
    width: 2px;
}

/* Hamburger expand: each bar to different width */
.hamburger.expand span:nth-child(1) {
    width: 28px;
}
.hamburger.expand span:nth-child(2) {
    width: 21px; /* 75% of 28px */
}
.hamburger.expand span:nth-child(3) {
    width: 9.8px; /* 35% of 28px */
}

/* Mobile nav styles */
@media (max-width: 991px) {
    .header-container {
        max-width: 100vw;
        padding: 0.5rem 1rem;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -240px;
        width: 240px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        transition: right 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 1001;
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: flex-end;
        text-align: right;
    }
    .main-nav li {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .main-nav li a {
        width: auto;
        display: inline-block;
        padding: 0.75rem 0.5rem;
    }
    .hamburger {
        display: flex;
    }
}

/* Hide nav on mobile by default */
@media (max-width: 991px) {
    .main-nav {
        display: flex;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
    .main-nav {
        position: static;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        padding: 0;
        transition: none;
    }
    .main-nav ul {
        flex-direction: row;
        gap: 2rem;
    }
    .hamburger {
        display: none;
    }
}

.under-construction
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.footer-container
{
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;

}
.footer-container p
{
    color: #000000;
}
/* ...existing code... */
