.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid orange;
    pointer-events: none;
    z-index: 10000;
    /* transform: translate(1px, px); */
    transition: top 0.2s ease-out, left 0.2s ease-out;
    will-change: transform;
}

/* hide cursor for small devices */
@media (max-width: 768px) {
    .cursor {
        display: none;
    }
}

.main{
    z-index: 2;
    position: relative;
}

.content{
    background-color: var(--secondary-color);
}

.footer{
	min-height: 25vh;
    width: 100%;
    background-color: white;
    position: sticky;
    bottom: 0;
    z-index: 1;
    display: none;
}

/* New Simple Footer */
.site-footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #f5f8fb 100%);
    border-top: 2px solid rgba(42, 111, 151, 0.1);
    padding: 50px 30px 40px;
    margin-top: 80px;
    width: 100%;
    display: block;
}

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

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

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

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

.footer-nav a:hover {
    color: #1a4d68;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 111, 151, 0.15), transparent);
    margin: 30px 0;
}

.footer-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary-color);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 111, 151, 0.2);
}

.footer-social-icons img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(820%) hue-rotate(177deg) brightness(96%) contrast(87%);
}

.footer-social-icons a:hover img {
    filter: invert(100%);
}

.footer-credit {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.footer-credit p {
    margin: 0;
    padding: 0;
}

.footer-credit a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    text-decoration: underline;
    color: #1a4d68;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 30px;
        margin-top: 60px;
    }

    .footer-nav ul {
        gap: 20px;
        font-size: 0.9rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-divider {
        margin: 25px 0;
    }

    .footer-social-icons {
        gap: 15px;
    }

    .footer-social-icons a {
        width: 36px;
        height: 36px;
    }

    .footer-social-icons img {
        width: 18px;
        height: 18px;
    }

    .footer-credit {
        font-size: 0.8rem;
    }
}
