/**
 * Pro Angler Brand 2026 - Complete Style Override
 * Version: 1.0.0
 * 
 * This CSS file overrides the existing Proangular theme with
 * the new 2026 brand identity. Load AFTER style.css
 * 
 * Color Palette:
 * - Primary Teal: #2AC8CD
 * - Deep Navy: #185572
 * - Ocean Blue: #377FAB
 * - Success Green: #27C58F
 * - Action Orange: #FFA838
 * - Light Gray: #F2F2F2
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Brand Colors */
    --pa-teal: #2AC8CD;
    --pa-teal-dark: #1FB5BA;
    --pa-navy: #185572;
    --pa-navy-dark: #0A2F42;
    --pa-ocean: #377FAB;
    --pa-green: #27C58F;
    --pa-orange: #FFA838;
    --pa-orange-dark: #E8942A;
    --pa-gray: #F2F2F2;
    --pa-black: #000000;
    --pa-white: #FFFFFF;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #2AC8CD 0%, #185572 100%);
    --gradient-cta: linear-gradient(135deg, #FFA838 0%, #FF8C00 100%);
    --gradient-dark: linear-gradient(180deg, #185572 0%, #0A1F2C 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 8px 32px rgba(42, 200, 205, 0.3);
}

/* ==========================================================================
   HIDE OLD BANNERS/PROMO ELEMENTS GLOBALLY
   ========================================================================== */

.home-header-image,
.header-banner-legacy,
.old-promo-banner,
.site-promo,
.promo-bar,
#promo-banner,
.legacy-header-banner,
.header-promo,
.hero-old,
.home-hero-legacy,
.front-page-banner,
header .banner,
.masthead-banner,
.page-header.home,
.home-intro-section,
#home-banner,
.home-header,
.site-hero:not(.hero-2026):not(.hero),
.homepage-banner,
.old-hero-section {
    display: none !important;
}

/* ==========================================================================
   BASE RESETS & GLOBAL STYLES
   (Fonts loaded via header.php <link> tags and enqueue-nav-styles.php)
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: var(--pa-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pa-navy);
}

a {
    color: var(--pa-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--pa-navy);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER - STICKY WITH BLUR
   ========================================================================== */

header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: all var(--transition-normal);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .logo {
    margin: 0;
    padding: 0;
}

header .logo a {
    display: block;
}

header .logo img {
    height: 45px;
    width: auto;
    transition: transform var(--transition-normal);
}

header .logo a:hover img {
    transform: scale(1.05);
}

/* Header App Badges */
header .appstore {
    display: inline-block;
    margin-left: 10px;
}

header .appstore img,
header #img-h {
    height: 36px !important;
    width: auto;
    border-radius: 6px;
    transition: transform var(--transition-fast);
}

header .appstore:hover img {
    transform: translateY(-2px);
}

/* Navigation */
header .nav-wrapper {
    display: flex;
    align-items: center;
}

header #nav-main,
header nav {
    float: none !important;
}

header #nav-main ul,
header nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header #nav-main ul li a,
header nav ul li a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--pa-navy);
    padding: 10px 16px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header #nav-main ul li a:hover,
header nav ul li a:hover {
    background: rgba(42, 200, 205, 0.1);
    color: var(--pa-teal);
}

header #nav-main ul li:last-child a,
header nav ul li:last-child a {
    background: var(--gradient-cta);
    color: var(--pa-white) !important;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(255, 168, 56, 0.3);
}

header #nav-main ul li:last-child a:hover,
header nav ul li:last-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 168, 56, 0.4);
}

/* Mobile Menu Trigger */
#nav-trigger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

#nav-trigger span {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--pa-navy);
    font-size: 14px;
    text-transform: uppercase;
}

/* Hide coming soon image */
.comingsoonimg {
    display: none !important;
}

/* ==========================================================================
   HERO SECTION (HEADER-UNIT)
   ========================================================================== */

