/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 30 2025 | 10:42:08 */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
/* Force tagline size and style under logo */
#main-header p.site-description {
  font-family: 'Dancing Script', cursive !important;
  font-size: 24px !important;   /* desktop / large screens */
  line-height: 1.4 !important;
  font-weight: 500 !important;
  color: #073b60 !important;   /* navy brand color */
  margin-top: 4px;
}

/* Mobile: make tagline smaller so it doesn’t crowd header */
@media (max-width: 768px) {
  #main-header p.site-description {
    font-size: 18px !important;
  }
}

/*.entry-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic; /* optional */
     /*color: #555;
    margin-top: -10px;
    margin-bottom: 30px;*/ /* was 20px, now 30px for extra spacing */
}



/* Stack logo above the tagline */
.site-branding{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start; /* change to center if you prefer */
  gap:.35rem;
}

/* Enlarge the logo safely */
.site-branding .custom-logo{
  width: clamp(260px, 22vw, 440px);
  height:auto;
  max-height:none !important;
}
/* Tagline style (font + size) */
.site-description{
  font-family:"Dancing Script", cursive;   /* Dancing Script font */
  font-style:italic;
  font-weight:500;
 font-size:clamp(20px,2.5vw,28px);   /* Noticeably larger */
  line-height:1.2;
  margin:0;
  opacity:.95;
}

/* Optional: center on mobile & tighten size */
@media (max-width: 768px){
  .site-branding{ align-items:center; }
  .site-description{ font-size:clamp(13px,3.8vw,16px); }
}

/* Remove border/background from mobile search toggle */
.header-search-toggle button {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

