
/* ============================================================================
   FILE: assets/css/footer.css - Footer Styles
   ============================================================================ */

   .footer {
    background: #333;
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #555;
    padding: 12px 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.footer-copyright {
    border-top: 1px solid #555;
    padding-top: 30px;
    font-size: 12px;
    color: #999;
}
