/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    background-color: #2d3748;
    color: white;
}

/* Footer column spacing */
.footer-right {
  margin-left: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-column {
  width: 140px; /* Fixed width for columns */
}

.footer-column:not(:last-child) {
  margin-right: 30px; /* Reduced from 40px */
}


.dark-theme .footer {
    background-color: #1e1e1e;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    max-width: 260px;
    min-width: 220px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    z-index: -1;
}

.dark-theme .footer-logo::before {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(3px);
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.dark-theme .footer-logo-img {
    filter: brightness(0) invert(1);
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
}

.footer-column {
    min-width: 80px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e2e8f0;
}

@media (max-width: 864px) {
    .footer-left {
        width: 160px;
        min-width: 160px;
        margin-left: 0px;
    }

    .footer-right {
        margin-left: 10px;
    }

    .footer-column {
        width: 100px;
        gap: 16px;
    }
    .footer-logo-img {
        height: 18px;
    }
}


@media (max-width: 600px) {
    .footer {
        margin-top: 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 0;
    }
    
    .footer-left {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 20px;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-column {
        text-align: center;
        margin: 0;
        width: 100%;
    }
    .footer-column:not(:last-child) {
        margin: 0;
    }
    .footer-title {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .footer-logo-img {
        height: 28px;
        display: block;
        margin: 0 auto;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links a {
        text-decoration: none;
    }
}