/* =========================
   FRONTEND LAYOUT STYLES
   ========================= */

/* ===== Base Body & Fonts ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding-bottom: 180px; /* Space for fixed footer */
}

/* ===== Header ===== */
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

/* ===== Social Icon Bar ===== */
.social-icon-bar {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    padding: 5px 0;
}

.social-icon-bar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #fff;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, opacity 0.3s;
}

.social-icon-bar .social-icon.facebook { background: #3b5998; }
.social-icon-bar .social-icon.instagram { background: #e4405f; }
.social-icon-bar .social-icon.x { background: #1da1f2; }
.social-icon-bar .social-icon.youtube { background: #ff0000; }

.social-icon-bar .social-icon:hover {
    opacity: 0.8;
}

/* ===== Footer ===== */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #adb5bd;
    padding: 30px 15px;
    font-size: 0.9rem;
    z-index: 1030;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    margin-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 4px;
}

.site-footer a {
    color: #adb5bd;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

/* Footer Quick Links Hover */
.footer-links li a {
    display: inline-block;
    transition: color 0.3s, transform 0.2s;
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s;
}

.footer-links li a:hover::after {
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        margin-bottom: 15px;
    }

    .site-footer .social-icon-bar {
        justify-content: center;
    }
}



