/* Footer Styles */
.footer-wrapper {
    background-color: #1f2937; /* bg-gray-800 */
    color: white;
    padding: 2rem 0; /* py-8 */
    margin-top: 3rem; /* mt-12 */
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem; /* px-4 */
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 800px) { /* md */
    .footer-content {
        flex-direction: row;
    }
}

.brand-section {
    margin-bottom: 1rem; /* mb-4 */
    text-align: center;
}

@media (min-width: 800px) { /* md */
    .brand-section {
        margin-bottom: 0;
        text-align: left;
    }
}

.footer-logo {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--primary-color); /* text-orange-500 */
}

.copyright {
    font-size: 0.875rem; /* text-sm */
    color: #9ca3af; /* text-gray-400 */
    margin-top: 0.5rem; /* mt-2 */
}

.footer-links {
    display: flex;
    gap: 1.5rem; /* space-x-6 */
    font-size: 0.875rem; /* text-sm */
}

.footer-links a {
    color: white;
    transition: color 0.15s ease-in-out;
}

.footer-links a:hover {
    color: var(--primary-color); /* hover:text-orange-500 */
}
