@charset "UTF-8";

/*
Theme Name: 110Cities2025
Theme URI: https://riotactstudios.com/
Author: Matt Harris
Author URI: https://riotactstudios.com/
Description: Custom theme built for 110 Cities.
Requires at least: 6.2
Tested up to: 6.2
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --body-textcolor: #111111;
  --body-headingcolor: #111111;
  --body-green: #019042;
  --body-orange: #f7a746;
  --body-yellow: #fcc53c;
  --body-darkblue: #06195e;
  --body-lightblue: #c9eaff;
  --body-red: #940d0f;
  --body-bordercolor: #eee;
  --body-lightgray: #f7f7f7;
  --bodyfont: Open Sans, sans-serif;
  --headingfont: Raleway, sans-serif;
  --specialfont: Permanent Marker, cursive;
}

body {
  background-color: #fff;
  color: var(--body-textcolor);
  font-family: var(--bodyfont);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--body-green);
  text-decoration: none;
}

p { 
  margin-bottom: 20px;
}

ul {
  list-style-position: outside;
  padding-left: 20px;
}

li {
  margin-bottom: 20px;
}

/*-------------------------------*/
/*- Utilities -------------------*/
/*-------------------------------*/

.rounded, .rounded img {
  border-radius: 8px;
  overflow: hidden;
}

.shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.centered {
  text-align: center;
}

.wp-block-group-is-layout-flex {
  padding: 0;
}

.breadcrumbs {
  width: 100%;
  max-width: 1350px;
  margin: 20px auto;
  padding: 0;
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumbs li {
  display: block;
  margin-right: 10px;
}

/*-------------------------------*/
/*- Headings --------------------*/
/*-------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headingfont);
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1;
}

h1 { font-size: 50px; }

h2 { font-size: 40px; }

h3 { font-size: 28px; }

h4 { font-size: 22px; }

h5 { font-size: 18px; font-weight: 500; }

h6 { font-size: 16px; font-weight: 500; }

/*-------------------------------*/
/*- Buttons ---------------------*/
/*-------------------------------*/

.wp-element-button, .wp-block-button__link {
  line-height: 1;
  text-transform: uppercase;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

/*-------------------------------*/
/*- Breadcrumbs -----------------*/
/*-------------------------------*/

.breadcrumb {
  text-transform: capitalize;
}

/*-------------------------------*/
/*- Top -------------------------*/
/*-------------------------------*/

#socials {
  display: none;
}

/*-------------------------------*/
/*- Header ----------------------*/
/*-------------------------------*/

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 10px 0;
}

#header .row {
  justify-content: space-between;
  align-items: center;
}

#logo img {
  height: 50px;
  width: auto;
  display: block;
}

#header-menu {
  display: none;
  flex-shrink: 0;
}

#mobile-menu a {
  color: #fff;
  font-size: 20px;
}

/*-------------------------------*/
/*- Header Menu -----------------*/
/*-------------------------------*/

.header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.header-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}

.header-menu li:before {
  content: none;
}

.header-menu > li > a {
  position: relative;
  display: block;
  padding: 30px 0;
  margin: 0 20px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--headingfont);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-menu > li:first-child > a {
  margin-left: 0;
}

.header-menu > li:last-child > a {
  margin-right: 0;
}

.header-menu > li:hover a {
  color: var(--luminous-vivid-orange);
}

.header-menu > li.menu-item-has-children > a:after {
  content: '\f078';
  font: var(--fa-font-sharp-solid);
  margin-left: 5px;
}

.header-menu > li > .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  min-width: 220px;
  background-color: #fff;
  border: 1px solid var(--body-bordercolor);
  text-align: left;
  margin: 0;
  padding: 0;
}

.header-menu > li > .sub-menu:after {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: -8px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: solid 1px var(--body-bordercolor);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform-origin: center center;
  transform: rotate(45deg);
}

.header-menu > li > .sub-menu > li {
  display: block;
  margin:  0;
  padding: 0 13px;
  border-bottom: 1px solid var(--body-bordercolor);
}

.header-menu > li > .sub-menu > li:last-child {
  border-bottom: 0;
}

.header-menu > li > .sub-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--body-textcolor);
  padding: 10px;
  margin: 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-menu > li > .sub-menu > li a:hover,
.header-menu > li.current-menu-item > a,
.header-menu > li > .sub-menu > li.current-menu-item > a {
  color: var(--luminous-vivid-orange);
}

.header-menu > li:hover .sub-menu {
  display: block;
}

/*-------------------------------*/
/*- Slide Out Menu --------------*/
/*-------------------------------*/

.panel {
  position: fixed;
  right: -100%; /*left or right and the width of your navigation panel*/
  width: 100%; /*should match the above value*/
  background: #111;
  z-index: 999;
}

.wrap {
  position: relative;
}

#menu-body {
  height: 100%;
  overflow-y: scroll;
  position: relative;
}

.mobile-menu-header {
  position: relative;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 10px;
}

.mobile-menu-header img {
  display: inline-block;
  width: 30%;
  max-width: 120px;
  height: auto;
}

.menu-link.close-panel {
}

.mobile-menu-icon {
  padding: 20px 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: calc(((100% / 12) * 6) - 20px) !important;
  border: 1px solid rgba(255,255,255,.05);
}

