/*
Theme Name: fnht-blogs
Theme URI: https://generatepress.com
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Version: 3.6.1
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: generatepress
Text Domain: generatepress
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options

GeneratePress, Copyright 2014-2025 EDGE22 Studios LTD.
GeneratePress is distributed under the terms of the GNU GPL

GeneratePress is based on Underscores http://underscores.me/, (C) 2012-2025 Automattic, Inc.

Actual CSS can be found in /assets/css/ folder.
*/

/* ============================================================

* ─── FNHT Brand color tokens ─────────────────────────────── */
:root {
  /* Primary — deep crimson (logo red blocks) */
  --red:             #8B1A1A;
  --red-bright:      #b02222;
  --red-light:       #c94040;
 
  /* Secondary — forest green (logo green accent) */
  --green:           #3d6b41;
  --green-light:     #559459;
 
  /* Neutrals */
  --cream:           #f7f4f0;
  --warm-white:      #faf8f5;
  --dark:            #0d0b0b;
  --dark-mid:        #1a1414;
  --charcoal:        #2a2420;
  --text-body:       #2e2825;
  --text-muted:      #7a7068;
  --text-dim:        rgba(247, 244, 240, 0.50);
 
  /* Borders */
  --border:          rgba(139, 26, 26, 0.18);
  --border-light:    rgba(139, 26, 26, 0.10);
 
  /* Animation */
  --slide-duration:  1.1s;
  --ease-cinema:     cubic-bezier(0.77, 0, 0.175, 1);
}
/* ─── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }


/* ─── Shared utilities ────────────────────────────────────── */
.section-pad { padding: 7rem 0; }

.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1rem;
}
.section-heading h2 em { font-style: italic; color: var(--red); }

.section-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.75rem;
}

.heading-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--red), var(--green));
  margin: 1rem 0 0;
}
.section-heading.text-center .heading-line { margin: 1rem auto 0; }

.section-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ─── Brand button (red fill sweep) ──────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
  padding: 0.85rem 2rem;
  position: relative; overflow: hidden; cursor: pointer;
  transition: color .4s ease;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.btn-gold:hover { color: var(--cream); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold > * { position: relative; z-index: 1; }
.btn-gold.full-width { width: 100%; justify-content: center; }

/* ─── Preloader ───────────────────────────────────────────── */
.js-preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
}
.js-preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; align-items: center; gap: 0.5rem; }
.preloader-inner .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); animation: pulse 1.2s ease-in-out infinite;
}
.preloader-inner .dots { display: flex; gap: 0.35rem; }
.preloader-inner .dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(139, 26, 26, 0.35);
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader-inner .dots span:nth-child(2) { animation-delay: .2s; }
.preloader-inner .dots span:nth-child(3) { animation-delay: .4s; }
@keyframes pulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50%       { opacity: 1;  transform: scale(1); }
}

/* ─── Sub header ──────────────────────────────────────────── */
.sub-header {
  background: var(--dark); padding: 0.6rem 0;
  position: relative; z-index: 1000;
  border-bottom: 1px solid rgba(139, 26, 26, 0.2);
}
.sub-header .info,
.sub-header .social-links {
  list-style: none; display: flex; align-items: center;
  gap: 1.5rem; margin: 0; padding: 0;
}
.sub-header .info li,
.sub-header .social-links li a {
  font-size: 0.75rem; color: rgba(247, 244, 240, 0.55); letter-spacing: 0.05em;
}
.sub-header .info li i    { color: var(--red-light); margin-right: 0.4rem; }
.sub-header .info a       { color: rgba(247, 244, 240, 0.55); }
.sub-header .info a:hover { color: var(--red-light); }
.sub-header .social-links { justify-content: flex-end; }
.sub-header .social-links a       { transition: color .3s; }
.sub-header .social-links a:hover { color: var(--red-light); }

/* ─── Header / nav ────────────────────────────────────────── */
.header-area {
  position: sticky; top: 0; z-index: 999;
  border-bottom: 1px solid rgba(139, 26, 26, 0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.header-sticky { position: sticky; top: 0; }

.main-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
}
.main-nav .logo img { height: 48px; width: auto; }

.main-nav .nav {
  list-style: none; display: flex; align-items: center;
  gap: 0.25rem; margin: 0; padding: 0;
}
.main-nav .nav li a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(3, 2, 0, 0.925);
  padding: 0.5rem 0.9rem; position: relative; transition: color .3s;
}
.main-nav .nav li a::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform .3s ease;
}
.main-nav .nav li a:hover,
.main-nav .nav li a.active { color: var(--red); }
.main-nav .nav li a:hover::after,
.main-nav .nav li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important; color: var(--cream) !important;
  padding: 0.5rem 1.2rem !important; font-weight: 500 !important;
  transition: background .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-bright) !important; color: var(--cream) !important; }




/* ─── Footer ──────────────────────────────────────────────── */
.fnht-footer {
  background: var(--dark); padding: 5rem 0 2rem;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(139, 26, 26, 0.12);
  margin-bottom: 2rem;
}
.footer-logo { width: 68px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(247, 244, 240, 0.4); max-width: 280px; }

.footer-contact h5,
.footer-social h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 1.25rem;
}
.footer-contact ul { list-style: none; padding: 0; margin: revert; }
.footer-contact ul li {
  font-size: 0.85rem; color: rgba(247, 244, 240, 0.45);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-contact ul li i { color: var(--red-light); font-size: 0.75rem; }

.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(139, 26, 26, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247, 244, 240, 0.4); font-size: 0.8rem;
  transition: border-color .3s, color .3s, background .3s;
}
.social-row a:hover {
  border-color: var(--red-light); color: var(--red-light);
  background: rgba(139, 26, 26, 0.1);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; font-size: 0.72rem;
  color: rgba(247, 244, 240, 0.2); letter-spacing: 0.1em;
}
.footer-bottom-line { flex: 1; max-width: 200px; height: 1px; background: rgba(139, 26, 26, 0.15); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-card-modern { grid-template-columns: 1fr; }
  .president-grid    { grid-template-columns: 1fr 1fr; }
  .president-links   { grid-column: span 2; flex-direction: row; padding-top: 0; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
}



@media (max-width: 768px) {
  .section-pad { padding: 4.5rem 0; }
  .sub-header .social-links { justify-content: flex-start; }
  .menu-trigger { display: block; }
  .main-nav .nav { display: block; }
  .main-nav .nav.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); padding: 1rem 0;
    border-top: 1px solid rgba(139, 26, 26, 0.15);
  }
  .cta-label {
        display: none;
    }

    .nav-cta {
        padding: 0.5rem !important;
        font-size: 1.1rem !important;
    }
  .president-grid  { grid-template-columns: 1fr; }
  .president-links { flex-direction: row; grid-column: unset; }
  .facts-grid      { flex-direction: column; }
  .fact-divider    { width: 60px; height: 1px; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-brand    { grid-column: unset; }
  .contact-info-row { grid-template-columns: 1fr; }
}