/* --- GLOBAL MONEY MAKER STYLES --- */

/* 1. Hide the Redundant Page Title on ALL pages */
/* We do this because we are writing our own better H1s in the content */
.entry-title, .ast-archive-description {
    display: none !important;
}

/* 2. Global "Money Maker" Button Style */
.call-btn {
    background-color: #FF8C00 !important;
    color: #ffffff !important;
    padding: 20px 40px !important;
    border-radius: 10px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 1.6rem !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
    border: 3px solid #e67e00 !important;
    transition: all 0.3s ease !important;
}

.call-btn:hover {
    background-color: #e67e00 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5) !important;
}

/* 3. Center the button block */
.btn-container {
    text-align: center;
    margin: 40px 0;
}

/* Make the Desktop Menu easier to read */
.main-navigation a {
    font-size: 1.2rem !important; /* Bumps up the size */
    font-weight: 600 !important;
    color: #333 !important;
}

/* Add a subtle highlight to the 'Practice Areas' to make it pop */
.menu-item-has-children > a:after {
    content: ' ▼'; /* Adds a visual cue that there is more content */
    font-size: 0.8rem;
    vertical-align: middle;
}

/* Make the dropdown menu wider and easier to click */
.sub-menu a {
    font-size: 1.1rem !important;
    padding: 15px 25px !important;
}

/* Clean up the Desktop Menu */
.main-navigation a {
    font-size: 1.25rem !important; 
    font-weight: 700 !important;
    color: #003366 !important;
}

/* Fix the double arrow issue */
.menu-item-has-children > a:after {
    content: '' !important; /* Removes my previous arrow */
}

/* Make the dropdown menu items much larger and clickable */
.sub-menu a {
    font-size: 1.2rem !important;
    padding: 18px 25px !important;
    border-bottom: 1px solid #eee;
}

.sub-menu li:last-child a {
    border-bottom: none;
}