@import url(/static/styles/variables.css);

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    border-top: 1px solid rgba(180, 134, 88, 0.2);
    border-radius: 20px;
    margin-top: auto;
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(180, 134, 88, 0.3));
}

.footer-logo-text h3 {
    color: var(--text-color-primary);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo-text p {
    color: var(--text-color-secondary);
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(180, 134, 88, 0.1);
    border: 1px solid rgba(180, 134, 88, 0.3);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--text-color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 134, 88, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(180, 134, 88, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-color-secondary);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.8;
    font-style: italic;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 1rem 0;
        margin-top: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 1rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}



