body > div.wp-site-blocks > div

.phone-number-link a {
  color: #FFFFFF !important; /* Use !important to override default styles */
  text-decoration: none; /* Remove underline if desired */
}

h1.wp-block-site-title.has-text-color.has-custom-superdark-color {
	font-weight: 500 !important;
}

.wp-block-navigation-submenu li a {
	font-weight: 400;
}

nav a {
  transition: text-shadow .18s ease;
}

nav a:hover {
  text-shadow: 0 0 0.5px currentColor;
}

/* Smooth transition for all nav links */
nav a {
  transition: text-shadow .18s ease;
}

/* Hover effect */
nav a:hover,
nav a:focus {
  text-shadow: 0 0 0.5px currentColor;
}

/* Active/current page link */
li.current-menu-item > a {
  text-shadow: 0 0 0.5px currentColor;
}

/* Remove grey hover background on buttons */
.page-id-6 .wp-block-button__link:hover,
.page-id-6 .wp-block-button__link:focus,
.page-id-6 .wp-block-button__link:active {
  background-color: transparent !important;
	cursor: default !important;
}

.page-id-1283 .wavy-title {
  margin-bottom: 0;
}

.page-id-1283 .wavy-title span {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-bottom: 4px; /* space for underline */
}

.page-id-1283 .wp-block-heading.wavy-title {
  display: inline-block;
  position: relative;
  margin-bottom: 0 !important;
  padding-bottom: 12px; /* space for the underline */
}

.wp-block-heading.wavy-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-image: url(https://hannahgschneider.com/wp-content/uploads/2025/12/depositphotos_547647562-stock-illustration-wavy-waving-lines-curve-curvy-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

@media screen and (max-width: 768px) {
  footer a[href^="tel"] {
    color: inherit !important;
    -webkit-text-fill-color: inherit;
  }
}

@media (max-width: 768px) {
  footer .wp-block-columns {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    gap: 0px !important;
	}
	
}
	
@media (max-width: 768px) {
  header .wp-block-group.is-layout-flex {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  header .wp-block-site-title {
    white-space: nowrap;
		margin-right: 50px;
  }
}

@media (max-width: 768px) {
	header .wp-block-site-logo {
		max-width: 28px;
	}
}

@media (max-width: 768px) {
	main 
	{
		margin-block-start: 0;
	}
}

@media (max-width: 768px) {
  header .wp-block-site-logo img {
    display: block;
    position: relative;
    top: 9px;
  }
}

@media (min-width: 768px) {
  header .wp-block-site-logo img {
    display: block;
    position: relative;
    top: -2px;
  }
}



/* Mobile Dropdown Menu Styles - Universal Version */

@media (max-width: 782px) {
  /* Add spacing to main menu items */
  nav > ul > li,
  .menu > li,
  header nav li {
    margin-bottom: 8px;
  }
  
  nav > ul > li > a,
  .menu > li > a,
  header nav li > a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  /* Hide all nested ul elements (submenus) by default on mobile */
  /* But NOT the main navigation overlay menu */
  .has-submenu > ul {
    display: none !important;
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
  }
  
  /* Show submenu when parent has dropdown-active class */
  .has-submenu.dropdown-active > ul {
    display: block !important;
  }
  
  /* Add arrow indicator to items with submenus */
  .has-submenu > a {
    position: relative;
    padding-right: 35px !important;
  }
  
  .has-submenu > a::after {
    content: '∨';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  /* Change to up arrow when dropdown is active */
  .has-submenu.dropdown-active > a::after {
    content: '∧';
  }
  
  /* Smooth animation for dropdown */
  .has-submenu > ul {
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
    }
  }
}