/*
 * Gipedara Newspaper Black Pro - Deferred CSS
 * Hover effects, animations, extras
 */

/* Hover zoom on images */
.td-module-thumb { overflow: hidden; display: block; }
.td-module-thumb img { transition: transform .4s, opacity .4s; }
.td_module_16:hover .td-module-thumb img,
.td_module_mx2:hover .td-module-thumb img,
.td_module_mx13:hover .td-module-thumb img { transform: scale(1.08); opacity: .85; }

/* Tag Cloud */
.tagcloud a {
    display: inline-block;
    background: #1a1a1a;
    color: #888;
    padding: 3px 10px;
    font-size: 11px !important;
    border: 1px solid #222;
    margin: 0 3px 6px 0;
    transition: all .2s;
}
.tagcloud a:hover { background: var(--td_theme_color); color: #fff; border-color: var(--td_theme_color); }

/* Scroll to top */
.td-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--td_theme_color);
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.td-scroll-top.visible { opacity: 1; visibility: visible; }
.td-scroll-top:hover { background: #c62828; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.td-animate-fade { animation: fadeInUp .5s ease; }

/* Navigation sticky */
.td-affix { box-shadow: 0 2px 6px rgba(0,0,0,.4); }

/* Mega Menu */
.td-mega-menu { position: static !important; }
.td-mega-menu .sub-menu {
    width: 100%;
    left: 0;
    padding: 20px;
    background: #fff;
    display: flex;
    gap: 20px;
}
.td-mega-menu .sub-menu .td-mega-row { display: flex; gap: 30px; width: 100%; }
.td-mega-menu .sub-menu .td-mega-span { flex: 1; }
.td-mega-menu .sub-menu .td-mega-span .entry-title { font-size: 13px; font-weight: 500; }
.td-mega-menu .sub-menu .td-mega-span .entry-title a { color: #111; border: none; }
.td-mega-menu .sub-menu .td-mega-span .entry-title a:hover { color: var(--td_theme_color); }

/* Responsive Megamenu */
@media (max-width: 767px) {
    .td-mega-menu .sub-menu { display: none; }
}

/* Comments */
.comment-list { list-style: none; padding: 0; }
.comment { margin-bottom: 20px; }
.comment-body { background: #151515; padding: 15px; border: 1px solid #222; }
.comment-author { font-family: 'Roboto', sans-serif; font-weight: 500; color: #fff; }
.comment-author img { float: left; margin-right: 10px; border-radius: 50%; }
.comment-author .says { display: none; }
.comment-metadata { font-size: 11px; color: #666; margin-bottom: 10px; }
.reply { margin-top: 10px; }
.reply a { font-size: 11px; color: var(--td_theme_color); text-transform: uppercase; font-weight: 600; }

/* Responsive footer */
@media (max-width: 767px) {
    .td-footer-wrap .td-pb-span4 { width: 100%; }
    .td-social-counter { grid-template-columns: 1fr; }
}
