/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0.0
*/

/* Logo size */
.site-logo img {
    height: 80px;
    width: auto;
}

/* Hide site title text */
.main-title {
    display: none;
}

/* Primary navigation background */
.main-navigation,
.main-navigation ul ul {
    background-color: var(--color-slate-blue) !important;
}

/* Nav link colors */
.main-navigation a {
    color: var(--color-white) !important;
}

.main-navigation a:hover {
    color: var(--color-wine-red) !important;
}

/* Remove gap between header and nav to make them appear as one row */
.site-header {
    padding-bottom: 0;
    margin-bottom: 0;
}

.main-navigation {
    margin-top: 0;
}

/* Tighten header height */
.inside-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Tighten nav bar height */
.main-navigation .main-nav ul li a {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* ── Custom Header (Path B) ── */
.custom-header {
    background-color: var(--color-slate-blue);
    width: 100%;
}

.custom-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
}

/* Logo */
.custom-header-logo img {
    height: 80px;
    width: auto;
}

/* Nav */
.custom-header-nav .custom-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.custom-header-nav .custom-nav-menu li a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-family: Roboto, sans-serif;
    font-size: 0.95rem;
}

.custom-header-nav .custom-nav-menu li a:hover {
    color: var(--color-wine-red);
}

/* Search */
.custom-header-search button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.custom-header-search button:hover {
    color: var(--color-red);
}
/* Hide duplicate GP navigation */
header.custom-header + nav.main-navigation {
    display: none !important;
}
/* Fix nav centering in custom header */
.custom-header-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.custom-header-nav {
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-header-search {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Prevent nav items from wrapping */
.custom-header-nav .custom-nav-menu li {
    white-space: nowrap;
}
.hero-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
}
/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-eyebrow {
    color: var(--color-white) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-headline {
    color: var(--color-white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtext {
    color: var(--color-white);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

a.btn-primary {
    background-color: var(--color-wine-red) !important;
    color: var(--color-white) !important;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background-color: transparent !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-white) !important;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.gb-element-df63eccb {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mission-strip-inner {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===================================
   Global width variables
   =================================== */
:root {
    --container-width: 1200px;
    --content-width: 600px;
}

/* ===================================
   Explore Content Page — Hero Band
   =================================== */
.hero-band {
    max-width: var(--container-width);
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
}