/* FOOTER */
/* CSS Variables */
:root {
    --dark-green: #4CAF50; /* Main background color */
    --light-green-text: #fff; /* Light text color for better contrast */
    --secondary-green-text: #fff; /* Slightly lighter text for links/metadata */
}

/* Base Footer Styling */
.footer {
    background-color: var(--dark-green);
    color: var(--light-green-text);
    padding: 2.5rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Individual Column Styling */
.footer-column {
    flex: 1; /* Allows columns to grow */
    min-width: 200px; /* Minimum width before wrapping */
    margin-bottom: 2rem;
}

/* Company Info Column (gets more space on desktop) */
.company-info {
    flex: 2; /* Takes up more space */
    min-width: 280px;
    margin-right: 2rem;

}

.company-info h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-green-text);
    margin-bottom: 1rem;
}

.company-info .logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--logo-color);
    border-radius: 4px;
    margin-right: 0.5rem;
    /* Placeholder for an icon */
    display: inline-block; 
}

.company-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--secondary-green-text);
}

/* Links and Headers */
.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-green-text);
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--secondary-green-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--light-green-text);
}

/* Contact Info Specific Styling */
.contact-info ul li {
    display: flex;
    align-items: flex-start;
}

.contact-info .icon {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    color: var(--secondary-green-text);
    margin-top: 2px;
}

/* Copyright Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-green-text);
}

/* Media Query for Responsiveness (Tablet and Mobile) */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack all columns vertically */
    }

    .footer-column, .company-info {
        flex: none; /* Disable flex growth */
        width: 100%; /* Full width for columns */
        margin-right: 0;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Separator line for stacked columns */
    }
    
    .contact-info {
        border-bottom: none; /* Remove last separator */
        margin-bottom: 0;
    }
}