@font-face {
    font-family: Ubuntu-Regular;
    src: url('../fonts/ubuntu/Ubuntu-Regular.ttf'); 
}
  
@font-face {
    font-family: Ubuntu-Bold;
    src: url('../fonts/ubuntu/Ubuntu-Bold.ttf'); 
}

.page-footer {
    display: none !important;
}

@media screen and (min-width: 600px) {
    .page-footer {
        height: auto;
        min-height: 36px;
        display: block !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #827ffe;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        padding: 0.4rem 0;
        z-index: 1040;
    }
    
    .page-footer-content {
        font-family: Ubuntu-Regular;
        color: white;
        margin: 0.2rem 0;
        font-size: 0.875rem; /* 14px */
    }
    
    .page-footer-content a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
    }
    
    .page-footer-content a:hover {
        color: #ffd700;
        border-bottom-color: #ffd700;
        text-decoration: none;
    }
    
    .page-footer-hr {
        background: rgba(255, 255, 255, 0.3);
        height: 1px;
        border: none;
        margin: 0.35rem 0;
    }
    
    .page-footer .container-fluid {
        padding: 0 2rem;
    }
}

/* Mobile footer */
@media screen and (max-width: 599px) {
    .page-footer {
        position: relative;
        display: block !important;
        background: #827ffe;
        padding: 0.75rem 0;
        margin-top: 1.5rem;
    }
    
    .page-footer-content {
        font-family: Ubuntu-Regular;
        color: white;
        margin: 0.3rem 0;
        font-size: 0.8125rem; /* 13px */
    }
    
    .page-footer-content a {
        color: white;
        text-decoration: none;
    }
    
    .page-footer-hr {
        background: rgba(255, 255, 255, 0.3);
        height: 1px;
        border: none;
        margin: 0.6rem 0;
    }
}