/* ============================================
   HAMBURGER MENU STYLES
   ADD THIS TO YOUR EXISTING styles.css FILE
   ============================================ */

/* Hamburger icon styling */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Main navigation styling */
    .main-nav {
        position: relative;
    }
    
    /* Hide nav container by default on mobile */
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, box-shadow 0.3s ease;
        box-shadow: none;
        z-index: 1000;
    }
    
    /* Show nav container when active */
    .nav-container.active {
        max-height: 500px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
    
    /* Mobile nav link styling */
    .nav-container .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        width: 100%;
		color: #333 !important;  
		display: block !important;
    }
    
    .nav-container .nav-link:hover {
        background-color: #f5f5f5;
    }
    
    /* Auth button on mobile */
    .nav-container .auth-button {
        margin: 10px 20px;
        text-align: center;
		color: #333 !important;
    }
}

/* Desktop styles (keep existing behavior) */
@media (min-width: 769px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
}