/*
Theme Name: FC Developer - Football Club Theme
Theme URI: https://example.com/fc-developer
Author: Claude
Author URI: https://example.com
Description: A modern, sleek WordPress theme designed for football/soccer clubs. Fully compatible with Elementor page builder. Features team roster, match schedule, news sections, and a professional design system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fc-developer
Tags: sports, football, soccer, elementor, custom-logo, custom-menu, featured-images, theme-options
*/

/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Palette */
    --fc-primary: #0D1B2A;
    --fc-primary-light: #1B2D45;
    --fc-accent: #00E676;
    --fc-accent-hover: #00C853;
    --fc-accent-glow: rgba(0, 230, 118, 0.15);
    
    /* Neutral Palette */
    --fc-white: #FFFFFF;
    --fc-off-white: #F4F6F8;
    --fc-gray-100: #E8ECF0;
    --fc-gray-200: #CED4DA;
    --fc-gray-400: #8A94A0;
    --fc-gray-600: #4A5568;
    --fc-gray-800: #2D3748;
    --fc-dark: #0A0F1A;
    
    /* Functional */
    --fc-win: #00E676;
    --fc-draw: #FFB300;
    --fc-loss: #FF5252;
    
    /* Typography */
    --fc-font-display: 'Outfit', sans-serif;
    --fc-font-body: 'DM Sans', sans-serif;
    --fc-font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing Scale */
    --fc-space-xs: 0.25rem;
    --fc-space-sm: 0.5rem;
    --fc-space-md: 1rem;
    --fc-space-lg: 1.5rem;
    --fc-space-xl: 2rem;
    --fc-space-2xl: 3rem;
    --fc-space-3xl: 4rem;
    --fc-space-4xl: 6rem;
    
    /* Border Radius */
    --fc-radius-sm: 4px;
    --fc-radius-md: 8px;
    --fc-radius-lg: 12px;
    --fc-radius-xl: 16px;
    --fc-radius-full: 9999px;
    
    /* Shadows */
    --fc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --fc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --fc-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --fc-shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
    --fc-shadow-accent: 0 4px 20px rgba(0, 230, 118, 0.25);
    
    /* Transitions */
    --fc-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --fc-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --fc-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --fc-container-max: 1280px;
    --fc-header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fc-font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--fc-gray-800);
    background-color: var(--fc-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--fc-transition-fast);
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fc-font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--fc-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--fc-space-md);
    color: var(--fc-gray-600);
}

.fc-label {
    font-family: var(--fc-font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-accent);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.fc-container {
    width: 100%;
    max-width: var(--fc-container-max);
    margin-inline: auto;
    padding-inline: var(--fc-space-xl);
}

.fc-section {
    padding-block: var(--fc-space-4xl);
}

.fc-section--dark {
    background: var(--fc-primary);
    color: var(--fc-white);
}

.fc-section--dark h2,
.fc-section--dark h3,
.fc-section--dark h4 {
    color: var(--fc-white);
}

.fc-section--dark p {
    color: var(--fc-gray-200);
}

.fc-section--alt {
    background: var(--fc-off-white);
}

.fc-grid {
    display: grid;
    gap: var(--fc-space-xl);
}

.fc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.fc-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.fc-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.fc-flex {
    display: flex;
    align-items: center;
    gap: var(--fc-space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fc-space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--fc-font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: var(--fc-radius-md);
    cursor: pointer;
    transition: all var(--fc-transition-base);
    white-space: nowrap;
}

.fc-btn--primary {
    background: var(--fc-accent);
    color: var(--fc-primary);
    border-color: var(--fc-accent);
}

.fc-btn--primary:hover {
    background: var(--fc-accent-hover);
    border-color: var(--fc-accent-hover);
    box-shadow: var(--fc-shadow-accent);
    transform: translateY(-1px);
}

.fc-btn--outline {
    background: transparent;
    color: var(--fc-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.fc-btn--outline:hover {
    border-color: var(--fc-accent);
    color: var(--fc-accent);
}

.fc-btn--ghost {
    background: transparent;
    color: var(--fc-accent);
    padding: 0.5rem 1rem;
}

.fc-btn--ghost:hover {
    background: var(--fc-accent-glow);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.fc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--fc-header-height);
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--fc-transition-base);
}

.fc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--fc-container-max);
    margin-inline: auto;
    padding-inline: var(--fc-space-xl);
}

.fc-header__brand {
    display: flex;
    align-items: center;
    gap: var(--fc-space-sm);
}

.fc-header__brand img {
    height: 40px;
    width: auto;
}

.fc-header__brand-name {
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fc-white);
    letter-spacing: -0.01em;
}

.fc-header__brand-name span {
    color: var(--fc-accent);
}

.fc-header__nav {
    display: flex;
    align-items: center;
    gap: var(--fc-space-xl);
}

