/*
Theme Name: GeneratePress Child
Theme URI: https://rojgaralerts.com/
Description: Custom child theme for Results Hindi based on GeneratePress
Author: Your Name
Author URI: https://rojgaralerts.com/
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/*
===============================================
GeneratePress Child Theme Custom CSS
Target: H1 Main Title (Site Title)
Website: rojgaralerts.com
===============================================
*/

/* Method 1: Double Color with Gradient Effect */
.main-title a {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 46%, rgb(248 170 3) 57%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}



/* Hover Effect */
.main-title a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title a {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .main-title a {
        font-size: 1.8rem !important;
    }
}

/*
===============================================
Alternative Font Options (Choose One)
===============================================
*/

/* Option 1: Modern Bold Font */
.main-title a.font-modern {
    font-family: 'Montserrat', 'Arial Black', sans-serif !important;
    font-weight: 600 !important;
}



/*
===============================================
Custom Color Combinations (Choose One)
===============================================
*/

/* Red to Orange Gradient */
.main-title a.red-orange {
    background: linear-gradient(45deg, #ff4757, #ff6b35) !important;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*
===============================================
Additional Styling Options
===============================================
*/

/* Add Border/Outline */
.main-title a.with-border {
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Animated Color Change */
.main-title a.animated {
    animation: colorChange 3s infinite;
}

@keyframes colorChange {
    0% { background: linear-gradient(45deg, #ff6b6b, #4ecdc4); background-clip: text; -webkit-background-clip: text; }
    50% { background: linear-gradient(45deg, #4ecdc4, #45b7d1); background-clip: text; -webkit-background-clip: text; }
    100% { background: linear-gradient(45deg, #ff6b6b, #4ecdc4); background-clip: text; -webkit-background-clip: text; }
}