:root {
    --primary-color-light: #3498db;
    --primary-color-dark: #14649c;
    --secondary-color-light: #e9fafa;
    --secondary-color-dark: #5ebabb;
    --text-color-light: var(--primary-color-light);
    --text-color-dark: var(--primary-color-dark);
    --background-color-light: var(--secondary-color-light);
    --background-color-dark: var(--primary-color-light);
    --border-color-light: #ccc;
    --border-color-dark: #444;
    --button-color-light: #3498db;
    --button-color-dark: #14649c;
    --button-text-color-light: #fff;
    --button-text-color-dark: #fff;
    --white_color: #ffffff;
    --black_color: #000000;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font: 400 15px Lato, sans-serif;
    line-height: 1.8;
    color: #818181;
}
.main_footer {
    background-color: #222;
    color: white;
    text-align: center;
    width: 100%;
}

.icon {
    width: 40px;
    height: 40px;
}
.logo {
    width: 75px;
    height: 75px;
}
.brand {
    height: 25px;
}
.body {
    background-color: var(--background-color-light);
    color: var(--text-color-light);
    width: 100%;
}
.welcome {
    background-color: var(--primary-color-light); /* Orange */
    color: #ffffff;
    width: 100%;
}
.background-image {
    position: relative;
    width: 100%;
    height: 100vh;
}
.background-image::before {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/icons/MindfulnessRD_logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(30px); /* Blurry background */
    z-index: -1; /* Push behind content */
}
.background-light {
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
}
.background-dark {
    background-color: var(--background-color-dark);
    color: white;
}
.fixed-image {
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures images maintain aspect ratio */
    width: 100%; /* Ensures full width */

    mask-repeat: no-repeat;
}
.service_card {
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
}
.p_home {
    overflow: auto;
    font-size: 1.4em;
}
