/* ===== Footer Styling ===== */

#footer {
    background: linear-gradient(135deg, #0f3057, #003f5c);
    padding: 40px 60px;  /* Taller footer */
    text-align: center;
    border-top: 4px solid #f3d9a5; /* Sandy accent line */
    position: relative;
}

/* Optional subtle texture effect */
#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04), transparent 40%);
    pointer-events: none;
}

/* Copyright text */
#copyright {
    color: #cde8f6; /* Sea mist colour */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer link styling (if you add links later) */
#footer a {
    color: #f3d9a5; /* Sand highlight */
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #ffffff;
}

