/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    position: relative;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo-text span {
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
}

/* Footer layout */
.main-footer {
    padding: 3rem 2rem;
    margin-top: auto;
    border-top: 1px solid var(--card-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background: rgba(10, 12, 16, 0.4);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
}

.social-links a.facebook:hover { color: #1877F2; transform: translateY(-3px); }
.social-links a.youtube:hover { color: #FF0000; transform: translateY(-3px); }

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .main-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-center, .footer-right {
        justify-content: center;
        width: 100%;
        flex: none;
    }
}
