/* Footer Contact Styles */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 600px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    width: 100%;
}

.footer-contact-item i {
    color: #8b7355;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
    margin: 0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.footer-contact-item p {
    max-width: 250px;
    word-wrap: break-word;
}

.footer-contact-item a:hover {
    color: #8b7355;
    text-decoration: underline;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(139, 115, 85, 0.2);
    color: #8b7355;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #8b7355;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-contact-item {
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-item p {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .footer-contact {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer-contact-item {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
    }
    
    .footer-social {
        width: 100%;
        justify-content: center;
    }
}
