/* Footer Custom Styles - Adding more breathing room */

/* Increase overall padding */
footer {
    padding-bottom: 40px;
}

/* Use flexbox for footer content layout */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 90px 0 60px;
}

/* Set width for footer columns */
.footer-col {
    flex: 1;
    min-width: 250px;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* Make the about column slightly wider */
.about-col {
    flex: 1.5;
    max-width: 400px;
}

/* Improve spacing for the footer column headings */
.footer-col h3 {
    margin-bottom: 40px;
    font-size: 1.5rem;
    position: relative;
}

/* Add a small decorative line under headings */
.footer-col h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Increase spacing between footer links */
.footer-links li {
    margin-bottom: 20px;
}

/* Add more spacing for contact items */
.contact-info .contact-item {
    margin-bottom: 30px;
}

/* Give more spacing to the footer social icons */
.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

/* Add more padding to the footer bottom section */
.footer-bottom {
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Make footer text slightly larger */
.footer-col p, 
.contact-info,
.footer-links a {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Add space between social icon and text in links */
.switch_icon_chevron_right,
.contact-icon {
    margin-right: 12px;
}

/* Increase space in contact item layout */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        padding: 70px 0 40px;
    }
    
    .footer-col {
        flex: 1 0 45%;
        margin-right: 20px;
    }
    
    .about-col {
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-col {
        flex: 1 0 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-col h3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 50px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
} 