/*
Theme Name: Hub Dev
Theme URI: 
Author: Sheldon
Author URI: 
Description: The development theme for the Hub
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hub-dev
Tags: 
*/

/* ==========================================================================
   Makes sure header dropdown naviagtion sits in front of buddypress
 * ========================================================================== */

.site-header {
    z-index: 9999;
}


/* ==========================================================================
   BuddyPress wrapper — page width and padding
   ========================================================================== */
.buddypress-wrap {
    max-width: 1380px;
    margin: auto;
    padding: 30px 20px 0;
}

/* ==========================================================================
   bbPress submit buttons — Topic and Reply forms
   ========================================================================== */
#bbp_reply_submit,
#bbp_topic_submit {
    border: none;
    border-radius: 5px;
    font-family: var(--wp--preset--font-family--source-sans-3);
    font-size: 16px;
    color: #ffffff;
    background: #5c7333;
    padding: 5px 10px;
    text-decoration: none;
}

#bbp_reply_submit:hover,
#bbp_topic_submit:hover {
    border: none;
    background: #3b5426;
    cursor: pointer;
    text-decoration: none;
}

/* =======================================================================================
 * Hide Voices column – but not sure I like that the last post section isn't right aligned
 * =======================================================================================*/
li.bbp-topic-voice-count, 
li.bbp-topic-voice-count { 
    display: none !important; 
}

/* Define palette variables explicitly */
/* WordPress doesn't always emit these from the palette, so we define */
/* them here to guarantee they're available everywhere. */
:root {
  --wp--preset--color--sandSurgery: #D7AF75;
  --wp--preset--color--brown: #68341A;
}

/* Link styling */
/* :link and :visited need explicit rules outside :where() to beat the */
/* browser's user-agent stylesheet. */
a:link:where(:not(.wp-element-button)) {
  color: var(--wp--preset--color--sandSurgery);
  text-decoration: none;
}
a:visited:where(:not(.wp-element-button)) {
  color: var(--wp--preset--color--sandSurgery);
}
a:hover:where(:not(.wp-element-button)) {
  color: var(--wp--preset--color--brown);
}
