/**
 * Footer CSS - Eleira Studio
 * File: /wp-content/themes/blocksy-child/assets/css/footer.css
 * 
 * Luxury footer styling to match your brand
 */

/* ========================================
   MAIN FOOTER STRUCTURE
   ======================================== */

.eleira-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px;
    margin-top: 60px;
}

.eleira-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.eleira-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.eleira-footer-column h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eleira-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eleira-footer-column li {
    margin-bottom: 12px;
}

.eleira-footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.eleira-footer-column a:hover {
    color: #ffffff;
}

/* ========================================
   CONNECT SECTION SPECIFIC
   ======================================== */

.eleira-footer-newsletter-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eleira-footer-newsletter-btn:hover {
    background: #555555;
    border-color: #777777;
    transform: translateY(-1px);
}

.eleira-footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eleira-footer-social a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.eleira-footer-social a:hover {
    color: #ffffff;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.eleira-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.eleira-footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.eleira-footer-legal {
    display: flex;
    gap: 24px;
}

.eleira-footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.eleira-footer-legal a:hover {
    color: #ccc;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .eleira-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .eleira-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .eleira-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .eleira-footer-container {
        padding: 0 20px;
    }
    
    .eleira-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .eleira-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .eleira-footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .eleira-footer-grid {
        gap: 30px;
    }
    
    .eleira-footer-column h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .eleira-footer-newsletter-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .eleira-footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .eleira-footer-column a,
    .eleira-footer-newsletter-btn,
    .eleira-footer-social a,
    .eleira-footer-legal a {
        transition: none;
    }
    
    .eleira-footer-newsletter-btn:hover {
        transform: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .eleira-footer {
        border-top: 2px solid #ffffff;
    }
    
    .eleira-footer-newsletter-btn {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .eleira-footer {
        display: none;
    }
}