/* ========================================
   CSS VARIABLES - CENTRALIZED CONTROL
======================================== */
@font-face {
  font-family: "MilligramText-Regular";
  src: url("/assets/fonts/MilligramText-Regular.ttf") format("truetype");
  /* ,url('/assets/fonts/Milligram-Regular-trial.woff2') format('woff2'); */
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "CooperBTMedium";
  src:
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff2") format("woff2"),
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CooperBTLight";
  src:
    url("/assets/fonts/webFonts/CooperBTLight/font.woff2") format("woff2"),
    url("/assets/fonts/webFonts/CooperBTLight/font.woff") format("woff");
  font-display: swap;
}
:root {
  /* Font Families */
  --font-primary: "MilligramText-Regular", sans-serif;
  --font-medium: "MilligramText-Medium", sans-serif;
  --font-heading: "CooperBTLight", sans-serif;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;

  /* Font Sizes - Desktop (1366px+) */
  --body-size: 18px;
  --h1-size: 60px;
  --h2-size: 41px;
  --h3-size: 28.5px;
  --h4-size: 24px;
  --h5-size: 22px;
  --h6-size: 20px;
  --link-size: 18px;

  /* Container Widths */
  --header-container-width:1320px;
  --header-container-max:1320px;
  --container-width: 1240px;
  --container-max: 1320px;
  --footer-social:20px;
}

/* ========================================
   RESPONSIVE VARIABLES
======================================== */

/* Below 1400px */
@media screen and (max-width: 1366px) {
  :root {
    --body-size: 16px;
    --h1-size: 47px;
    --h2-size: 36px;
    --h3-size: 28.5px;
    --h4-size: 22px;
    --h5-size: 18px;
    --h6-size: 18px;
    --link-size: 16px;
    --header-container-width:1140px;
    --container-width: 1140px;
    --container-max: 1140px;
  }
  .bmh-main-nav{
    gap: 15px;
  }
}

/* Below 1260px */
@media screen and (max-width: 1260px) {
  :root {
    --body-size: 14px;
    --h1-size: 45px;
    --h2-size: 30px;
    --h3-size: 26.5px;
    --h4-size: 20px;
    --h5-size: 18px;
    --h6-size: 16px;
    --link-size: 14px;
     --header-container-width:1100px;
     --header-container-max:1100px;
    --container-width: 850px;
    --container-max: 1000px;
     --footer-social:18px;
  }
 
}

/* Below 991px */

@media screen and (max-width: 1102px) {
    :root {
        --header-container-width:939px;
     --header-container-max:939px;
    }
    .bmh-nav-arrow{
      width: 16px;
    }
    .bmh-main-nav{
      gap: 5px;
    }
}
@media screen and (max-width: 1017px) {
    :root {
  
        --header-container-width:942px;
     --header-container-max:942px;
    
    }
}

@media screen and (max-width: 991px) {
  :root {
    --body-size: 14px;
    --h1-size: 35px;
    --h2-size: 28px;
    --h3-size: 22.5px;
    --h4-size: 20px;
    --h5-size: 18px;
    --h6-size: 16px;
    --link-size: 14px;
     --header-container-width:90%; 
    --container-width: 92%;
    --container-max: 720px;
  }

}

/* Below 768px */
@media screen and (max-width: 768px) {
  :root {
    --container-width: 95%;
    --container-max: 540px;
  }
}

/* Below 576px */
@media screen and (max-width: 576px) {
  :root {
    --container-width: 100%;
    --container-max: 100%;
  }
}

/* ========================================
   FONT FACE DECLARATIONS
======================================== */

@font-face {
  font-family: "MilligramText-Regular";
  src: url("/assets/fonts/MilligramText-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "MilligramText-Medium";
  src: url("/assets/fonts/MilligramText-Medium.ttf") format("truetype");
  font-display: swap;
}

/* ========================================
   BASE TYPOGRAPHY (No !important)
======================================== */

body {
  margin: 0;
  padding-top: 0;
  font-family: var(--font-primary);
  font-size: var(--body-size);
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

/* Paragraphs & Links */
p {
  font-size: var(--body-size);
  font-family: var(--font-primary);
  margin: 0 0 1rem;
}

a {
  font-size: var(--link-size) ;
  font-family: var(--font-primary);
  text-decoration: none;
  color: inherit;
}

/* ========================================
   CONTAINER
======================================== */

.container {
   width: var(--header-container-width) !important;
  max-width: var(--header-container-max) !important;
  margin-left: auto;
  margin-right: auto;
}

#headerContainer header.bmh-site-header .bmh-main-header .container{
  width: var(--header-container-width) !important;
  max-width: var(--header-container-max) !important;
}

/* Mobile padding only */
@media screen and (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ========================================
   UTILITY CLASSES (Optional)
======================================== */

/* Font families */
.font-primary {
  font-family: var(--font-primary);
}

.font-medium {
  font-family: var(--font-medium);
}

.font-heading {
  font-family: var(--font-heading);
}

/* Responsive visibility helpers */
.hide-mobile {
  display: block;
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.show-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .show-mobile {
    display: block;
  }
}

.bmh-nav-link {
  padding: 0;
}
form sup {
    top: -0.5em !important;
}
.validation {
    color: red;
}#error-container p {
    font-size: 16px;
    color: red;
    text-align: center;
    border: 1px solid red;
    padding: 0.5rem;
}
#captcha-error-message {
    color: red;
    font-size: 14px;
}
form i.fa-star {
    color: red;
    font-size: 7px;
}
form {
    background: #fff;
    padding: 1rem;
    border: 1px solid #e9e4e4;
    border-radius: 5px;
}