/* Header Component */

header {
    padding: 30px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-large {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Footer Component */

footer {
    padding: 40px 20px 30px;
    text-align: center;
}

.footer-large {
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    transition: color 0.3s ease;
}

.copyright {
    font-size: 14px;
    padding-top: 20px;
    margin-top: 20px;
}

.copyright-bordered {
    border-top: 1px solid currentColor;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-large {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
