/* Navigation Styles */
nav {
    background: #1B2A49;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #F5A623;
}

/* Work With Me CTA button */
.nav-links a.nav-cta {
    background: #F5A623;
    color: #1B2A49;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-links a.nav-cta:hover {
    background: white;
    color: #1B2A49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 75, 144, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links a:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links a:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-links a:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-links a:hover {
    color: #F5A623;
    transform: scale(1.1);
}

/* Navigation responsive styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        height: 60px;
    }
}