﻿/*
Theme Name: My Custom Theme
Theme URI: https://example.com/my-custom-theme
Author: Your Name
Author URI: https://example.com
Description: A clean, modern starter theme with modular OOP structure.
Version: 0.1.0
Tested up to: 6.6
Requires at least: 6.0
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: blog, custom-logo, custom-menu, featured-images, translation-ready
*/

/* This file is required by WordPress to identify the theme. */

/* Bootstrap Utility Classes */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Custom Theme Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Bootstrap Container Overrides */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}