@charset "UTF-8";
/*
Theme Name: JDG2019
Author: Jared Hoylman
Version: 1.0
*/

/* Fonts
-------------------------------------------------------------- */
@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans/OpenSans-Regular.ttf') format('ttf');
  src: url('OpenSans/OpenSans-Bold.ttf') format('ttf');
}

/* Base
-------------------------------------------------------------- */
body {
  width: 100%;
  min-height: 100%;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden !important;
}

a {
  color: #053F6C;
}

/* Logo
-------------------------------------------------------------- */
#mobile-logo {
  max-height: 27px;
  margin-top: -6px;
}

#logo {
  max-width: 51px;
  max-height: 51px;
}

/* Navigation
-------------------------------------------------------------- */

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 1.0);
    border-color: rgba(0, 0, 0, 1.0);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0, 0, 0, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}


a.nav-link {
  font-size: 1.25em;
  color: black !important;
}

a.nav-link.active,
.home-link,
.mobile-home-link {
  font-weight: bold;
}

.nav-link {
  display: block;
  padding: .5rem 0.8rem !important;
}

a.mobile-home-link {
    display: inline-block;
    font-size: 1.5rem!important;
    padding:0px!important;
    margin:0px!important;
}


.desktop-nav {
  display: none;
}

.sn {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
}

/* Off-canvas
-------------------------------------------------------------- */
.bs-canvas-overlay {
  opacity: 0;
  z-index: -1;
}

.bs-canvas-overlay.show {
  opacity: 1.0;
  z-index: 1100;
}

.bs-canvas {
  top: 0;
  width: 0;
  z-index: 1110;
  overflow-x: hidden;
  overflow-y: auto;
}

.bs-canvas-left {
  left: 0;
}

.bs-canvas-right {
  right: 0;
}

.bs-canvas-anim {
  transition: all .4s ease-out;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
}

/* Off-menu
-------------------------------------------------------------- */
#offmenu {
  padding: 0;
  margin: 0;
}

#offmenu li {
  list-style: none;
  color: #000;
  margin: 0;
  padding: 0;
}

#offmenu li a {
  list-style: none;
  color: #000 !important;
}

/* Hero / CTA
-------------------------------------------------------------- */
.front-page-hero-img {
    max-width: 250px;
    height: auto;
}

.front-page-hero-section {
    background: url('/wp-content/uploads/2025/11/cuppa-seo-madison-wi-search-engine-optimization-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 87px 0px;
    height: 600px;
    min-height: 600px;
}

.hero-right-col {
  text-align: center;
  width: 100%;
  color: white;
  padding: 0 20px;
}

.hero-right-col h1 {
	font-size: 2.3em;
	text-shadow: 2px 2px 3px black;
}

.hero-right-col h4 {
	font-size: 1.4em;
	text-shadow: 2px 2px 3px black;
}


.hero-right-col .hero-sub {
	font-size: 1.3  em;
	text-shadow: 1.5px 1.5px 2px black;
}

#hero-button {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#hero-button:hover {
  background-color: white;
  color: #001c54;
}

/* Mobile Toggle / Menu
-------------------------------------------------------------- */
#toggle {
  display: block;
  width: 28px;
  height: 30px;
  margin: 44px auto 10px;
  float: left;
  top: 9px;
}

#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}

#toggle span:after {
  top: 9px;
}

#toggle span {
  position: relative;
  display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 5px;
  background-color: #000;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

body.home #toggle span,
body.home #toggle span:after,
body.home #toggle span:before {
  background-color: #000;
}

/* On activation */
#toggle.on span {
  background-color: transparent;
}

#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}

#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}

#toggle.on + #menu {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: auto;
}

/* Menu
-------------------------------------------------------------- */
#menu {
  visibility: visible;
  height: auto;
  width: auto;
  z-index: 10000;
}

#menu li {
    display: block;
    transition-duration: 0.5s;
	position: relative;
}

#menu .sub-menu {
    margin-top: 0;
    padding-left: 0;
    width: 300px;
    z-index: 999;
}

#menu li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
}

#menu li:hover > ul,
#menu li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

#menu li ul li {
  clear: both;
  width: 100%;
}

#menu li a.nav-link,
#menu li a.nav-link:link,
#menu li a.nav-link:focus,
#menu li a.nav-link:visited {
  color: #000;
}

body.home #menu li a.nav-link,
body.home #menu li a.nav-link:link,
body.home #menu li a.nav-link:focus,
body.home #menu li a.nav-link:visited {
  color: #000;
}

#menu li a.nav-link:hover {
    cursor: pointer;
    color: #000;
}

body.home #menu,
body.page-template-front-page_staging #menu {
  visibility: visible;
}

body.home #menu li a.nav-link,
body.home #menu li a.nav-link:link,
body.home #menu li a.nav-link:focus,
body.home #menu li a.nav-link:visited {
  color: #000;
  background: #ffffffff !important;
}

body.home #menu li a.nav-link:hover,
body.page-template-front-page_staging #menu li a.nav-link:hover {
  color: #000;
  cursor: pointer;
}

.navbar {
  background-color: #ffffff !important;
  box-shadow: none !important;
	z-index: 2;
}

/* Footer
-------------------------------------------------------------- */
.site-footer{
	padding: 0px !important;
	background-color: #c21d2e;
}

