/*
Theme Name: File Rename Online Child
Theme URI: https://filerenameonline.com
Description: Child theme for File Rename Online - Fast, secure file renaming tool for GeneratePress
Author: File Rename Online Team
Author URI: https://filerenameonline.com
Template: generatepress
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: file-renamer-child
*/

/* Parent theme styles are automatically inherited */
/* Add your custom styles below this line */

/* Custom styles for File Rename Online */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

/* Override GeneratePress container width for better readability */
.generate-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Ensure front page tool section has proper spacing */
.front-page-main {
    min-height: 100vh;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .tool-wrapper {
        padding: 20px !important;
    }
    
    .upload-area {
        padding: 30px 20px !important;
    }
}

/* Accessibility focus styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* GeneratePress compatibility */
.site-header {
    z-index: 1000;
}

/* Make sure main content doesn't overlap */
.main-navigation + .front-page-main {
    margin-top: 0;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .tool-section,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}