.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(8, 5, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.logo {
    color: var(--accent-gold);
    font-size: 1.8rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: 50%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2rem;
    background: rgba(5, 3, 20, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    font-size: 1rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-gold-hover);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-logo-title {
    margin-bottom: 1.5rem;
    display: block;
    font-size: 2.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(8, 5, 23, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: all 0.5s;
        z-index: 90;
        padding-top: 60px;
        backdrop-filter: blur(10px);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
}

.footer-heading-secondary {
    margin-top: 15px;
}
