/*
Theme Name: SimplyIrfan
Theme URI: https://simplyirfan.com
Author: SimplyIrfan Team
Author URI: https://simplyirfan.com
Description: A premium, ultra-fast tech blog theme designed to perfectly replicate the SimplyIrfan homepage layout. Built with Tailwind CSS, custom SVG icons, dark-mode styling, and standard WordPress features.
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: simplyirfan
Tags: clean, tech, blog, grid-layout, custom-menu, high-performance, dark-mode
*/

/* --- 1. FONTS & RESETS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- 2. WORDPRESS CORE ALIGNMENT CLASSES --- */
.aligncenter {
    display: block;
    margin: 1.5rem auto;
}
.alignleft {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
}
.alignright {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
}
.wp-caption {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    max-width: 100%;
    padding: 0.5rem;
    text-align: center;
    border-radius: 0.5rem;
}
.wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.5rem 0 0 0;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* --- 3. CUSTOM OVERRIDES & LAYOUT PATTERNS --- */
.custom-glow {
    box-shadow: 0 20px 40px -15px rgba(13, 110, 253, 0.15);
}

.custom-phone-glow {
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.4);
}

/* Dynamic Reading Time and Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d6efd;
}

/* Active primary menu item styling */
.current-menu-item > a {
    color: #0d6efd !important;
    border-bottom: 2px solid #0d6efd;
}

/* Tiny WP Block Comment form customization */
#commentform input[type="text"], 
#commentform input[type="email"], 
#commentform textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.2s;
}
#commentform input[type="text"]:focus, 
#commentform input[type="email"]:focus, 
#commentform textarea:focus {
    border-color: #0d6efd;
}
#commentform input[type="submit"] {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
#commentform input[type="submit"]:hover {
    background-color: #0b5ed7;
}