/* Brand Styling */
.navbar-logo {
    height: 36px;
    width: auto;
    margin-right: 0.5rem;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: #4a5568 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea !important;
}

.nav-link i {
    opacity: 0.7;
}

/* Main Content */
main {
    flex: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    margin-top: auto;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.25rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    height: 100%;
}

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
