/* Adapted from original template: Tooplate 2119 Gymso Fitness */
/* https://www.tooplate.com/view/2119-gymso-fitness */
  


  @font-face {
    font-family: 'Days One';
    src: local('Days One'), local('DaysOne-Regular'),
      url('../fonts/DaysOne/DaysOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Russo One';
    src: local('Russo One'), local('RussoOne-Regular'),
    url('../fonts/RussoOne/RussoOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }
  
  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
  }
  
  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    --primary-ink:     #0c2745;
    --primary-surface: #ffffff;
    
    --primary-ink-inverted: var(--primary-surface);
    --primary-surface-inverted: var(--primary-ink);
    
    --primary-ink-semi-transparent: #0C2745FF;
    
    --white-color: var(--primary-ink);
    --dark-color: var(--primary-surface);
    --about-bg-color: var(--primary-surface);
    --link-color: var(--primary-surface);
    --p-color: var(--primary-surface);

    --base-font-family:     'Russo One';
    --font-weight-heavy:    400;
    --font-weight-bold:     400;
    --font-weight-normal:   400;
    --font-weight-light:    400;
    --font-weight-thin:     400;

    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100%;
    --border-radius-small:  10px;
  }

html {
  /*scroll-behavior: smooth;*/
  /*overflow-x: hidden;*/
  /*overflow-y: auto;*/
  /*font-size: 16px;*/
  /*-webkit-font-smoothing: antialiased;*/
  /*-moz-osx-font-smoothing: grayscale;*/
  /*text-rendering: optimizeLegibility;*/
  /*-webkit-tap-highlight-color: transparent;*/
  /*-webkit-text-size-adjust: 100%;*/
  /*-ms-text-size-adjust: 100%;*/
  /*-ms-overflow-style: scrollbar;*/
  /*-webkit-overflow-scrolling: touch;*/
  /*-webkit-font-feature-settings: "kern" 1;*/
  /*-moz-font-feature-settings: "kern" 1;*/
  /*-o-font-feature-settings: "kern" 1;*/
  /*font-feature-settings: "kern" 1;*/
  /*font-kerning: normal;*/
}

  body {
    color: var(--primary-ink-inverted);
    font-size: var(--base-font-size);
    font-family: var(--base-font-family), sans-serif;
    
    margin: 0;
    padding: 0;
    height: 100%; /* Ensures the body takes the full page height */
    background-image: url('../images/backgrounds/falco-negenman-RK-zj4dqz-s-unsplash.jpg'); /* Path to your background image */
    background-size: cover; /* Ensures the image covers the entire page */
    background-position: center; /* Positions the image at the center */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-color: rgba(0, 40, 127, 0.5); /* Semi-transparent dark background */
    background-blend-mode: overlay; /* Blends the background image with the overlay */
    position: relative;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)); /* Radial gradient overlay */
    z-index: -1; /* Ensures this stays behind all other content */
  }


  
  .copyright-text, .copyright-text * {
    font-family: 'Days One', sans-serif;
    font-size: 10px !important;
    color: #fff5
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    color: var(--primary-ink-semi-transparent);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
  }

  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {
    padding: 7rem 0;
  }


  /* BUTTON */

  a.btn.custom-btn {
    padding: 0 0;
    margin: 1em;
    border-radius: 0;
  }

  a.btn.custom-btn:hover {
    box-shadow: 0 0 24px 60px var(--primary-ink-semi-transparent);
    /*box-shadow: 0 0 8px 48px #cc1c3366;*/
    border-radius: 0;
    transition: box-shadow 2s linear;
  }



