/* public/css/user/footer.css */

.footer {
    background-color: #1a1a1a; /* A slightly softer black */
    color: white;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif; /* Using a more modern font, ensure it's linked in your main layout */
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #a0a0a0;
}
.footer-column .address {
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.email-signup {
    display: flex;
    margin-top: 15px;
    border: 2px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 15px;
    outline: none;
}

.email-input::placeholder {
    color: #666;
}

.email-btn {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0 16px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.email-btn:hover {
    background-color: #333;
}

.social-icons {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ccc;
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}