/*
Theme Name: BollywoodTimeLite
Theme URI: https://bollywoodtime.in/
Author: BollywoodTime Team
Author URI: https://bollywoodtime.in/
Description: Ultra-light, SEO-optimized, mobile-first theme for BollywoodTime. Minimal, performance-first, and Gutenberg compatible.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bollywoodtimelite
Tags: light, minimal, responsive, SEO, performance, mobile-first, gutenberg
*/

:root {
  --bt-font-sans: 'Inter', 'Poppins', 'Noto Sans', Arial, sans-serif;
  --bt-bg: #fff;
  --bt-text: #181818;
  --bt-link: #0073e6;
  --bt-accent: #e50914;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--bt-font-sans);
  background: var(--bt-bg);
  color: var(--bt-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--bt-link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font-family: inherit; font-size: 1em; }

/* Utility classes */
.bt-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.bt-hide { display: none !important; }

/* Responsive grid */
.bt-grid { display: grid; grid-gap: 1.5rem; }
@media (min-width: 600px) {
  .bt-grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Touch targets */
.bt-touch { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; } 

/* Related posts */
.bt-related-posts { margin: 2rem 0 0 0; padding: 1rem; background: #fafafa; border-radius: 8px; }
.bt-related-posts h3 { margin-top: 0; font-size: 1.1rem; }
.bt-related-posts ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.bt-related-posts li { margin: 0; }
.bt-related-posts a { color: var(--bt-link); }

/* Widgets */
.widget { margin-bottom: 2rem; padding: 1rem; background: #fff; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.widget-title { font-size: 1.1rem; margin-bottom: .8rem; }

/* Comments */
.bt-comments { margin-top: 2rem; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment { margin-bottom: 1.5rem; }
.comment-author { font-weight: bold; }
.comment-meta { font-size: .9em; color: #888; }
.comment-content { margin-top: .5rem; } 

/* Featured image */
.bt-post-featured { margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; }
.bt-post-featured img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Social share buttons */
.bt-post-share { margin: 1rem 0 1.5rem 0; display: flex; gap: 1rem; }
.bt-share-btn { display: inline-block; padding: 0.5em 1em; background: #f4f4f4; color: #181818; border-radius: 6px; font-size: 0.95em; text-decoration: none; transition: background 0.2s; }
.bt-share-btn:hover { background: var(--bt-accent); color: #fff; } 