/* ===== COPYRIGHT FOOTER STYLES ===== */
.copyright-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #2c3e50;
    border-top: 2px solid #34495e;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    text-align: center;
}

.copyright-label {
    margin: 0;
    padding: 0;
    color: #ecf0f1;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.copyright-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.copyright-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.copyright-link:visited {
    color: #ffffff;
}

.copyright-link:active {
    color: #ffffff;
}

/* Ensure main content has bottom padding to avoid overlap */
body {
    padding-bottom: 60px; /* Adjust based on your copyright footer height */
}

.container {
    margin-bottom: 20px; /* Extra spacing for main container */
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .copyright-container {
        padding: 10px 15px;
    }
    
    .copyright-label {
        font-size: 12px;
        line-height: 1.3;
    }
    
    body {
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .copyright-container {
        padding: 8px 12px;
    }
    
    .copyright-label {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    body {
        padding-bottom: 45px;
    }
}