/* css/footer.css */

footer {
    background-color: #2c3e50; /* Darker background for modern look */
    color: #ecf0f1; /* Light text color */
    padding: 60px 0 20px 0; /* More padding top, less bottom for copyright */
    font-size: 0.95rem;
}

footer a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4CAF50; /* Green hover for links */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr; /* Adjust column widths */
    gap: 40px; /* Space between columns */
    padding-bottom: 40px; /* Space above the bottom copyright */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator line */
    margin-bottom: 20px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #4CAF50; /* Green heading */
    margin-bottom: 25px;
    position: relative;
}

/* Optional: Underline effect for headings */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #FFC107; /* Amber underline */
}

/* About Column */
.footer-col.about-col .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col.about-col .footer-logo img {
    width: 40px; /* Adjust logo size */
    height: auto;
    margin-right: 10px;
}

.footer-col.about-col .footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ecf0f1;
}

.footer-col.about-col p {
    line-height: 1.8;
    color: #bdc3c7; /* Lighter grey for body text */
}

/* Links Column */
.footer-col.links-col ul {
    list-style: none;
    padding: 0;
}

.footer-col.links-col ul li {
    margin-bottom: 12px;
}

.footer-col.links-col ul li a {
    display: flex; /* For icon alignment */
    align-items: center;
    color: #bdc3c7;
}

/* .footer-col.links-col ul li a:hover{
    border-bottom: 1px solid rgb(243, 238, 238);
} */

.footer-col.links-col ul li a::before {
    content: '\2022'; /* Unicode bullet */
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
}

/* Contact Column */
.footer-col.contact-col p {
    display: flex;
    align-items: flex-start; /* Align icon and text at top */
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-col.contact-col p i {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px; /* Adjust icon vertical alignment */
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.footer-bottom a {
    color: #7f8c8d;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #4CAF50;
}


/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-col {
        text-align: center; /* Center content in columns */
    }

    .footer-col h3::after { /* Center underline */
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col.about-col .footer-logo {
        justify-content: center; /* Center logo */
    }

    .footer-col.links-col ul {
        width: fit-content; /* Make list take only necessary width */
        margin: 0 auto; /* Center the list itself */
    }

    .footer-col.contact-col p {
        justify-content: center; /* Center contact info */
    }
}