.header-unit {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.header-unit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(42, 200, 205, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(24, 85, 114, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Video Background */
#video-container {
    position: absolute !important;
    inset: 0;
    z-index: 0;
}

#video-container video,
#video-container .fillWidth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.25;
}

.header-unit .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Hero Left Content */
.header-unit .banner-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.header-unit .banner-left h3 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.header-unit .banner-left h2 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 400;
    color: var(--pa-white);
    line-height: 0.95;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.header-unit .banner-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.header-unit .banner-left ul li:first-child a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-cta);
    color: var(--pa-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 168, 56, 0.4);
    transition: all var(--transition-normal);
}

.header-unit .banner-left ul li:first-child a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 168, 56, 0.5);
}

.header-unit .banner-left ul li:last-child a img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform var(--transition-normal);
}

.header-unit .banner-left ul li:last-child a:hover img {
    transform: translateY(-3px);
}

/* Hero Right - Phone Image */
.header-unit .banner-right {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: center;
}

.header-unit .banner-right img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Scroll Indicator */
.header-unit .scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.header-unit .scroll img {
    width: 40px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.header-unit .scroll:hover img {
    opacity: 1;
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.section-1,
.section-2,
.section-blue {
    padding: var(--section-padding) 20px;
    position: relative;
}

/* Section Headings */
.section-1 h2,
.section-2 h2,
.section-blue h2 {
    text-align: center;
    margin-bottom: 50px;
}

.section-1 h2 span,
.section-2 h2 span,
.section-blue h2 span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--pa-navy);
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
}

.section-blue h2 span {
    color: var(--pa-white);
}

/* Section Layout */
.section-1-left,
.section-1-right {
    width: 48%;
    float: left;
}

.section-1-right {
    float: right;
}

/* Section Content */
.section-1-right h3,
.section-2 .section-1-right h3 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--pa-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-1-right h3 span {
    color: var(--pa-teal);
}

.section-1-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Blue Section */
.section-blue {
    background: var(--gradient-hero);
    color: var(--pa-white);
}

.section-blue .section-1-right h3 {
    color: var(--pa-white);
}

.section-blue .section-1-right h3 span {
    color: rgba(255, 255, 255, 0.8);
}

.section-blue .section-1-right h3 span.white {
    color: var(--pa-white);
}

.section-blue .section-1-right h3 span.color {
    color: var(--pa-orange);
}

/* ==========================================================================
   TOOLTIPS & BADGES
   ========================================================================== */

.tip,
.tip-dark,
.tool-tip,
.tool-tip2 {
    display: inline-block;
    margin-bottom: 20px;
}

.tip h4,
.tip-dark h4,
.tool-tip h4,
.tool-tip2 h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0;
}

.tip h4 {
    background: var(--pa-teal);
    color: var(--pa-white);
}

.tip-dark h4 {
    background: var(--pa-navy);
    color: var(--pa-white);
}

.tool-tip h4 {
    background: var(--pa-orange);
    color: var(--pa-white);
}

.tool-tip2 h4 {
    background: rgba(255, 255, 255, 0.2);
    color: var(--pa-white);
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.get-app,
a.get-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-cta);
    color: var(--pa-white) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 168, 56, 0.35);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.get-app:hover,
a.get-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 168, 56, 0.45);
    color: var(--pa-white) !important;
}

/* Secondary Button Style */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--pa-teal);
    color: var(--pa-teal) !important;
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--pa-teal);
    color: var(--pa-white) !important;
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   INNER PAGES - BANNER
   ========================================================================== */

.inner-banner {
    background: var(--gradient-hero);
    padding: 140px 20px 60px;
    text-align: center;
}

.inner-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--pa-white);
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */

.main-content {
    padding: 60px 20px;
    background: var(--pa-gray);
}

.main-content .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-content .section-1-left {
    flex: 1;
    min-width: 300px;
    max-width: 800px;
    float: none;
    width: auto;
}

