:root {
    --default-font: 'Funnel Sans', "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Funnel Sans", Sans-Serif;
    --nav-font: "Funnel Sans", sans-serif;
}





/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #192c27;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #076951;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #e7f4f1;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #3c5951;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #5f687b;
    /* The default color of the main navmenu links */
    --nav-hover-color: #10bc69;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #5f687b;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #10bc69;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #10bc69;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #14eb83;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: #f9f8f8fd;
    font-family: var(--default-font);
}



#container-main {
    /*max-width: 1200px;*/
    /* Adjust the max-width as needed */
    margin: 0 auto;
    padding: 0;
    /* Add padding for smaller screens */
    box-sizing: border-box;

}

.btn-group-xs>.btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-group-xs>.btn,
.btn-xxs {
    padding: 1px 2px;
    font-size: 10px;
    line-height: 1.3;
    border-radius: 3px;
}

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

/* Carousel specific styles */
#blueimp-carousel {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    min-height: 400px;

    overflow: hidden;
    position: relative;
}

a {
    color: var(--accent-color);
    -webkit-text-decoration: var(--has-link-decoration, var(--theme-text-decoration, none));
    text-decoration: var(--has-link-decoration, var(--theme-text-decoration, none));
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

a:visited {
    color: var(--accent-color);
    -webkit-text-decoration: var(--has-link-decoration, var(--theme-text-decoration, none));
    text-decoration: var(--has-link-decoration, var(--theme-text-decoration, none));
    transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 3rem;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hidden {
    opacity: 0.1 !important;
    /*width: 1px !important;*/
    transition: opacity 0.6s ease-in-out;
    /* Add visibility to transition */
}

.card {
    /*border: 1px solid #ccc;*/
    /*padding: 10px;*/

    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
    /* Ensure it's visible by default */
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
}

.btn-primary {
    color: var(--background-color) !important;
    background-color: var(--accent-color);
    border-color: var(--accent-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--background-color) !important;
    background-color: var(--nav-hover-color);
    border-color: var(--nav-hover-color) !important;
}


/* Unchecked state */
.btn-check:not(:checked)+.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);

}

/* Checked state */
.btn-check:checked+.btn-primary {
    background-color: var(--nav-dropdown-hover-color);
    border-color: var(--nav-dropdown-hover-color);
}


.subheader {
    background-color: var(--surface-color);
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    color: var(--heading-color);
    background-color: var(--background-color);

    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.hero {
    color: var(--accent-color);
    background-color: var(--surface-color);
}

.hero button {
    color: var(--background-color);

}

.hero div.badge {
    color: var(--accent-color);
    font-weight: 100;
    font-size: large;
}

.bg-image-hero {
    background-image: url("../site_images/slim-woman-hurting-knee-during-online-training_q35.webp");
    background-size: cover;
    background-position: center;

}

.hero_alter {

    background-size: cover;
    background-position: center;
    background-color: var(--background-color);
}

.bg-image-hero_alter {
    background-image: url("../site_images/caucasian-female-patient-has-workout-with-her-therapist_q45.webp");
    background-size: cover;
    border-radius: 6%;
    background-position: center;

}

.bg-image-hero_online {
    background-image: url("../site_images/fit-young-woman-excersising-at-home-watching-video-tutorial-on-smartphone_q45.webp");
    background-size: cover;
    border-radius: 3%;
    background-position: center;

}

.bg-image-hero_alter_online {
    background-image: url("../site_images/strong-female-staying-in-plank-and-watching-online-training_q45.webp");
    background-size: cover;
    border-radius: 3%;
    background-position: center;

}

.bg-image-hero_alter_about {
    background-image: url("../site_images/happy-arab-guy-attending-online-training-from-home_q45.webp");
    background-size: cover;
    border-radius: 3%;
    background-position: center;

}


/*--------------- FILE POND -----------------*/
/**
 * FilePond Custom Styles
 */


a:link {
    text-decoration: none;
    color: black;
}

a:visited {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: black;
}

a:active {
    text-decoration: none;
    color: black;
}