/* Modern Color Palette */
:root {
    --primary-purple: #662D91;
    --dark-purple: #4a1f68;
    --light-purple: #8b4bb8;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
}

/* Footer */
.theme-footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}

.theme-footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.theme-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-footer a:hover {
    color: var(--light-purple);
}

.theme-footer .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.theme-footer .social-icons a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.theme-footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Copyright Section */
.copyright-text {
    margin: 1rem 0;
    font-size: 0.95rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-footer {
        padding: 40px 0 15px;
    }
}