.fc-header__nav a {
    font-family: var(--fc-font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fc-gray-200);
    letter-spacing: 0.02em;
    position: relative;
    padding-block: var(--fc-space-xs);
}

.fc-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fc-accent);
    border-radius: 1px;
    transition: width var(--fc-transition-base);
}

.fc-header__nav a:hover,
.fc-header__nav a.current-menu-item {
    color: var(--fc-white);
}

.fc-header__nav a:hover::after,
.fc-header__nav a.current-menu-item::after {
    width: 100%;
}

.fc-header__cta {
    margin-left: var(--fc-space-md);
}

/* Mobile Toggle */
.fc-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--fc-space-sm);
}

.fc-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fc-white);
    border-radius: 2px;
    transition: all var(--fc-transition-fast);
}

@media (max-width: 768px) {
    .fc-header__toggle { display: flex; }
    .fc-header__nav {
        position: fixed;
        top: var(--fc-header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--fc-primary);
        padding: var(--fc-space-xl);
        gap: var(--fc-space-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--fc-transition-base);
    }
    .fc-header__nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.fc-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--fc-primary);
    overflow: hidden;
    padding-top: var(--fc-header-height);
}

.fc-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: saturate(0.6);
}

.fc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.95) 0%,
        rgba(13, 27, 42, 0.7) 50%,
        rgba(13, 27, 42, 0.85) 100%
    );
}

/* Decorative grid lines */
.fc-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 230, 118, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.fc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.fc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--fc-space-sm);
    padding: 0.4rem 1rem;
    background: var(--fc-accent-glow);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--fc-radius-full);
    margin-bottom: var(--fc-space-xl);
}

.fc-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.fc-hero__badge-text {
    font-family: var(--fc-font-mono);
    font-size: 0.75rem;
    color: var(--fc-accent);
    letter-spacing: 0.05em;
}

.fc-hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--fc-white);
    margin-bottom: var(--fc-space-lg);
    line-height: 1.05;
}

.fc-hero__title span {
    color: var(--fc-accent);
}

.fc-hero__desc {
    font-size: 1.15rem;
    color: var(--fc-gray-200);
    margin-bottom: var(--fc-space-2xl);
    max-width: 540px;
    line-height: 1.7;
}

.fc-hero__actions {
    display: flex;
    gap: var(--fc-space-md);
    flex-wrap: wrap;
}

/* Stat bar at bottom of hero */
.fc-hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-hero__stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--fc-container-max);
    margin-inline: auto;
}

.fc-hero__stat {
    padding: var(--fc-space-lg) var(--fc-space-xl);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-hero__stat:last-child {
    border-right: none;
}

.fc-hero__stat-value {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fc-accent);
}

.fc-hero__stat-label {
    font-family: var(--fc-font-mono);
    font-size: 0.7rem;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .fc-hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
    .fc-hero__stat:nth-child(2) { border-right: none; }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.fc-section-header {
    margin-bottom: var(--fc-space-3xl);
}

.fc-section-header__label {
    display: flex;
    align-items: center;
    gap: var(--fc-space-sm);
    margin-bottom: var(--fc-space-sm);
}

.fc-section-header__line {
    width: 32px;
    height: 2px;
    background: var(--fc-accent);
    border-radius: 1px;
}

.fc-section-header__title {
    margin-bottom: var(--fc-space-sm);
}

.fc-section-header__desc {
    font-size: 1.05rem;
    max-width: 560px;
}

/* ============================================
   TEAM ROSTER / PLAYER CARDS
   ============================================ */
.fc-player-card {
    position: relative;
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow-sm);
    transition: all var(--fc-transition-base);
    border: 1px solid var(--fc-gray-100);
}

.fc-player-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-accent);
}

.fc-player-card__image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, var(--fc-primary-light), var(--fc-primary));
    overflow: hidden;
}

.fc-player-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fc-transition-slow);
}

.fc-player-card:hover .fc-player-card__image img {
    transform: scale(1.05);
}

.fc-player-card__number {
    position: absolute;
    top: var(--fc-space-md);
    right: var(--fc-space-md);
    font-family: var(--fc-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fc-white);
    opacity: 0.25;
    line-height: 1;
}

.fc-player-card__position {
    position: absolute;
    bottom: var(--fc-space-md);
    left: var(--fc-space-md);
    padding: 0.25rem 0.75rem;
    background: var(--fc-accent);
    color: var(--fc-primary);
    font-family: var(--fc-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--fc-radius-sm);
}

.fc-player-card__info {
    padding: var(--fc-space-lg);
}

.fc-player-card__name {
    font-family: var(--fc-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fc-primary);
    margin-bottom: 2px;
}

.fc-player-card__meta {
    font-size: 0.85rem;
    color: var(--fc-gray-400);
}

/* ============================================
   MATCH SCHEDULE / RESULTS
   ============================================ */
