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

* ─── 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: "white"; }
.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; }

/* ─── Mobile menu trigger ─────────────────────────────────── */
.menu-trigger {
    display: none;
    cursor: pointer;
    color: var(--dark);
    font-size: 0.8rem;
    letter-spacing: .1em;
}

@media (max-width: 991px) {
    .menu-trigger {
        display: block;
    }

    .main-nav .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--warm-white);
        padding: 1rem 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-nav .nav li a {
        padding: 0.75rem 1.5rem;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav {
        flex-wrap: wrap;
        position: relative;
    }
}

/* ─── About ───────────────────────────────────────────────── */
.about-section { background: var(--warm-white); }

.about-card-modern {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 4rem; align-items: center;
  padding: 3.5rem; background: #fff;
  border: 1px solid var(--border-light); position: relative;
}
/* Red-to-green top accent stripe — mirrors logo colour split */
.about-card-modern::before {
  content: ''; position: absolute;
  top: -1px; left: 3.5rem; width: 80px; height: 3px;
  background: linear-gradient(to right, var(--red) 60%, var(--green) 100%);
}

.about-img { position: relative; }
.about-img img { width: 100%; height: 320px; object-fit: contain; display: block; }
.about-img-frame {
  position: absolute; bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 1px solid var(--red); opacity: 0.22; pointer-events: none;
}

.about-text p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Partners ────────────────────────────────────────────── */
.partners-section { background: #fff; overflow: hidden; }
.partners-section .section-heading { margin-bottom: 2.5rem; }

.slider { overflow: hidden; width: 100%; }
.slide-track {
  display: flex; width: calc(250px * 14);
  animation: scroll 28s linear infinite;
}
.slide-track .slide { display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.slide-track .slide img { filter: grayscale(1) opacity(.5); transition: filter .3s; }
.slide-track .slide:hover img { filter: grayscale(0) opacity(1); }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* ─── President ───────────────────────────────────────────── */
.president-section { background: var(--warm-white); }
.president-grid {
  display: grid; grid-template-columns: 320px 1fr 200px;
  gap: 4rem; align-items: start;
}

.president-img-wrap { position: relative; }
.president-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
/* Green corner frame — secondary brand colour as accent */
.president-img-accent {
  position: absolute; bottom: -16px; left: -16px;
  width: 50%; height: 40%;
  border: 1px solid var(--green); opacity: 0.4; pointer-events: none;
}

.president-body .section-heading { margin-bottom: 1.5rem; }
.president-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; font-style: italic;
  color: var(--text-body); margin-top: 0.75rem; margin-bottom: 1.75rem;
}
.president-body p { font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); }

.president-links { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 3rem; }
.pres-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border: 1px solid var(--border-light);
  background: #fff; transition: border-color .3s, background .3s;
}
.pres-link:hover { border-color: var(--red); background: rgba(139, 26, 26, 0.04); }
.pres-link span {
  font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-body); font-weight: 500;
}

/* ─── Facts / Stats ───────────────────────────────────────── */
.facts-section {
  background: var(--dark-mid);
  padding: 6rem 0; position: relative; overflow: hidden;
}
/* Radial red–green glow echoing the logo's two-colour identity */
.facts-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(61, 107, 65, 0.09)  0%, transparent 60%);
  pointer-events: none;
}

.facts-grid {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.fact-item { flex: 1; text-align: center; padding: 2rem; }
.fact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 300;
  color: var(--red-light); line-height: 1; margin-bottom: 0.75rem;
}
.fact-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247, 244, 240, 0.45); line-height: 1.6;
}
.fact-divider {
  width: 1px; height: 60px;
  background: rgba(139, 26, 26, 0.25); flex-shrink: 0;
}

/* ─── Events ──────────────────────────────────────────────── */
.posts_grid_area { background: #fff; }
.posts_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; margin-top: 1rem;
}
.post-card {
  border: 1px solid var(--border-light);
  background: var(--warm-white); overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.post-card:hover { border-color: var(--red); box-shadow: 0 12px 40px rgba(139, 26, 26, 0.08); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.post-card-body { padding: 1.5rem; }
.post-card-tag {
  font-size: 0.65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem; font-weight: 500;
}
.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; line-height: 1.25;
  color: var(--dark); margin-bottom: .75rem;
}
.post-card-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-section { background: var(--warm-white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 4rem; align-items: start;
}
.map-wrap {
  overflow: hidden; border: 1px solid var(--border-light); margin-bottom: 1.5rem;
}
.map-wrap iframe { display: block; }

.contact-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: #fff;
  border: 1px solid var(--border-light); transition: border-color .3s;
}
.contact-info-item:hover { border-color: var(--red); }
.contact-info-item div    { display: flex; flex-direction: column; }
.contact-info-item strong { font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.contact-info-item span   { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 0.15rem; }

/* Form */
.contact-form-col { padding-top: 0.5rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-body); margin-bottom: 0.45rem;
}
.form-field input,
.form-field textarea {
  width: 100%; background: #fff;
  border: 1px solid var(--border-light); border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  font-weight: 300; color: var(--dark);
  outline: none; transition: border-color .3s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ─── 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; }
.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: none; }
  .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);
  }
  .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; }
}