
/** * Footer Styles — Pure CSS (NO Bootstrap/Tailwind) * Uses CSS custom properties from layouts/app.blade.php [data-theme] blocks. * All var() calls include hardcoded fallbacks for resilience. * Requirements: 5.4, 5.6 */
.site-footer { padding: 3rem 0 0; background: var(--secondary-bg, #f0f0f5); color: var(--text-color, #333); margin-top: auto; transition: background var(--transition-speed, 250ms) var(--transition-ease, cubic-bezier(0.4, 0, 0.2, 1)), color var(--transition-speed, 250ms) var(--transition-ease, cubic-bezier(0.4, 0, 0.2, 1));
} .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem;
} .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem;
} .footer-column { display: flex; flex-direction: column;
} .footer-logo-link { display: inline-block; margin-bottom: 1rem;
} .footer-logo { max-width: 125px; height: auto; display: block;
} .social-section { margin-top: 1rem;
} .social-text { display: block; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-color-muted, #666); line-height: 1.5;
} .social-links { display: flex;flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0;
} .social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary, #D4A574); color: white; border-radius: 50%; text-decoration: none; transition: all 0.3s ease;
} .social-icon:hover { background: var(--primary-hover, #C4956A); transform: translateY(-2px); color: white; text-decoration: none;
} .footer-heading { font-size: 1rem; font-weight: 600; text-transform: uppercase; margin: 0 0 1rem 0; color: var(--text-color, #333); letter-spacing: 0.5px;
} .footer-links { list-style: none; padding: 0; margin: 0;
} .footer-links li { margin-bottom: 0.5rem;
} .footer-link { color: var(--text-color-muted, #666); text-decoration: none; transition: color 0.3s ease; font-size: 0.9rem; display: inline-block;
} .footer-link:hover { color: var(--primary, #D4A574); text-decoration: none;
} .footer-arrow::after { content: ' →'; margin-left: 0.25rem;
} /* Copyright Footer */
.copyright-footer { padding: 1.5rem 0; background: var(--tertiary-bg, #e9ecef); text-align: center; border-top: 1px solid var(--border-color, #dee2e6);
} .copyright-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem;
} .copyright-text { font-size: 0.9rem; color: var(--text-color-muted, #666); line-height: 1.6;
} .company-info { display: block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-color-muted, #999);
} /* Responsive Design */
@media (max-width: 768px) { .site-footer { padding: 2rem 0 0; } .footer-content { grid-template-columns: 1fr; gap: 1.5rem; } .social-links { justify-content: flex-start; }
} @media (max-width: 480px) { .footer-content { gap: 1rem; } .footer-heading { font-size: 0.95rem; } .footer-link { font-size: 0.85rem; }
} /** * Dark Mode Support — Footer * Uses [data-theme="dark"] selector to match the layout's theme system. * All colors reference CSS custom properties with hardcoded fallbacks. * Requirements: 5.4, 5.6 */
[data-theme="dark"] .site-footer { background: var(--secondary-bg, #16162a); color: var(--text-color, #f0f0f5);
} [data-theme="dark"] .footer-heading { color: var(--text-color, #f0f0f5);
} [data-theme="dark"] .footer-link { color: var(--text-color-muted, #8a8a9a);
} [data-theme="dark"] .footer-link:hover { color: var(--primary, #D4A574);
} [data-theme="dark"] .social-text { color: var(--text-color-muted, #8a8a9a);
} [data-theme="dark"] .social-icon { background: var(--primary, #D4A574);
} [data-theme="dark"] .social-icon:hover { background: var(--primary-hover, #C4956A);
} [data-theme="dark"] .copyright-footer { background: var(--tertiary-bg, #0f0f1a); border-edge-top-color: var(--border-color, #2a2a3e);
} [data-theme="dark"] .copyright-text { color: var(--text-color-muted, #8a8a9a);
} [data-theme="dark"] .company-info { color: var(--text-color-muted, #8a8a9a);
} /* Print Styles */
@media print { .site-footer { display: none; }
}