.main-content .section-1-right {
    width: 300px;
    float: none;
}

/* Inner Navigation */
.inner-nav {
    margin-bottom: 30px;
}

.inner-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-nav ul li a {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--pa-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    background: var(--pa-white);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.inner-nav ul li a:hover {
    background: var(--pa-teal);
    color: var(--pa-white);
}

/* Content Blocks */
.block {
    background: var(--pa-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.block img.img-responsive:first-child,
.block img.img-responsive:last-child {
    display: none; /* Hide old top/bottom decorative images */
}

.mid-section {
    padding: 40px;
}

.block-reports {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.block-reports h1,
.block-reports h2,
.block-reports h3 {
    color: var(--pa-navy);
    margin-top: 30px;
    margin-bottom: 15px;
}

.block-reports h1:first-child {
    margin-top: 0;
}

.block-reports p {
    margin-bottom: 20px;
}

.block-reports a {
    color: var(--pa-teal);
    font-weight: 600;
}

.block-reports a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.section-1-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sidebar Ad */
.section-1-right .right-col,
.section-1-right img.img-responsive {
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   BLOG / POSTS
   ========================================================================== */

article.post {
    background: var(--pa-white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

article.post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

article.post .featured-image-wrap {
    margin: 0;
    overflow: hidden;
}

article.post .featured-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

article.post:hover .featured-image-wrap img {
    transform: scale(1.05);
}

article.post .entry-header {
    padding: 25px 25px 0;
}

article.post .entry-title {
    font-size: 1.4rem;
    margin: 0 0 15px;
}

article.post .entry-title a {
    color: var(--pa-navy);
    transition: color var(--transition-fast);
}

article.post .entry-title a:hover {
    color: var(--pa-teal);
}

article.post .entry-content {
    padding: 0 25px 25px;
    font-size: 1rem;
    color: #666;
}

article.post .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pa-teal);
    font-weight: 600;
    margin-left: 0;
}

article.post .read-more:hover {
    color: var(--pa-navy);
    text-decoration: none;
}

/* Single Post */
.single-post .mid-section {
    padding: 40px;
}

.single-post .block-reports p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Post Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 0;
}

.navigation a {
    font-weight: 600;
    color: var(--pa-teal);
    max-width: 45%;
}

.navigation a:hover {
    color: var(--pa-navy);
}

/* Pagination */
.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--pa-white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--pa-navy);
    transition: all var(--transition-fast);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--pa-teal);
    color: var(--pa-white);
}

/* ==========================================================================
   FISH DIRECTORY
   ========================================================================== */

#dir-list .searchform {
    position: relative;
    margin-bottom: 30px;
}

#dir-list .search {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

#dir-list .search:focus {
    outline: none;
    border-color: var(--pa-teal);
}

#dir-list .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.fish-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--pa-white);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.fish-row:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.fish-image {
    width: 100px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.fish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fish-detail .name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pa-navy);
    margin: 0;
}

/* Fish Directory Single */
.fish-directory-banner {
    background: var(--pa-white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.fish-directory-banner .fish {
    max-width: 100%;
    border-radius: 16px;
}

.fish-directory-banner .hanger {
    background: var(--pa-teal);
    color: var(--pa-white);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.fish-directory-banner .hanger h2 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.fish-directory-banner .hanger ul {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.details-row .box {
    flex: 1;
    min-width: 120px;
    background: var(--pa-gray);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.details-row .box h3 {
    font-size: 11px;
    font-weight: 700;
    color: var(--pa-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.details-row .box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pa-navy);
    margin: 0;
}

/* Description Navigation */
.description-nav {
    margin-bottom: 30px;
}

.description-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-nav ul li a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--pa-white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--pa-navy);
    transition: all var(--transition-fast);
}

.description-nav ul li a:hover {
    background: var(--pa-teal);
    color: var(--pa-white);
}

/* ==========================================================================
   FISHING REPORTS
   ========================================================================== */

.primary-content > h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--pa-navy);
    margin-bottom: 40px;
}

.primary-content > h1 span {
    color: var(--pa-teal);
}

.location-section {
    margin-bottom: 40px;
}

.location-section > h1 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--pa-navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--pa-teal);
}

