/** Theme and Bootstrap Overrides **/
:root {
    --theme-font-family: 'Poppins', Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --theme-color-bg: #dcdcdc;
    --theme-color-grey: #474747;
    --theme-color-darkgrey: #2d2d2d;
    --theme-color-lightgrey: #f3f3f3;
    --theme-color-white: #ffffff;
    --theme-color-black: #000000;
    --theme-color-red: #e13128;
    --theme-color-red-rgb: rgb(225, 49, 40);
    --theme-color-red-dark: #b52a20;
    --theme-color-navy: #26263b;
    --theme-color-blue: #303061;
    --theme-color-teal: #729897;
    --theme-color-orange: #cb605b;
    --theme-color-success-light: rgba(var(--bs-success-rgb), 0.5);
}
body {
    font-family: var(--theme-font-family);
    background-color: var(--theme-color-white);
    color: var(--theme-color-black);
    padding: 0px;
    -webkit-user-drag: none;
}
@media (min-width: 768px) {
    body {
        background-color: var(--theme-color-red);
    }
}
@media (max-width: 992px) {

    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        z-index: 1000;
    }

    /* Adjust spacing for mobile links */
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Remove border from last item */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--theme-font-family);
}
.nav-link:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}
.btn-cta {
    background-color: var(--theme-color-red);
    color: var(--theme-color-white);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}
.btn-cta:hover {
    background-color: var(--theme-color-red-dark);
    color: var(--theme-color-white);
}
.btn-link.theme-red, .text-theme-red {
    color: var(--theme-color-red);
    text-decoration: none;
}
.btn-link.theme-red:hover {
    color: var(--theme-color-red-dark);
    text-decoration: none;
}
.text-footnote {
    font-size: 0.6rem;
    color: var(--theme-color-grey);
}

.hero-container {
    color: var(--theme-color-white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.hero-section {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.0)),
        var(--hero-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section .language-switcher a,
.hero-section .language-switcher a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.4;
}
.hero-section .language-switcher a.active,
.hero-section .language-switcher a.active:hover {
    color: var(--theme-color-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    opacity: 1;
    pointer-events: none;
    cursor: default;
}
.hero-section .language-switcher a:hover {
    opacity: 1;
}

.sections-container {
    background-color: var(--theme-color-bg);
    margin: 0;
    padding: 0;
}
.sections-container section {
    margin: 0 auto;
    padding: 2rem;
}

.memberships img {
    max-height: 65px;
    max-width: 100%;
    margin: auto;
    display: block;
    transition: filter 0.45s cubic-bezier(0.3, 0.4, 0.1, 1), opacity 0.45s cubic-bezier(0.3, 0.4, 0.1, 1);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.55;
}
.memberships img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.footer-container {
    color: var(--theme-color-white);
}
.footer-container .footer-section .contacts {
    background-color: var(--theme-color-grey);
    padding: 2rem 0;
}
.footer-container .footer-section .footer {
    background-color: var(--theme-color-darkgrey);
    padding: 2rem 0;
}
.footer-container .footer-section .footer a {
    color: inherit !important;
    text-decoration: none;
}
.footer-container .footer-section .footer a:hover {
    text-decoration: underline;
}

#calendly-widget iframe {
    padding-bottom: 1px;
    height: 100%;
    width: 100%;
}
