/*==================================================
  HEADER
==================================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 140, 66, 0.3));
    transition: filter var(--transition-speed) ease;
}

.logo:hover .header-logo {
    filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.5));
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all var(--transition-speed) ease;
}

/*==================================================
  FOOTER
==================================================*/
footer {
    background: var(--primary-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*==================================================
 RESPONSIVE NAVIGATION
==================================================*/
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        visibility: hidden;
    }
 
    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
    }
 
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        width: 30px;
        height: 24px;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
    }
 
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-light);
        transition: all 0.3s ease;
    }
 
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
 
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
 
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
 
    .header-logo {
        width: 35px;
        height: 35px;
    }

    .nav-links li:empty {
        display: none;
    }
 }
 
 @media (max-width: 480px) {
    .header-logo {
        width: 30px;
        height: 30px;
    }
    
    .footer-links a {
        display: block;
        margin: 1rem 0;
    }
 }