/* 
 * FOOTER CSS
 * java.zamkinos.com/assets/css/footer.css
 */

/* FOOTER STYLES */
.main-footer {
    background: radial-gradient(circle at 80% 80%, #002c1e, #003f2a, #005235);
    color: white;
    padding: 2rem 0 1rem 0;
    border-top: 2px solid rgba(243, 173, 26, 0.3);
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(243, 173, 26, 0.2);
}

.footer-logo-container {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(243, 173, 26, 0.3);
    box-shadow: 0 0 10px rgba(243, 173, 26, 0.2);
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.footer-logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(243, 173, 26, 0.4);
    border-color: rgba(243, 173, 26, 0.5);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.1);
}

.footer-brand-text {
    color: white;
    text-align: center;
}

.footer-brand-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 200, 0, 0.7);
    background: linear-gradient(90deg, #ffd700, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 12px;
    color: #f3ad1a;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(243, 173, 26, 0.4);
    margin: 0;
    line-height: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #f3ad1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(243, 173, 26, 0.3);
}

.footer-section p {
    color: #b0b8c0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b8c0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #f3ad1a;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(243, 173, 26, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(243, 173, 26, 0.2);
}

.footer-bottom p {
    color: #9ea7b1;
    font-size: 13px;
    margin: 0;
    text-shadow: 0 0 5px rgba(243, 173, 26, 0.2);
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-logo-section {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-container {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand-text h3 {
        font-size: 16px;
    }
    
    .footer-subtitle {
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}