.fc-match {
    display: flex;
    align-items: center;
    gap: var(--fc-space-lg);
    padding: var(--fc-space-lg) var(--fc-space-xl);
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    border: 1px solid var(--fc-gray-100);
    transition: all var(--fc-transition-base);
}

.fc-match:hover {
    border-color: var(--fc-accent);
    box-shadow: var(--fc-shadow-md);
}

.fc-match__date {
    flex-shrink: 0;
    text-align: center;
    min-width: 60px;
}

.fc-match__date-day {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--fc-primary);
}

.fc-match__date-month {
    font-family: var(--fc-font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fc-gray-400);
    margin-top: 2px;
}

.fc-match__divider {
    width: 1px;
    height: 40px;
    background: var(--fc-gray-100);
    flex-shrink: 0;
}

.fc-match__teams {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--fc-space-md);
}

.fc-match__team {
    display: flex;
    align-items: center;
    gap: var(--fc-space-sm);
    font-family: var(--fc-font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--fc-primary);
}

.fc-match__team img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.fc-match__vs {
    font-family: var(--fc-font-mono);
    font-size: 0.7rem;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fc-match__score {
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fc-primary);
    letter-spacing: 0.05em;
}

.fc-match__result {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fc-radius-sm);
    font-family: var(--fc-font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fc-white);
}

.fc-match__result--win { background: var(--fc-win); color: var(--fc-primary); }
.fc-match__result--draw { background: var(--fc-draw); color: var(--fc-primary); }
.fc-match__result--loss { background: var(--fc-loss); }

.fc-match__info {
    flex-shrink: 0;
    text-align: right;
}

.fc-match__competition {
    font-family: var(--fc-font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fc-accent);
}

.fc-match__venue {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
}

.fc-matches-list {
    display: flex;
    flex-direction: column;
    gap: var(--fc-space-md);
}

@media (max-width: 600px) {
    .fc-match {
        flex-wrap: wrap;
        gap: var(--fc-space-md);
    }
    .fc-match__info {
        text-align: left;
        flex: 1 0 100%;
        border-top: 1px solid var(--fc-gray-100);
        padding-top: var(--fc-space-md);
    }
}

/* ============================================
   NEWS / BLOG CARDS
   ============================================ */
.fc-news-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--fc-gray-100);
    transition: all var(--fc-transition-base);
}

.fc-news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-accent);
}

.fc-news-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--fc-gray-100);
}

.fc-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fc-transition-slow);
}

.fc-news-card:hover .fc-news-card__image img {
    transform: scale(1.05);
}

.fc-news-card__body {
    padding: var(--fc-space-lg);
}

.fc-news-card__category {
    font-family: var(--fc-font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fc-accent);
    margin-bottom: var(--fc-space-sm);
}

.fc-news-card__title {
    font-family: var(--fc-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fc-primary);
    margin-bottom: var(--fc-space-sm);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-news-card__excerpt {
    font-size: 0.9rem;
    color: var(--fc-gray-400);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--fc-space-md);
}

.fc-news-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--fc-space-md);
    border-top: 1px solid var(--fc-gray-100);
}

.fc-news-card__date {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
}

.fc-news-card__link {
    font-family: var(--fc-font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fc-accent);
    transition: color var(--fc-transition-fast);
}

.fc-news-card__link:hover {
    color: var(--fc-accent-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.fc-footer {
    background: var(--fc-dark);
    color: var(--fc-gray-400);
    padding-top: var(--fc-space-4xl);
}

.fc-footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--fc-space-3xl);
    padding-bottom: var(--fc-space-3xl);
}

.fc-footer__brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--fc-space-md);
    max-width: 320px;
}

.fc-footer__heading {
    font-family: var(--fc-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fc-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--fc-space-lg);
}

.fc-footer__links a {
    display: block;
    padding-block: 0.35rem;
    font-size: 0.9rem;
    color: var(--fc-gray-400);
    transition: color var(--fc-transition-fast);
}

.fc-footer__links a:hover {
    color: var(--fc-accent);
}

.fc-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--fc-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.fc-footer__socials {
    display: flex;
    gap: var(--fc-space-md);
}

.fc-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--fc-gray-400);
    transition: all var(--fc-transition-fast);
}

.fc-footer__socials a:hover {
    background: var(--fc-accent);
    color: var(--fc-primary);
}

@media (max-width: 768px) {
    .fc-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .fc-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ELEMENTOR OVERRIDES / COMPATIBILITY
   ============================================ */
.elementor-page .fc-header {
    z-index: 10000;
}

.elementor-section.elementor-section-stretched {
    max-width: 100%;
}

.elementor-widget-wrap {
    font-family: var(--fc-font-body);
}

/* Ensure Elementor respects our typography */
.elementor h1, .elementor h2, .elementor h3,
.elementor h4, .elementor h5, .elementor h6 {
    font-family: var(--fc-font-display);
}
