/*
Theme Name: LinkToTahir
Author: Tahir
Author URI: https://linktotahir.com
Description: A professional, high-performance custom WordPress theme developed for Tahir's portfolio. Supports animations, custom loops, and clean layout structures.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tahirportfolio
Tags: portfolio, custom-menu, featured-images, translation-ready, accessibility-ready, blog

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool.
*/

/*
 * Note: Theme styles are modularly enqueued from assets/css/main.css.
 * Any custom style overrides can be added below.
 */

/* ==========================================================================
   Featured Pricing Card (Brand Builder) Overrides
   ========================================================================== */

/* Dark navy card base with theme green border and glowing shadow */
.pricing-wrapper.featured-card {
    background-color: #0b0f19 !important;
    /* Premium dark navy background */
    border: 2px solid var(--main-two-600) !important;
    /* Theme olive green border */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(121, 151, 27, 0.2) !important;
    /* Premium deep shadow + glowing green tint */
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover scale effect on desktop screens to lift the card */
@media (min-width: 992px) {
    .pricing-wrapper.featured-card {
        transform: translateY(-8px) scale(1.02);
    }

    .pricing-wrapper.featured-card:hover {
        transform: translateY(-14px) scale(1.04);
        border-color: var(--main-600) !important;
        /* Switch to neon-lime border on hover */
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(181, 226, 31, 0.35) !important;
        /* Intense neon-lime glow on hover */
    }
}

/* Text color contrast adjustments for readability on dark background */
.pricing-wrapper.featured-card .banner-three-center-title {
    color: #ffffff !important;
}

.pricing-wrapper.featured-card span[style*="font-weight"] {
    color: #cbd5e1 !important;
    /* "Starting at" text */
}

.pricing-wrapper.featured-card h2 {
    color: #ffffff !important;
    /* Price tag */
}

.pricing-wrapper.featured-card p {
    color: #94a3b8 !important;
    /* Card summary paragraph */
}

.pricing-wrapper.featured-card .pricing-list ul li {
    color: #e2e8f0 !important;
    /* List items */
}

/* Hover effects for checking item icons inside featured card */
.pricing-wrapper.featured-card .pricing-list ul li span.text-main-two-600 {
    color: var(--main-600) !important;
    /* Make checkmarks neon-lime green on dark background */
}

/* ==========================================================================
   Disable Text Selection
   ========================================================================== */
body,
html {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in form inputs and textareas */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}