.custom-btn {
    height: 36px;
    min-width: 160px;
    border-radius: 8px;
    overflow: hidden;
    
    color: #193452eb;
    background: var(--primary-surface);
    font-family: 'Days One', sans-serif;
    letter-spacing: 0;
    white-space: nowrap;

    i {
      font-size: 16px;
      padding-right: 0;
      padding-top: 8px;
      vertical-align: middle;
    }
    
    span {
      font-size: 13px;
      padding-top: 8px;
      vertical-align: middle;
    }
    
    img {
      margin-top: -2px;
    }
  }

  /*.custom-btn:focus {*/
  /*  box-shadow: none;*/
  /*}*/

  /*.custom-btn.bordered:hover,*/
  /*.custom-btn.bordered:focus,*/
  /*.custom-btn.bg-color:hover,*/
  /*.custom-btn.bg-color:focus {*/
  /*  background: var(--primary-surface);*/
  /*  border-color: transparent;*/
  /*  color: var(--primary-ink);*/
  /*}*/

  /*.bordered {*/
  /*  border: 1px solid var(--primary-ink);*/
  /*  color: var(--primary-surface);*/
  /*}*/

  .bg-color {
    background: var(--primary-surface-inverted);
    color: var(--primary-ink-inverted);
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    box-sizing: border-box;
  }

  *::before,
  *::after {
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    text-decoration: none;
    color: #cc1c33;
  }


  /* BG OVERLAY */

  .bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }


  /*---------------------------------------
     MODAL              
  -----------------------------------------*/

  .modal-content {
    padding: 2rem 3rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    border: 0;
    padding: 0;
  }

  .membership-form a {
    color: var(--primary-ink);
  }


  /*---------------------------------------
    FEATURE          
  -----------------------------------------*/

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


  /*---------------------------------------
     MENU             
  -----------------------------------------*/

  .navbar {
    max-height: 4em;
    background: var(--dark-color);
    padding: 0.8rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .navbar-brand {
    color: var(--primary-ink);
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-heavy);
    line-height: normal;
    letter-spacing: 1px;
    padding-top: 0;
    
    margin-left: auto;
    margin-right: auto;

    @media screen and (max-width: 1000px) {
      font-size: 40px;
    }
    @media screen and (max-width: 960px) {
      font-size: 40px;
    }
    @media screen and (max-width: 920px) {
      font-size: 40px;
    }
    @media screen and (max-width: 880px) {
      font-size: 40px;
    }
    @media screen and (max-width: 840px) {
      font-size: 40px;
    }
    @media screen and (max-width: 800px) {
      font-size: 38px;
    }
    @media screen and (max-width: 768px) {
      font-size: 30px;
    }
    @media screen and (max-width: 720px) {
      font-size: 30px;
    }
    @media screen and (max-width: 680px) {
      font-size: 29px;
    }
    @media screen and (max-width: 640px) {
      font-size: 29px;
    }
    @media screen and (max-width: 600px) {
      font-size: 29px;
    }
    @media screen and (max-width: 560px) {
      font-size: 27px;
    }
    @media screen and (max-width: 520px) {
      font-size: 25px;
    }
    @media screen and (max-width: 480px) {
      font-size: 22px;
    }
    @media screen and (max-width: 440px) {
      font-size: 20px;
    }
    @media screen and (max-width: 400px) {
      font-size: 18px;
    }
    @media screen and (max-width: 360px) {
      font-size: 16px;
    }
    @media screen and (max-width: 340px) {
      font-size: 14px;
    }
  }

  .nav-item .nav-link {
    display: block;
    color: var(--primary-surface);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
  }

  .nav-item .nav-link.active,
  .nav-item .nav-link:hover {
    color: var(--primary-ink-semi-transparent);
  }

  .navbar .social-icon li a {
    color: var(--primary-ink-inverted);
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--primary-ink);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-ink);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    margin-top: 4em;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    > img {
      width: inherit;
      max-width: 1110px;
      margin-top: 2em;
      padding-left: 5%;
      padding-right: 5%;
    }
  }


  /*---------------------------------------
     CLASS               
  -----------------------------------------*/

  .class-info {
    background: var(--primary-surface);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 0 0 2px 2px;
    padding: 1rem 2rem;
    position: relative;
  }

  .class-info img {
    border-radius: 2px 2px 0 0;
  }

  .class-info strong {
    color: var(--primary-ink-semi-transparent);
  }

  .class-price {
    background: var(--primary-surface-inverted);
    border-radius: var(--border-radius-large);
    color: var(--primary-ink-inverted);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
  }


  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--primary-ink-inverted);
  }

  .schedule-table span {
    color: var(--primary-ink-semi-transparent);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-surface-inverted);
    border: 1px solid #212122;
    color: var(--primary-ink-inverted);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

  .about {
    background: var(--about-bg-color);
  }

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--primary-ink-inverted);
    opacity: 0.85;
  }

  .team-thumb {
    position: relative;
  }

  .team-info {
    background: var(--primary-surface);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button, button#submit-button1, button#submit-button2 {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button, button#submit-button1, button#submit-button2 {
    background: var(--primary-surface-inverted);
    border-color: transparent;
    color: var(--primary-ink-inverted);
    cursor: pointer;
    transition: all 0.3s ease;
  }

button#submit-button:hover, button#submit-button1:hover, button#submit-button2:hover {
    background: var(--primary-surface-inverted);
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .footer-divider {
    border-color: #fff4;
  }

  .site-footer {
    padding-top: 4em;
    padding-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--primary-ink);
  }

  .site-footer a {
    
    font-weight: var(--font-weight-light);
  }

  .site-footer p {
    font-size: var(--base-font-size);
  }

  .contact .fa,
  .site-footer .fa {
    color: var(--primary-ink);
  }

  .contact .fa-inverted,
  .site-footer .fa-inverted {
    color: var(--primary-ink-inverted);
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
  }

  .social-icon li a:hover {
    color: var(--primary-ink-semi-transparent);
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 992px) {

    .section {
      padding: 5rem 0;
    }

    .nav-item .nav-link {
      padding: 6px;
    }

    .navbar .social-icon {
      margin-top: 22px;
    }

    .navbar-collapse {
      text-align: center;
    }

    .schedule-table {
      display: block;
    }

    .modal-content {
      padding: 2rem;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 38px;
    }

    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }

    .contact h2 span {
      display: block;
    }
  }

.colorized {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.colorized img {
  display: block;
  filter: grayscale(100%) brightness(1.0);
}

.colorized::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c2745; /* Desired hue/shade */
  mix-blend-mode: color; /* Apply the hue to the image */
  pointer-events: none; /* Allow interactions with the image */
}

.centered {
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: center;
}