
    
/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sunset-orange);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--sunset-orange);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-orange) ;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
}
