/*
Theme Name: Bodrum Hidrofor
Theme URI: https://bodrumhidrofor.com.tr
Author: Bodrum Hidrofor
Description: Bodrum yarımadası hidrofor arıza tespiti, tamir, bakım ve kurulum hizmetleri için profesyonel, "Bodrum blue" temalı, mobil uyumlu kurumsal WordPress teması. 11 hizmet bölgesi için özel SEO sayfaları, sabit telefon ve WhatsApp iletişim butonları içerir.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bodrum-hidrofor
*/

:root {
  --bh-primary: #0e4c92;
  --bh-primary-dark: #0a3b73;
  --bh-primary-light: rgba(14, 76, 146, 0.1);
  --bh-whatsapp: #25d366;
  --bh-whatsapp-dark: #20bd5a;
  --bh-slate-950: #0a0f1a;
  --bh-slate-900: #0f172a;
  --bh-slate-800: #1e293b;
  --bh-slate-600: #475569;
  --bh-slate-400: #94a3b8;
  --bh-slate-200: #e2e8f0;
  --bh-slate-100: #f1f5f9;
  --bh-slate-50: #f8fafc;
  --bh-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--bh-slate-800);
  background: var(--bh-white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.bh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Marquee */
.bh-announcement {
  background: var(--bh-slate-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 8px 0;
}

.bh-marquee-track {
  display: flex;
  width: max-content;
  animation: bh-marquee 28s linear infinite;
}

.bh-marquee-group {
  display: flex;
  flex-shrink: 0;
}

.bh-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.bh-marquee-item svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

@keyframes bh-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .bh-marquee-item {
    font-size: 0.9rem;
  }
}

/* Header */
.bh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bh-slate-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.bh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bh-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.bh-logo:hover img {
  transform: scale(1.05);
}

.bh-nav-desktop {
  display: none;
  gap: 32px;
  align-items: center;
}

.bh-nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bh-slate-600);
  transition: color 0.2s;
}

.bh-nav-desktop a:hover,
.bh-nav-desktop a.active {
  color: var(--bh-primary);
}

.bh-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bh-btn-phone-header {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--bh-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s;
}

.bh-btn-phone-header:hover {
  background: var(--bh-primary-dark);
  transform: translateY(-1px);
}

.bh-menu-toggle {
  display: flex;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--bh-slate-800);
}

.bh-mobile-nav {
  display: none;
  border-top: 1px solid var(--bh-slate-200);
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}

.bh-mobile-nav.open {
  display: flex;
}

.bh-mobile-nav a {
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  color: var(--bh-slate-800);
}

.bh-mobile-nav a.active {
  background: var(--bh-primary-light);
  color: var(--bh-primary);
}

.bh-mobile-nav .bh-mobile-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bh-slate-200);
}

.bh-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bh-primary);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .bh-nav-desktop {
    display: flex;
  }
  .bh-menu-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .bh-btn-phone-header {
    display: flex;
  }
}

/* Hero */
.bh-hero {
  position: relative;
  overflow: hidden;
  background: var(--bh-slate-900);
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.bh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.bh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.85) 60%, transparent);
}

.bh-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}

.bh-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14, 76, 146, 0.25);
  border: 1px solid rgba(14, 76, 146, 0.4);
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.bh-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.bh-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.bh-hero h1 .accent {
  color: #4f9dff;
}

.bh-hero p {
  font-size: 1.1rem;
  color: var(--bh-slate-400);
  margin-bottom: 36px;
  max-width: 620px;
}

.bh-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.bh-btn-primary {
  background: var(--bh-primary);
  color: #fff;
}

.bh-btn-primary:hover {
  background: var(--bh-primary-dark);
  transform: translateY(-2px);
}

.bh-btn-whatsapp {
  background: var(--bh-whatsapp);
  color: #fff;
}

.bh-btn-whatsapp:hover {
  background: var(--bh-whatsapp-dark);
  transform: translateY(-2px);
}

.bh-btn-white {
  background: #fff;
  color: var(--bh-primary);
}

.bh-btn-white:hover {
  background: var(--bh-slate-100);
}

/* Trust badge strip */
.bh-trust-strip {
  background: var(--bh-slate-50);
  border-bottom: 1px solid var(--bh-slate-200);
  padding: 24px 0;
}

.bh-trust-strip .bh-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.bh-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bh-slate-600);
}

.bh-trust-item svg {
  color: var(--bh-primary);
  flex-shrink: 0;
}

/* Sections */
.bh-section {
  padding: 96px 0;
}

.bh-section-white {
  background: #fff;
}

.bh-section-slate {
  background: var(--bh-slate-50);
}

.bh-section-dark {
  background: var(--bh-slate-950);
  color: #fff;
  text-align: center;
}

.bh-section-primary {
  background: var(--bh-primary);
  color: #fff;
}

.bh-section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.bh-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bh-slate-900);
  margin-bottom: 20px;
}

.bh-section-head p {
  font-size: 1.1rem;
  color: var(--bh-slate-600);
}

.bh-section-dark h2,
.bh-section-primary h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.bh-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bh-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bh-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bh-card {
  background: var(--bh-slate-50);
  border: 1px solid var(--bh-slate-100);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.bh-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(14, 76, 146, 0.2);
}

.bh-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--bh-primary);
}

.bh-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-slate-900);
  margin-bottom: 16px;
}

.bh-card p {
  color: var(--bh-slate-600);
}

/* Tagline / two-col split */
.bh-split {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bh-split {
    flex-direction: row;
  }
  .bh-split > div {
    flex: 1;
  }
}

.bh-split img {
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.bh-phone-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 24px;
}