#footer-call-button {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#footer-call-button:hover {
  background-color: #ffffff;
  color: #001c54;
}

/* Accordion
-------------------------------------------------------------- */
.accordian-title,
.accordian-title:hover,
.accordian-title:active,
.accordian-title:focus,
.accordian-title:link {
  font-size: 1.35rem;
  color: white;
  text-decoration: none;
}

.accordian-header {
  background: #292057;
}

[data-toggle="collapse"] .fa:before {
  content: url('data:image/svg+xml,<svg class="bi bi-dash-circle" width="1.25em" height="1.25em" viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M8 15A7 7 0 108 1a7 7 0 000 14zm0 1A8 8 0 108 0a8 8 0 000 16z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M3.5 8a.5.5 0 01.5-.5h8a.5.5 0 010 1H4a.5.5 0 01-.5-.5z" clip-rule="evenodd"/></svg>');
  position: relative;
  top: 1px;
}

[data-toggle="collapse"].collapsed .fa:before {
  content: url('data:image/svg+xml,<svg class="bi bi-plus-circle" width="1.25em" height="1.25em" viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M8 3.5a.5.5 0 01.5.5v4a.5.5 0 01-.5.5H4a.5.5 0 010-1h3.5V4a.5.5 0 01.5-.5z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M7.5 8a.5.5 0 01.5-.5h4a.5.5 0 010 1H8.5V12a.5.5 0 01-1 0V8z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M8 15A7 7 0 108 1a7 7 0 000 14zm0 1A8 8 0 108 0a8 8 0 000 16z" clip-rule="evenodd"/></svg>');
  position: relative;
  top: 1px;
}

/* Misc components
-------------------------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

.btn-cta,
.btn-cta:hover,
.btn-cta:active,
.btn-cta:link,
.btn-cta:focus {
  color: #fff;
  background-color: #292057;
  border-color: #292057;
}

.img-top-hero {
  width: 100%;
  height: auto;
}

.pum-container {
  width: 100% !important;
}

.card-footer-white {
  background: white !important;
  border-top: 0px !important;
}

/* Video wrapper
-------------------------------------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog / Entries
-------------------------------------------------------------- */
.entry-title a {
  text-decoration: none;
}

.postmetadata {
  font-size: 12px;
  font-weight: 700;
  margin-top: 20px;
}

.postmetadata a {
  text-decoration: none;
  font-weight: normal;
}

.entry-content img,
.entry-content iframe,
.entry-content object,
.entry-content embed {
  max-width: 100%;
  height: auto;
}

.entry-content a {
  text-decoration: none;
}

.read-more {
  margin-top: 1rem;
  display: inline-block;
}

.entry-meta {
  margin-bottom: 1em;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-sidebar-widget {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 0 20px;
  padding: 20px;
}

.blog-sidebar-widget ul {
  padding-left: 1.1rem;
}

.blog-sidebar-widget a {
  text-decoration: none;
}

/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Screen Reader Text
-------------------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Media Queries
-------------------------------------------------------------- */

/* ≥ 576px (currently empty but kept for future use) */
@media (min-width: 500px) {

    .front-page-hero-img {
        max-width: 250px;
        height: auto;
    }

    .hero-right-col h1 {
        font-size: 3em;
        text-shadow: 2px 2px 3px black;
    }

    .hero-right-col h4 {
        font-size: 2em;
        text-shadow: 2px 2px 3px black;
    }


    .hero-right-col .hero-sub {
        font-size: 1.5em;
        text-shadow: 1.5px 1.5px 2px black;
    }
}

/* ≥ 768px  */
@media (min-width: 768px) {

    .front-page-hero-section {
      background: url('/wp-content/uploads/2025/11/cuppa-seo-madison-wi-search-engine-optimization-1.jpg');
    }

    .front-page-hero-img {
        max-width: 325px;
        height: auto;
    }

    .hero-right-col h1 {
        font-size: 2.25rem;
    }

    .hero-right-col h4 {
        font-size: 1.25rem;
    }

    .hero-right-col .hero-sub {
        font-size: 1.0  rem;
    }


}


/* ≥ 992px */
@media (min-width: 992px) {

    a.nav-link {
        font-size: 1.0rem;
    }

    .front-page-hero-section {
        height: 80vh!important;
        min-height: 0px;
    }

    .front-page-hero-img {
        max-width: 400px;
        height: auto;
    }

    .hero-right-col h1 {
        font-size: 3.0rem;
    }

    .hero-right-col h4 {
        font-size: 1.75rem;
    }

    .hero-right-col .hero-sub {
        font-size: 1.5  rem;
    }

  .desktop-nav {
    display: block;
  }

  .mobile-nav {
    display: none;
  }

  #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    width: auto;
  }

  .midscreentitle {
    margin-top: 31vh;
  }

  .content-block {
    padding-left: 5em;
  }

  .pum-container {
    width: 50% !important;
  }
}

/* ≤ 1200px */
@media (min-width: 1200px) {

    a.nav-link {
        font-size: 1.2rem;
    }

    .front-page-hero-img {
        max-width: 100%;
        height: auto;
    }

    .hero-right-col h1 {
        font-size: 3.5rem;
    }

    .hero-right-col h4 {
        font-size: 2.0rem;
    }

    .hero-right-col .hero-sub {
        font-size: 1.75  rem;
    }

}
