﻿/* Add these styles to your existing CSS file */

/* Main Nav Wrapper */
.main-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

/* Site Navigation Menu */
.site-nav-menu {
    display: flex;
    align-items: center;
}

.site-nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
}

.site-nav-item {
    position: relative;
}

.site-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--nova-text-primary);
    font-weight: 500;
    text-decoration: none;
    padding: var(--space-sm) 0;
    transition: color 0.2s ease;
}

    .site-nav-link:hover,
    .site-nav-link.active {
        color: var(--nova-azure);
    }

/* Hide desktop navigation on mobile */
@media (max-width: 1024px) {
    .site-nav-menu {
        display: none !important;
    }

    .nav-actions .btn-outline {
        display: none !important;
    }

    .nav-actions .theme-toggle {
        display: flex !important;
    }
}

/* Footer Styles (keeping smaller logo) */
.main-footer {
    background: var(--nova-deep);
    color: white;
    padding: var(--space-2xl) 0;
    margin-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col.company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col.company-info {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

    .footer-logo-icon .logo-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.footer-description {
    color: var(--nova-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-title {
    color: var(--nova-text-primary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--gradient-accent);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--nova-text-secondary);
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--nova-azure);
            padding-left: 0.5rem;
        }

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--gradient-primary);
        transform: translateY(-3px);
        color: white;
    }

.footer-bottom {
    border-top: 1px solid var(--nova-border);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    color: var(--nova-text-secondary);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

    .footer-legal a {
        color: var(--nova-text-secondary);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

        .footer-legal a:hover {
            color: var(--nova-azure);
        }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
    box-shadow: var(--shadow-xl);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

    .floating-action-btn:hover {
        transform: scale(1.1);
    }

.fab-tooltip {
    position: absolute;
    left: 60px;
    background: var(--nova-deep);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-action-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}