.mobile-menu-icon i {
  font-size: 32px;
  color: rgba(255,255,255,0.7);
}

.mobile-menu-icon span {
  display: block;
}

.mobile-menu-icon a {
  color: #fff;
}

.menu-mobile {
  padding: 0 0 30px 0;
}

.menu-mobile li {
  list-style: none;
  margin: 0;
  border-top: 1px solid rgba(255,255,255, 0.05);
}

.menu-mobile li:before {
  content: none;
}

.menu-mobile li:last-of-type {
  border-bottom: 1px solid rgba(255,255,255, 0.05);
}

.menu-mobile li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  transition: all .3s ease;
  color: var(--luminous-vivid-orange);
}

.menu-mobile li.menu-toggle > a:after {
  position: absolute;
  content: '\f107';
  font-family: 'Fontawesome';
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.menu-mobile li.menu-toggle > a.active:after {
  content: '\f106';
}

.menu-mobile li a.active {
  color: #fff;
  background: var(--luminous-vivid-orange);
}

.menu-mobile .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
}

.menu-mobile .sub-menu li a {
  padding: 10px 20px 10px 40px;
}

.menu-mobile .sub-menu li .sub-menu li a {
  padding: 10px 20px 10px 60px;
}

.menu-mobile .current-menu-item a {
  color: #fff;
}

.mobile-menu-call {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-menu-call .button {
  display: block;
  background-color: var(--luminous-vivid-orange);
  color: #fff;
  border-radius: 1.5px;
  padding: 8px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

/*-------------------------------*/
/*- Footer Block ----------------*/
/*-------------------------------*/

#footer {
  background-color: var(--body-textcolor);
  padding: 40px 0 110px 0;
  color: var(--footer-textcolor);
}

#footer .row {
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: calc(100% - 20px);
  margin: 0 0 20px 0;
}

#footer h5 {
  color: #fff;
  text-transform: uppercase;
}

.footer-column img {
  width: 40%;
  height: auto;
}

.socials {
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials li {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0 10px 0 0;
  font-size: 16px;
}

.socials li:before {
  content: none;
}

.socials li a {
  position: relative;
  display: block;
  border-radius: 1.5px;
  border: 1px solid var(--body-bordercolor);
  width: 42px;
  height: 42px;
  color: var(--body-bordercolor);
  transition: all 0.3s ease;
}

.socials li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.socials li a:hover {
  border-color: var(--body-accentcolor);
  color: #fff;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  list-style: none;
  margin: 0 0 10px 0;
}

.footer-menu li a {
  color: var(--footer-textcolor);
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: #fff;
}

.footer-menu li:before {
  position: static;
  content: '\f061';
  font: var(--fa-font-sharp-regular);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-menu li:hover:before {
  color: var(--body-accentcolor);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  border-bottom: .5px solid var(--footer-textcolor);
}

.footer-contact .icon {
  width: 40px;
  margin-right: 20px;
  font-size: 32px;
  text-align: center;
  color: var(--body-accentcolorlight);
}

.footer-contact .contact-item a {
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: var(--body-accentcolor);
}

.footer-contact .contact-item h6 {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--footer-textcolor);
  text-transform: uppercase;
}

#copyright {
  background-color: var(--body-textcolor);
  color: var(--footer-textcolor);
  font-size: 13px;
  text-align: center;
}

#copyright a {
  color: var(--footer-textcolor);
}

.copyright {
  padding: 20px 0;
}

#footer .socials li {
  margin-right: 10px;
}

#footer .social-icon:after {
  color: var(--evdark);
}

/*-------------------------------*/
/*- Map Block -------------------*/
/*-------------------------------*/

#large-map {
  height: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
}

/*-------------------------------*/
/*- Day/Date Block --------------*/
/*-------------------------------*/

.wp-block-acf-day p {
  font-size: 25px;
  text-transform: uppercase;
  text-align: right;
  margin: 0;
}

.wp-block-acf-date {
  margin-block-start: 10px;
}

.wp-block-acf-date p {
  font-family: var(--specialfont);
  font-size: 30px;
  text-align: right;
  margin: 0;
}

/*-------------------------------*/
/*- Post Navigation Block -------*/
/*-------------------------------*/

.wp-block-post-navigation-link {
  background-color: var(--body-lightgray);
  padding: 8px 20px;
  border-radius: 8px;
}

/*-------------------------------*/
/*- Guide Block -----------------*/
/*-------------------------------*/

.wp-block-acf-guide {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 20px;
}

.guide-image {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
}

.guide-image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.guide-image:hover img {
  scale: 1.1;
}

.guide-image:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
}

.guide-meta {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  width: calc(100% - 20px);
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 400;
}

.wp-block-acf-guide h4 {
  text-align: center;
  padding: 20px 0 0 0;
}

/*-------------------------------*/
/*- Country Block ---------------*/
/*-------------------------------*/

.wp-block-acf-country p {
  margin: 0;
  padding: 10px 20px;
  background-color: var(--body-orange);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

/*-------------------------------*/
/*- Mobile First Media Queries --*/
/*-------------------------------*/

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  #socials { display: block; }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  
}

/* Larger than Desktop HD */
@media (min-width: 1350px) {
  #header { padding: 0; }
  #header-menu { display: block; }
  #mobile-menu { display: none; }
}