.location-section > h1 img {
    width: 24px;
}

.block-list {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin-right: 2%;
}

.block-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-list ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.block-list ul li a {
    color: var(--pa-navy);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.block-list ul li a:hover {
    color: var(--pa-teal);
}

/* Single Fishing Report */
.secondary-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.secondary-banner img {
    width: 100%;
    display: block;
}

/* ==========================================================================
   FOOTER - 2026 TEAL DESIGN
   ========================================================================== */

footer,
footer.pa-footer,
.pa-footer {
    background: #2AC8CD !important; /* TEAL - 2026 design */
    color: #0A1628 !important; /* Dark text on teal */
    padding: 60px 20px 30px;
}

/* ALL footer text should be dark */
footer *,
footer.pa-footer *,
.pa-footer * {
    color: #0A1628 !important;
}

/* Footer links */
footer a,
footer.pa-footer a,
.pa-footer a {
    color: #0A1628 !important;
}

footer a:hover,
footer.pa-footer a:hover,
.pa-footer a:hover {
    opacity: 0.7;
}

/* Footer headings */
footer h4,
footer.pa-footer h4,
.pa-footer h4,
.pa-footer-links h4 {
    color: #0A1628 !important;
}

/* Footer paragraphs */
footer p,
footer.pa-footer p,
.pa-footer p,
.pa-footer-brand p,
.pa-footer-bottom p {
    color: #0A1628 !important;
}

/* Social icons - dark on teal */
footer .pa-footer-social a,
.pa-footer-social a,
footer .pa-footer-social svg,
.pa-footer-social svg {
    color: #0A1628 !important;
    fill: #0A1628 !important;
}

/* Border color for footer bottom */
footer .pa-footer-bottom,
.pa-footer-bottom {
    border-top-color: rgba(10, 22, 40, 0.15) !important;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

footer .col-1 {
    flex: 1;
    min-width: 200px;
}

footer .col-1 .appstore {
    display: inline-block;
    margin-bottom: 20px;
}

footer .col-1 .appstore img {
    height: 45px;
    border-radius: 8px;
}

footer .col-1 p {
    color: #0A1628; /* Dark text on teal */
    font-size: 14px;
    margin: 0;
}

footer .col-2 {
    flex: 2;
    min-width: 300px;
}

footer .col-2 .nav-wrapper {
    margin-bottom: 20px;
}

footer .nav-menu,
footer .col-2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .nav-menu li a,
footer .col-2 ul li a {
    color: #0A1628; /* Dark text on teal */
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-fast);
}

footer .nav-menu li a:hover,
footer .col-2 ul li a:hover {
    color: var(--pa-teal);
}

footer .col-2 > p {
    margin-top: 20px;
}

footer .col-2 > p a {
    color: #0A1628; /* Dark text on teal */
    opacity: 0.7;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

footer .col-2 > p a:hover {
    color: var(--pa-teal);
}

/* Report Menu in Footer */
footer .report-menu,
footer .report-nav {
    display: none; /* Hide old report menu styling */
}

/* ==========================================================================
   INLINE BLOG CTA (Added via PHP)
   ========================================================================== */

.inline-blog-cta {
    background: var(--gradient-hero);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.inline-blog-cta .cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
}

.inline-blog-cta .cta-content {
    flex: 1;
    min-width: 200px;
}

.inline-blog-cta .cta-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pa-white);
    margin: 0 0 5px;
}

