/* ============================================
   AUTH PAGES - NAVBAR & FOOTER STYLES
   ============================================ */

/* Ensure no grid layout for auth pages */
body {
    display: block !important;
    grid-template-columns: auto 1fr !important;
}

/* Navbar Styling */
nav {
    background: rgba(17, 18, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-sdb);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo i,
.logo span span {
    color: var(--accent-sdb);
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: var(--text-sdb);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-sdb);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.language-select {
    background-color: var(--section-bg);
    color: var(--text-sdb);
    border: 1px solid var(--line-sdb);
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-family: Poppins, 'Segoe UI', sans-serif;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* Footer Styling */
footer {
    background-color: #0a0a10;
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid var(--line-sdb);
}

.footer-logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-sdb);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo i,
.footer-logo span span {
    color: var(--accent-sdb);
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--secondary-text-sdb);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.footer-social-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    color: var(--text-sdb);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social-links a:hover {
    background-color: var(--accent-sdb);
    transform: translateY(-3px);
}

.copyright,
.copyright a {
    color: var(--secondary-text-sdb);
    font-size: 0.875rem;
}

.copyright a {
    font-weight: 700;
    text-decoration: none;
}

/* Container Styling for Auth Pages */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
}

.container-top {
    margin-top: 60px;
    min-height: calc(100vh - 60px - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links>li>a {
        padding: 0.75rem 1rem;
    }

    .hamburger {
        display: block;
    }

    footer {
        padding: 3rem 1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-social-links {
        gap: 0.5rem;
    }
}