/* ========================================
   DESKTOP STYLES (Full View)
   ======================================== */

.copyright {
    background: linear-gradient(135deg, #1f2c22 0%, #2a3a2f 100%);
    border-top: 1px solid #4ade80;
    padding: 1.5rem 0;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-left {
    flex: 1;
    text-align: left;
}

.copyright-right {
    flex: 0 0 auto;
    text-align: right;
}

.copyright p {
    margin: 0;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
}

.copyright i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.copyright a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #4ade80;
}

.copyright-links {
    display: inline-block;
    margin-left: 1.5rem;
}

.copyright-separator {
    color: #6b7280;
    margin: 0 0.5rem;
}

.copyright-right p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.copyright-right a {
    color: #d1d5db;
}

/* ========================================
   MOBILE STYLES (Mobile View)
   ======================================== */

@media (max-width: 768px) {
    .copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .copyright-left {
        text-align: center;
    }
    
    .copyright-right {
        text-align: center;
    }
    
    .copyright-links {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}