html {
    scroll-behavior: smooth;
}
body {
    --bs-body-bg: rgb(25 25 25) !important;
    --bs-dark-rgb: 25,25,25;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
section { 
    min-height: 300px;
}
.glass {
    backdrop-filter: blur(2px);
}
.glass-1 {
    backdrop-filter: blur(5px);
}
.glass-2 {
    backdrop-filter: blur(10px);
}
.dark {
    background-color: rgba(0,0,0,0.5);
}
.hover-scale {
    transition: all 150ms ease-in-out
}
.hover-scale.scale-1:hover {
    transform: scale(1.02);
}
.hover-scale.scale-2:hover {
    transform: scale(1.05);
}
.hover-up {
    transition: all 150ms ease-in-out
}
.hover-up:hover {
    transform: translate(0px, -3px)
}
#splash {
    height: 100dvh;
}
#team .card {
    border: none;
    box-shadow: none;
}
#team .img-wrap {
    overflow: hidden;
}
#team .card:hover img {
    transition: all 150ms ease-in-out;
    transform: scale(1.05);
}
#training {
    background-image: url('../img/bg-kettlebell.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#training .nav-link {
    color: var(--bs-white);
}
#training .nav-link.active {
    color: var(--bs-body-bg);
    background-color: var(--bs-yellow)
}
#address-map {
    height: 100vh;
}
#contact-form {
    max-width: 750px;
    min-width: 250px;
    width: 100%;
}
#contact-form textarea {
    resize: none;
}
#contact-form button[name="submit"] > i {
    display: none;
}
#contact-form.form-processing button[name="submit"] > i {
    display: inline-block;
}
.site-background {
    z-index: -1;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.site-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-alert {
    border: none;
}
.site-alert.yellow {
    background-color: var(--bs-yellow);
    color: var(--bs-black);
}
.site-alert.indigo {
    background-color: var(--bs-indigo);
    color: var(--bs-body);
}
.fa-facebook-f:hover {
    color: #1877f2
}
.fa-instagram:hover {
    color: transparent;
    text-shadow: none;
    background-clip: text;
    background-image: linear-gradient(
        to right,
        #833ab4,#fd1d1d,#fcb045
    );
}
.fa-strava:hover {
    color: #fc4c02
}
.fa-youtube:hover {
    color: #ff0000
}
#back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #e0a800 0%, #d39e00 100%);
}
.pay-by-square-wrap {
    overflow: hidden;
    display: inline-block;
    width: 200px;
    aspect-ratio: 1;
}
.pay-by-square-wrap > img {
    width: 105%;
    margin-left: -5px;
    margin-top: -5px;
}
.map-image-wrap {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2/1;
}
.map-image-wrap > img {
    width: 100%;
}
.leaflet-popup-content {
    margin: 5px !important;
}
/* category-chooser */
.category-chooser .input-group-text > input:hover {
    cursor: pointer;
}
.category-chooser .input-group:not(:last-child) > * {
    border-bottom: 0
}
.category-chooser .input-group:first-child .input-group-text {
    border-bottom-left-radius: 0px;
}
.category-chooser .input-group:first-child input[type="text"] {
    border-bottom-right-radius: 0px;
}
.category-chooser .input-group:last-child .input-group-text {
    border-top-left-radius: 0px;
}
.category-chooser .input-group:last-child input[type="text"] {
    border-top-right-radius: 0px;
}
.category-chooser .input-group:not(:first-child):not(:last-child) .input-group-text {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.category-chooser .input-group:not(:first-child):not(:last-child) input[type="text"] {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
/* category-chooser */