.inline-blog-cta .cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.inline-blog-cta .cta-button {
    background: var(--gradient-cta);
    color: var(--pa-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 168, 56, 0.3);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.inline-blog-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 168, 56, 0.4);
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--gradient-dark);
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .cta-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-mobile-cta .cta-info img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.sticky-mobile-cta .cta-info span {
    font-weight: 600;
    color: var(--pa-white);
    font-size: 14px;
}

.sticky-mobile-cta .cta-info small {
    display: block;
    color: var(--pa-orange);
    font-size: 12px;
}

.sticky-mobile-cta .cta-btn {
    background: var(--gradient-cta);
    color: var(--pa-white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
    header .appstore {
        display: none;
    }
    
    header #nav-main,
    header nav#nav-main {
        display: none;
    }
    
    #nav-trigger {
        display: block;
    }
    
    #nav-mobile {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--pa-white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    #nav-mobile.active {
        display: block;
    }
    
    #nav-mobile ul {
        flex-direction: column;
        gap: 0;
    }
    
    #nav-mobile ul li {
        border-bottom: 1px solid #eee;
    }
    
    #nav-mobile ul li a {
        display: block;
        padding: 15px 0;
        border-radius: 0;
    }
    
    .header-unit .container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-unit .banner-left {
        max-width: 100%;
    }
    
    .header-unit .banner-left ul {
        justify-content: center;
    }
    
    .section-1-left,
    .section-1-right {
        width: 100%;
        float: none;
    }
    
    .main-content .section-1-right {
        width: 100%;
    }
    
    .block-list {
        width: 100%;
        margin-right: 0;
    }
}

