@charset "utf-8";
/* CSS Document */

/* Footer Base */
.site-footer {
    background: #1e1e1e;
    color: #ccc;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Headings */
.site-footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Footer Text */
.site-footer p {
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

/* Animated underline */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease-in-out;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Social Icons */
.footer-social a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    box-shadow: 0 0 0px rgba(255,255,255,0);
}

/* Social Colors */
.footer-social .facebook { background: #1877F2; }
.footer-social .twitter { background: #1DA1F2; }
.footer-social .instagram { background: #E1306C; }
.footer-social .linkedin { background: #0077B5; }
.footer-social .youtube { background: #FF0000; }

/* Animated Hover Effects for Social Media */
.footer-social a:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 8px 15px rgba(255,255,255,0.2);
    opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Smooth fade-in animation */
.footer-col {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
