/*
Theme Name: DIQ
Theme URI: 
Author: 
Author URI: 
Description: A custom theme for DIQ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diq
*/

/* 
This theme uses modular CSS files that are enqueued in functions.php
Files are organized in the /assets/css/ directory as follows:
- base.css: Base styles, typography, utilities
- header.css: Header and navigation styles
- footer.css: Footer styles
- homepage.css: Home page specific styles
- single.css: Single post styles
- category.css: Category and archive page styles
*/

/* Add padding to body to account for header layout */
body {
    padding-top: 0; /* Removed padding since header is now relative position */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    body {
        padding-top: 0; /* Removed padding since header is now relative position */
    }
}

/* Remove AMP-specific styles */
/* // Example:
// .amp-custom { ... } */

