/* Navigation Styles */
body {
    margin: 0;
    padding: 0;
    padding-top: 70px; /* Add padding to account for fixed header */
}

/* Hamburger menu button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-right: 20px;  /* Reduced right margin to move menu all the way right */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Navigation Links - Hidden by default */
.nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #111827;
    list-style: none;
    margin: 0;
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Overlay when menu is open */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(3px);
}

.overlay.active {
    display: block;
}

/* Header styles */
.main-header {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1f2937; /* Matching footer background */
    z-index: 1000;
}

.header-content {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
}
