/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
s stylesheet content.

If you need any further help, ask in the CSS Customization forum.
*/
a:link {
  color: #cd0000;
}

#header .site-title {
  font-family: "Pacifico", cursive !important;
}

/* unvisited link */
a:visited {
  color: #cd0000;
}

/* visited link */
a:hover {
  color: #3c2a6f;
}

body {
  font-size: 0.9em;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Heading font for Drunky!!! */
h1, h2, h3, h4, h5, h6 {
  font-family: "Racing Sans One", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 24px 0px;
}

/* remove profile-pick effect on logo */
#header .feature-img {
  background: none;
  bottom: -100px;
  border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
}

#header .feature-img img {
  border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
}

.container.logo-active {
  padding-top: 90px;
}

.menu a:hover {
  color: #dbdbdb;
}

/* Nav bar rework */
/* fix: Allow highlighting of child pages when they're in the same category as the active page */
#navigation .menu .current-menu-ancestor ul li a:hover {
  color: #fff;
}

#menu-main-navigation {
  padding: 0 10px;
  border-radius: 15px;
}
#menu-main-navigation li a {
  /* Size link bigger, add transparent border */
  font-weight: bold;
  padding: 13px 10px;
  border: none;
  border-radius: 8px;
}
#menu-main-navigation li a:hover {
  color: #fff;
}
#menu-main-navigation > li.mainnav:not(.current-menu-item) > a:hover::before {
  /* Add white underline on top-level item hover */
  content: " ";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  top: 40px;
  background-color: #fff;
}
#menu-main-navigation .sub-menu {
  padding-bottom: 8px;
  border-radius: 0 0 15px 15px;
}
#menu-main-navigation .sub-menu li a {
  margin-bottom: 4px;
  padding: 8px 5px;
  line-height: 1.3rem;
}
#menu-main-navigation .sub-menu li a i {
  display: block;
  font-weight: normal;
  font-size: 1em;
}

#navigation .menu {
  /* Current item should be highlighted */
}
#navigation .menu .current-menu-item a, #navigation .menu .current-page-item a, #navigation .menu .current-menu-ancestor ul .current_page_item a {
  color: #b60808;
  background-color: #f4f4f4;
}
#navigation .menu .current-menu-item a:hover, #navigation .menu .current-page-item a:hover, #navigation .menu .current-menu-ancestor ul .current_page_item a:hover {
  color: #333;
}

#menu-main-navigation li a.sf-with-ul {
  padding-right: 20px;
}

.sf-arrows .sf-with-ul {
  cursor: default;
}
.sf-arrows .sf-with-ul::after {
  top: calc(50% - 3px);
  transform: scale(80%);
  right: 7px;
  left: unset;
  border-top-color: currentColor;
}

#header {
  padding-bottom: 1px;
}

/* Desktop */
/* remove white background from nav bar */
@media only screen and (min-width: 768px) {
  #navigation {
    background: inherit;
  }
  /* Blank space below the navigation */
  #header {
    padding-bottom: 12px;
  }
}
/* Mobile */
@media only screen and (max-width: 767px) {
  #navigation {
    padding-bottom: 4px;
  }
  #menu-main-navigation.mobile-menu ul, #menu-main-navigation.mobile-menu li {
    display: block;
    width: fit-content;
  }
  #menu-main-navigation.mobile-menu ul.current-menu-item a, #menu-main-navigation.mobile-menu li.current-menu-item a {
    border-color: rgb(205, 0, 0);
    color: rgb(205, 0, 0);
  }
  #menu-main-navigation.mobile-menu ul a, #menu-main-navigation.mobile-menu li a {
    padding: 2px;
    margin: 12px;
    background-color: transparent;
    color: #b60808;
    border: none;
    border-bottom: solid 2px transparent;
    border-radius: 0;
    width: fit-content;
    text-align: left;
  }
  #menu-main-navigation.mobile-menu ul a:hover, #menu-main-navigation.mobile-menu li a:hover {
    color: #b60808;
    border-color: #b60808;
  }
  #menu-main-navigation.mobile-menu ul a:not([href]), #menu-main-navigation.mobile-menu li a:not([href]) {
    color: inherit;
    background-color: transparent;
    border-color: transparent !important;
  }
  #menu-main-navigation.mobile-menu ul .sub-menu a, #menu-main-navigation.mobile-menu li .sub-menu a {
    margin-left: 32px;
    color: #b60808;
  }
  #menu-main-navigation.mobile-menu ul .sub-menu a::before, #menu-main-navigation.mobile-menu li .sub-menu a::before {
    content: none;
  }
}