:root {
    --yo-primary-color: #d0431b;
    --yo-primary-color-lightened: #ea7f61;
    --yo-primary-color-darkened: #9e3315;

    --yo-text-color: #3f3f3f;
    --bs-body-color: var(--yo-text-color);
    --bs-heading-color: var(--yo-text-color);
    --bs-body-font-family: 'AverageSans', sans-serif;

    --yo-sidebar-background: #94a6b0;
    --yo-sidebar-color: #ffffff;
    --yo-sidebar-hover-color: var(--yo-primary-color-lightened);

    --yo-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Icons */
.home-icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
}

/* Mobile navigation & Sidebar */
#mobileNav {
    background-color: var(--yo-sidebar-background);
    color: var(--yo-sidebar-color);
}

.navbar-toggler {
    border: var(--yo-sidebar-color) solid 2px !important;
}

.navbar-toggler-icon {
    background-image: var(--yo-navbar-toggler-icon-bg);
}

#sidebar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    width: 360px;
    color: var(--yo-sidebar-color);
}

.sidebar-container {
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
    margin-left: 20px;
}

.sidebar-container::after {
    position: absolute;
    display: block;
    content: '';
    background-color: var(--yo-sidebar-background);
    border-radius: 500px;
    width: 910px;
    height: 910px;
    top: -120px;
    left: -564px;
    z-index: -100;
}

.nav-item {
    position: relative;
}

.custom-nav-link {
    color: var(--yo-sidebar-color) !important;
    padding-left: 40px !important;
    font-family: 'TenorSans', sans-serif;
    font-size: 1.3em;
    line-height: 1;
}

.sidebar-container .custom-nav-link {
    padding-bottom: 28px;
    font-size: 1.6em;
}

.custom-nav-link.active {
    color: var(--yo-primary-color) !important;
}

.custom-nav-link:hover,
.custom-nav-link:hover::before {
    color: var(--yo-primary-color-lightened) !important;
}

.custom-nav-link::before {
    position: absolute;
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: var(--yo-primary-color);
    top: 10px;
    left: 6px;
}

.custom-nav-link.active::before {
    background-color: var(--yo-primary-color);
}

.custom-nav-link.active::after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--yo-sidebar-background);
    top: 15px;
    left: 11px;
}

@media screen and (max-width: 991px) {
    #mainContent {
        margin-top: 80px;
    }
}

@media screen and (min-width: 992px) {
    #mainContent {
        margin-left: 360px;
    }
}

/* Main Logo */
.floating-logo {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-top: 10px;
}

.main-logo {
    display: block;
    width: 100%;
    max-width: 682px;
}

/* Main styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'TenorSans', sans-serif;
    font-weight: bold;
}

img {
    display: block;
    max-width: 100%;
}

.table tr:last-child th, .table tr:last-child td {
    border-bottom-width: 0;
}

blockquote {
    border-left: 6px solid var(--bs-secondary);
    padding-left: 12px;
}

blockquote p {
    margin-bottom: 6px;
}

blockquote cite {
    font-style: italic;
    padding-left: 10px;
}

.alert-yoga {
    --bs-alert-color: #ffffff;
    --bs-heading-color: #ffffff;
    --bs-alert-bg: var(--yo-sidebar-background);
    --bs-alert-border-color: var(--yo-text-color);
}

/* Appointments */
fieldset.appointment {
    padding: 12px;
    border: 2px solid var(--yo-text-color);
    border-radius: var(--bs-border-radius);
    margin-bottom: 1rem;
}

fieldset.appointment legend {
    float: none;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.3rem;
    margin-bottom: 0;
}

fieldset.appointment ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 1.3rem;
}

/* Gallery */
.img-gallery img {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    opacity: .88;
    backface-visibility: hidden;
    transition: all 0.4s ease-out;
}

.img-gallery .img-gallery-item {
    width: 100%;
    border-radius: 30px;
    overflow: clip;
}

.img-gallery img:hover {
    transform: scale(1.15, 1.15);
    opacity: 1;
}
