/**
 * ==========================================================
 *  File: style-footer.css
 *  Project: New Dawn Pro – Rise Edition
 *  Version: 3.1.1
 *  Author: The Rev. Dr. Rick G. Williams
 *  Organization: New Dawn Digital Studios
 *  URL: https://newdawndigital.net
 *  Copyright © 2025
 * ==========================================================
 *
 *  Base footer styling for New Dawn Pro – Rise Edition.
 *  Handles footer layout, navigation, and responsive behavior.
 *
 */

/* --------------------------------------------------------
   Footer Base
--------------------------------------------------------- */

.site-footer {
    background: #0f1d2f;
    color: #ffffff;
    padding: 2.2rem 0;
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-inner {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --------------------------------------------------------
   Footer Navigation
--------------------------------------------------------- */

.footer-navigation {
    margin-bottom: 1.2rem;
}

.footer-navigation a {
    color: #ffffff;
    margin: 0 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus {
    opacity: 1;
    color: #cce6ff;
}

/* --------------------------------------------------------
   Copyright / Footer Info
--------------------------------------------------------- */

.site-info {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.site-info a {
    color: #cce6ff;
    text-decoration: underline;
}

/* --------------------------------------------------------
   Back-to-Top Button (Optional)
--------------------------------------------------------- */

.ndp-back-top {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    background: #14304a;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.ndp-back-top:hover {
    background: #1c4467;
}

/* --------------------------------------------------------
   Responsive Footer Adjustments
--------------------------------------------------------- */

@media (max-width: 768px) {

    .footer-navigation a {
        display: inline-block;
        margin: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .footer-inner {
        width: 94%;
    }
}

@media (max-width: 480px) {

    .footer-navigation {
        margin-bottom: 1rem;
    }

    .footer-navigation a {
        display: block;
        margin: 0.3rem 0;
    }

    .site-info {
        font-size: 0.85rem;
    }
}

/**
 * --------------------------------------------------------------
 * END OF FILE: style-footer.css
 * New Dawn Pro – Rise Edition v3.1.1
 * URL: https://newdawndigital.net
 * --------------------------------------------------------------
 * © 2025 The Rev. Dr. Rick G. Williams
 * ALL RIGHTS RESERVED
 * EOF
 */