/* Hide ALL sticky CTAs on desktop — only show on phones */
@media (min-width: 769px) {
    .sticky-mobile-cta,
    .pa-sticky-cta,
    #smart-app-banner,
    .smart-app-banner {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .header-unit {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    
    .header-unit .banner-left h2 {
        font-size: 3rem;
    }
    
    .inner-banner {
        padding: 120px 20px 40px;
    }
    
    .mid-section {
        padding: 25px;
    }
    
    .details-row .box {
        min-width: 100px;
    }
    
    .inline-blog-cta {
        flex-direction: column;
        text-align: center;
    }
    
    footer .container {
        flex-direction: column;
    }

    .sticky-mobile-cta {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-unit .banner-left h2 {
        font-size: 2.5rem;
    }
    
    .header-unit .banner-left ul {
        flex-direction: column;
    }
    
    .inner-nav ul {
        flex-direction: column;
    }
    
    .description-nav ul {
        flex-direction: column;
    }
    
    .fish-row {
        flex-direction: column;
        text-align: center;
    }
    
    .fish-image {
        width: 150px;
        height: 100px;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Hide elements on specific breakpoints */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* ==========================================================================
   FISH DIRECTORY ARCHIVE - Pro Angler 2026
   ========================================================================== */

/* GLOBAL: Hide ProAngler Ad widget site-wide */
#text-5,
.widget_text .textwidget a[href*="proanglerapp"] img,
.widget_text .textwidget img.img-responsive,
.widget_text .textwidget img[src*="ProAnglerAd"],
.widget_text:has(img.img-responsive),
section.widget_text:has(img[src*="ProAnglerAd"]) {
    display: none !important;
}

/* Page banner */
.post-type-archive-fishdirectory .inner-banner {
    background: var(--pa-navy);
    padding: 40px 20px;
    margin-top: 90px;
}

.post-type-archive-fishdirectory .inner-banner h1 {
    font-family: var(--font-display);
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .post-type-archive-fishdirectory .inner-banner {
        margin-top: 80px;
        padding: 30px 16px;
    }
    
    .post-type-archive-fishdirectory .inner-banner h1 {
        font-size: 36px;
    }
}

/* Main content layout */
.post-type-archive-fishdirectory .main-content {
    padding: 40px 0;
    background: #fff;
}

.post-type-archive-fishdirectory .main-content > .container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
}

.post-type-archive-fishdirectory .section-1-left {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.post-type-archive-fishdirectory .fish-breadcrumb {
    margin-bottom: 20px;
}

.post-type-archive-fishdirectory .fish-breadcrumb a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.post-type-archive-fishdirectory .fish-breadcrumb a:hover {
    text-decoration: underline;
    color: var(--pa-teal);
}

/* Hide old inner-nav if still present */
.post-type-archive-fishdirectory .inner-nav {
    display: none;
}

/* ==========================================================================
   NAVIGATION BUTTONS - Pro Angler Style
   ========================================================================== */

.post-type-archive-fishdirectory .fish-nav-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
}

.post-type-archive-fishdirectory .section-1-left .fish-nav-buttons a.fish-nav-btn,
.post-type-archive-fishdirectory .fish-nav-btn,
.fish-directory-page .fish-nav-btn,
a.fish-nav-btn {
    display: inline-block !important;
    font-family: 'Montserrat', var(--font-body), sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    background: var(--pa-teal, #2AC8CD) !important;
    color: #fff !important;
}

.post-type-archive-fishdirectory .section-1-left .fish-nav-buttons a.fish-nav-btn:hover,
.post-type-archive-fishdirectory .fish-nav-btn:hover,
.fish-directory-page .fish-nav-btn:hover,
a.fish-nav-btn:hover {
    background: #1FB5BA !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

/* Primary button (Fishing Reports) - Orange */
.post-type-archive-fishdirectory .section-1-left .fish-nav-buttons a.fish-nav-btn.primary,
.post-type-archive-fishdirectory .fish-nav-btn.primary,
.fish-directory-page .fish-nav-btn.primary,
a.fish-nav-btn.primary {
    background: var(--pa-orange, #FFA838) !important;
    box-shadow: 0 4px 12px rgba(255, 168, 56, 0.25) !important;
}

.post-type-archive-fishdirectory .section-1-left .fish-nav-buttons a.fish-nav-btn.primary:hover,
.post-type-archive-fishdirectory .fish-nav-btn.primary:hover,
.fish-directory-page .fish-nav-btn.primary:hover,
a.fish-nav-btn.primary:hover {
    background: #e89530 !important;
    box-shadow: 0 6px 16px rgba(255, 168, 56, 0.35) !important;
}

@media (max-width: 600px) {
    .post-type-archive-fishdirectory .fish-nav-buttons {
        flex-direction: column;
    }
    
    .post-type-archive-fishdirectory .fish-nav-btn,
    a.fish-nav-btn {
        text-align: center !important;
    }
}

/* Inner nav links */
.post-type-archive-fishdirectory .inner-nav {
    margin-bottom: 16px;
}

.post-type-archive-fishdirectory .inner-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.post-type-archive-fishdirectory .inner-nav ul br {
    display: none;
}

.post-type-archive-fishdirectory .inner-nav li {
    margin: 0;
}

.post-type-archive-fishdirectory .inner-nav a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--pa-teal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-type-archive-fishdirectory .inner-nav a:hover {
    text-decoration: underline;
}

/* Search form */
.post-type-archive-fishdirectory #dir-list .searchform {
    position: relative;
    margin-bottom: 20px;
}

.post-type-archive-fishdirectory #dir-list .searchform input.search {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px 10px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.post-type-archive-fishdirectory #dir-list .searchform input.search:focus {
    border-color: var(--pa-teal);
}

.post-type-archive-fishdirectory #dir-list .searchform .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* ==========================================================================
   FISH LIST - Grid with full images
   ========================================================================== */

.post-type-archive-fishdirectory #dir-list .list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Individual fish card */
.post-type-archive-fishdirectory .fish-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.post-type-archive-fishdirectory .fish-row:hover {
    border-color: var(--pa-teal);
    box-shadow: 0 4px 12px rgba(42, 200, 205, 0.15);
}

/* Fish image - FULL IMAGE, not cropped */
.post-type-archive-fishdirectory .fish-row .fish-image {
    width: 100%;
    max-width: 140px;
    margin-bottom: 10px;
}

.post-type-archive-fishdirectory .fish-row .fish-image a {
    display: block;
}

.post-type-archive-fishdirectory .fish-row .fish-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Fish name - Montserrat, BLACK, smaller */
.post-type-archive-fishdirectory .fish-row .fish-detail {
    width: 100%;
}

.post-type-archive-fishdirectory .fish-row .fish-detail h1.name,
.post-type-archive-fishdirectory .fish-row .fish-detail .name,
.post-type-archive-fishdirectory .fish-row .fish-detail a.name {
    font-family: 'Montserrat', var(--font-body), sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    text-decoration: none;
    display: block;
}

.post-type-archive-fishdirectory .fish-row .fish-detail h1.name a,
.post-type-archive-fishdirectory .fish-row .fish-detail .name a {
    color: #000 !important;
    text-decoration: none;
}

.post-type-archive-fishdirectory .fish-row:hover .fish-detail a.name,
.post-type-archive-fishdirectory .fish-row .fish-detail h1.name a:hover,
.post-type-archive-fishdirectory .fish-row .fish-detail .name a:hover {
    color: var(--pa-teal) !important;
}

/* Clear floats - hide */
.post-type-archive-fishdirectory .fish-row .clearfix,
.post-type-archive-fishdirectory #dir-list > .clearfix {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .post-type-archive-fishdirectory #dir-list .list {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .post-type-archive-fishdirectory .fish-row {
        padding: 10px;
    }

    .post-type-archive-fishdirectory .fish-row .fish-image {
        max-width: 100px;
    }

    .post-type-archive-fishdirectory .fish-row .fish-detail a.name,
    .post-type-archive-fishdirectory .fish-row .fish-detail h1.name {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .post-type-archive-fishdirectory #dir-list .list {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .post-type-archive-fishdirectory .fish-row .fish-image {
        max-width: 200px;
    }
}

/* ==========================================================================
   SIDEBAR - Minimal Sitemap Style (like live site)
   ========================================================================== */

/* Sidebar container */
.post-type-archive-fishdirectory .section-1-right,
.post-type-archive-fishdirectory #sidebar {
    width: 260px;
    flex-shrink: 0;
}

/* HIDE the ProAngler Ad widget */
.post-type-archive-fishdirectory #text-5,
.post-type-archive-fishdirectory .widget_text .textwidget img,
.post-type-archive-fishdirectory .textwidget a img.img-responsive {
    display: none !important;
}

/* Also hide the entire widget if it only contains the ad */
.post-type-archive-fishdirectory .widget_text:has(img[src*="ProAnglerAd"]),
.post-type-archive-fishdirectory .widget_text:has(.img-responsive) {
    display: none !important;
}

/* Reset ALL sidebar widgets to minimal style */
.post-type-archive-fishdirectory .widget,
.post-type-archive-fishdirectory .section-1-right section {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 0 20px 0 !important;
    margin: 0 0 20px 0 !important;
}

/* Widget titles - Simple gray label */
.post-type-archive-fishdirectory .widget-title,
.post-type-archive-fishdirectory .widget h3,
.post-type-archive-fishdirectory .section-1-right h3 {
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #888 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Remove any decorative elements */
.post-type-archive-fishdirectory .widget-title::after,
.post-type-archive-fishdirectory .widget-title::before,
.post-type-archive-fishdirectory .widget h3::after,
.post-type-archive-fishdirectory .widget h3::before {
    display: none !important;
}

/* Widget lists - Simple bullet style */
.post-type-archive-fishdirectory .widget ul,
.post-type-archive-fishdirectory .section-1-right ul {
    list-style: disc !important;
    margin: 0 0 0 16px !important;
    padding: 0 !important;
}

.post-type-archive-fishdirectory .widget ul li,
.post-type-archive-fishdirectory .section-1-right ul li {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #444 !important;
    margin: 0 !important;
    padding: 3px 0 !important;
    border: none !important;
    background: transparent !important;
}

.post-type-archive-fishdirectory .widget ul li a,
.post-type-archive-fishdirectory .section-1-right ul li a {
    color: #444 !important;
    text-decoration: none !important;
}

.post-type-archive-fishdirectory .widget ul li a:hover {
    color: var(--pa-teal) !important;
}

/* Recent Comments - smaller text */
.post-type-archive-fishdirectory .widget_recent_comments ul li {
    font-size: 12px !important;
    color: #666 !important;
}

/* Archives & Meta - smaller, grayer */
.post-type-archive-fishdirectory .widget_archive ul li,
.post-type-archive-fishdirectory .widget_meta ul li {
    font-size: 12px !important;
    color: #888 !important;
}

.post-type-archive-fishdirectory .widget_archive ul li a,
.post-type-archive-fishdirectory .widget_meta ul li a {
    color: #888 !important;
}

/* Mobile: Stack sidebar below */
@media (max-width: 900px) {
    .post-type-archive-fishdirectory .main-content > .container {
        flex-direction: column;
    }
    
    .post-type-archive-fishdirectory .section-1-right,
    .post-type-archive-fishdirectory #sidebar {
        width: 100%;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    
    /* On mobile, show widgets in a row */
    .post-type-archive-fishdirectory .section-1-right {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    
    .post-type-archive-fishdirectory .widget {
        flex: 1;
        min-width: 200px;
    }
}

/* ==========================================================================
   HIDE SIDEBAR ON SINGLE FISH PAGES
   ========================================================================== */

.single-fishdirectory .widget-area,
.single-fishdirectory #secondary,
.single-fishdirectory aside,
.single-fishdirectory .sidebar,
.single-fishdirectory .widget,
body.single-fishdirectory .section-1-right {
    display: none !important;
}

/* ==========================================================================
   HIDE SIDEBAR ON SUPPORT PAGE
   ========================================================================== */

.page-support aside,
.page-support .widget-area,
.page-support #secondary,
.page-support .section-1-right {
    display: none !important;
}

/* Center content on support page (sidebar hidden) */
.page-support .main-content .container {
    justify-content: center;
}

.page-support .main-content .section-1-left {
    max-width: 800px;
    width: 100%;
}

/* ==========================================================================
   HIDE SIDEBAR ON PRO TIPS PAGE
   ========================================================================== */

.page-pro-tips aside,
.page-pro-tips .widget-area,
.page-pro-tips #secondary,
.page-pro-tips .section-1-right {
    display: none !important;
}

.page-pro-tips .main-content .container {
    justify-content: center;
}

.page-pro-tips .main-content .section-1-left {
    max-width: 800px;
    width: 100%;
}

/* ==========================================================================
   HIDE SIDEBAR ON OLD VIDEOS PAGE (belt-and-suspenders with 301 redirect)
   ========================================================================== */

.page-igfa-anglers-digest-with-bill-boyce aside,
.page-igfa-anglers-digest-with-bill-boyce .widget-area,
.page-igfa-anglers-digest-with-bill-boyce #secondary,
.page-igfa-anglers-digest-with-bill-boyce .section-1-right {
    display: none !important;
}

/* ==========================================================================
   CONTACT FORM 7 — Override green validation bar
   ========================================================================== */

body .wpcf7 .wpcf7-response-output,
body .wpcf7-response-output {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
}

body .wpcf7 .wpcf7-not-valid-tip {
    color: #e74c3c !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
}

body .wpcf7 .wpcf7-not-valid {
    border-color: #e74c3c !important;
}



/* ==========================================================================
   HIDE COMMENT FORMS SITEWIDE
   ========================================================================== */

.comment-respond,
#respond,
.comments-area {
    display: none !important;
}
