/* Simple Footer Styles - Group Project */

/* Ensure no white spacing issues */
body, html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.simple-footer {
    background: linear-gradient(
        135deg,
        rgba(27, 110, 194, 0.9) 0%,
        rgba(0, 180, 166, 0.8) 100%
    );
    margin: 0 !important;
    padding: 2rem 0 !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.simple-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(13, 202, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Aggressive Bootstrap override */
.simple-footer,
.simple-footer::before,
.simple-footer::after {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.simple-footer p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-attribution {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
    line-height: 1.4;
}

.simple-footer small {
    font-size: 0.85rem;
}

/* Remove any background containers and ensure full dark styling */
.simple-footer * {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.simple-footer .container {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 1rem !important;
    max-width: none !important;
    position: relative;
    z-index: 1;
}

.simple-footer .row {
    background: transparent !important;
    margin: 0 !important;
}

.simple-footer .col-md-8,
.simple-footer .col-md-4 {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .simple-footer .text-md-end {
        text-align: center !important;
    }
}
