/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    footer.css
    Created on : Dec 2, 2025, 4:47:30 a.m.
    Author     : Justin
*/

footer {
    background-color: #1a1a1a;
    color: #e7d9b1;
    text-align: center;
    padding: 20px 0;
    font-family: Georgia, serif;
}

footer p {
    margin: 0 0 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap; /* wraps nicely on small screens */
}

.footer-links a {
    text-decoration: none;
    color: #D3A417;        /* highlight color matches CTA */
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #e6b800;        /* subtle hover shift */
    text-decoration: underline;
}
