/**
* Template Name: Custom Changes
*/
#header {
  top: var(--wp-admin--admin-bar--height, 0px);
  position: fixed;
  width: 100%;
}

.custom-logo {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: "Inspiration", serif;
}

.custom-logo span {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 300;
  font-family: var(--font-primary);
}

.invert {
  filter: invert(100%);
}

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

.badge {
  position: absolute;
  top: -15px;
  /* Pulls it above the card border */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff9800;
  /* A high-contrast color like orange */
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.fixed-top {
  background-color: rgba(241, 245, 249, 0.6);
  backdrop-filter: blur(10px);
  /* This makes the dark background blur beautifully underneath */
  -webkit-backdrop-filter: blur(10px);
  z-index: 1150;
}

.sticked {
  background-color: rgba(241, 245, 249, 0.9) !important;
  backdrop-filter: blur(10px);
  /* This makes the dark background blur beautifully underneath */
  -webkit-backdrop-filter: blur(10px);
  z-index: 1155;
}

body {
  background-color: #E2E8F0;
}

/* --- HERO SECTION --- */
/* The main container for the static hero section */
.hero-static {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
  /* FORCES the main container to be transparent so the image shows through */
  background: transparent !important;
}

/* This layer handles the background image ONLY */
.hero-static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;

  /* muted background image with overlay */
  opacity: 0.2;
  filter: blur(3px);
}


/* Force service icons to be identical squares */
.uniform-service-img {
  width: 100% !important;
  /* Match your desired icon width */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* Crops the edges so it doesn't look squished */
  border-radius: 4px;
  /* Optional: matches Bootstrap style */
}



body.admin-bar .header-fixed-top {
  top: var(--wp-admin--admin-bar--height) !important;
}