/* Region grid links */
.bh-region-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .bh-region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bh-region-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.bh-region-chip {
  background: #fff;
  border: 1px solid var(--bh-slate-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--bh-slate-800);
  transition: all 0.2s;
}

.bh-region-chip:hover {
  border-color: var(--bh-primary);
  color: var(--bh-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Region hub cards */
.bh-region-card {
  background: #fff;
  border: 1px solid var(--bh-slate-200);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s;
}

.bh-region-card:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bh-region-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bh-region-card-icon {
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  padding: 12px;
  border-radius: 12px;
  display: flex;
}

.bh-region-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bh-slate-900);
  margin: 0;
}

.bh-region-card p {
  color: var(--bh-slate-600);
  flex: 1;
  margin-bottom: 20px;
}

.bh-region-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bh-primary);
  font-weight: 600;
}

/* Region page hero */
.bh-region-hero {
  position: relative;
  padding: 80px 0;
  background: var(--bh-slate-900);
  color: #fff;
  overflow: hidden;
}

.bh-region-hero .bh-hero-inner {
  padding: 0;
  max-width: 720px;
}

.bh-region-hero h1 {
  font-size: 2.25rem;
}

/* Article layout */
.bh-article-layout {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 1024px) {
  .bh-article-layout {
    flex-direction: row;
  }
  .bh-article-main {
    width: 66.66%;
  }
  .bh-article-side {
    width: 33.33%;
  }
}

.bh-article-main h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--bh-slate-900);
  border-bottom: 1px solid var(--bh-slate-200);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.bh-article-main p {
  color: var(--bh-slate-700);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.bh-article-main p:first-of-type::first-letter {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--bh-primary);
  float: left;
  margin-right: 12px;
  line-height: 1;
}

.bh-callout {
  background: var(--bh-slate-50);
  border-left: 4px solid var(--bh-primary);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.bh-callout h3 {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--bh-slate-900);
  font-size: 1.15rem;
}

.bh-side-card {
  background: var(--bh-slate-50);
  border: 1px solid var(--bh-slate-200);
  border-radius: 16px;
  padding: 32px;
}

.bh-side-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--bh-slate-900);
}

.bh-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-side-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--bh-slate-700);
}

.bh-side-card li svg {
  color: var(--bh-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.bh-side-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bh-side-image img {
  width: 100%;
}

.bh-side-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.bh-side-image-overlay h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.bh-side-image-overlay p {
  color: var(--bh-slate-400);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.bh-side-image-overlay a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bh-primary);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}

/* Feature list (about) */
.bh-feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .bh-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bh-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bh-feature-icon {
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
}

.bh-feature h4 {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--bh-slate-900);
}

.bh-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--bh-slate-600);
}

.bh-expertise-box {
  background: var(--bh-slate-50);
  border: 1px solid var(--bh-slate-200);
  border-radius: 24px;
  padding: 40px;
}

.bh-expertise-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--bh-slate-900);
}

.bh-expertise-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.bh-expertise-item svg {
  color: var(--bh-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.bh-expertise-item h4 {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--bh-slate-900);
}

.bh-expertise-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--bh-slate-600);
}

/* Contact page */
.bh-contact-cards {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .bh-contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bh-contact-card {
  background: #fff;
  border: 1px solid var(--bh-slate-200);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s;
}

.bh-contact-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bh-contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bh-contact-card-icon.phone {
  background: var(--bh-primary-light);
  color: var(--bh-primary);
}

.bh-contact-card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--bh-whatsapp);
}

.bh-contact-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--bh-slate-900);
}

.bh-contact-card p {
  color: var(--bh-slate-600);
  margin-bottom: 16px;
}

.bh-contact-card .value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bh-primary);
}

.bh-contact-card .value.whatsapp {
  color: var(--bh-whatsapp);
  font-size: 1.1rem;
}

.bh-info-box {
  background: var(--bh-slate-50);
  border: 1px solid var(--bh-slate-200);
  border-radius: 24px;
  padding: 40px;
}

.bh-info-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--bh-slate-200);
  padding-bottom: 16px;
  margin-bottom: 32px;
  color: var(--bh-slate-900);
}

.bh-info-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bh-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bh-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bh-info-item svg {
  color: var(--bh-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.bh-info-item h4 {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--bh-slate-900);
}

.bh-info-item p,
.bh-info-item a {
  margin: 0;
  color: var(--bh-slate-600);
}

.bh-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bh-tag {
  background: #fff;
  border: 1px solid var(--bh-slate-200);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Footer */
.bh-footer {
  background: var(--bh-slate-950);
  color: var(--bh-slate-400);
  padding: 64px 0 32px;
  border-top: 1px solid var(--bh-slate-900);
}

.bh-footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .bh-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bh-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bh-footer h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.bh-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bh-footer-brand img {
  height: 56px;
  filter: brightness(1.25);
}

.bh-footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bh-footer-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.bh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bh-footer-regions ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.bh-footer a:hover {
  color: var(--bh-primary);
}

.bh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bh-footer-contact-icon {
  background: var(--bh-slate-900);
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.bh-footer-bottom {
  border-top: 1px solid var(--bh-slate-800);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .bh-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating buttons */
.bh-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
}

.bh-float-btn:hover {
  transform: scale(1.1);
}

.bh-float-phone {
  background: var(--bh-primary);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(14, 76, 146, 0.15);
}

.bh-float-whatsapp {
  background: var(--bh-whatsapp);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.15);
}

@media (max-width: 640px) {
  .bh-hero h1 {
    font-size: 2rem;
  }
  .bh-section {
    padding: 64px 0;
  }
  .bh-section-head h2,
  .bh-section-dark h2,
  .bh-section-primary h2 {
    font-size: 1.75rem;
  }
}
