html {
  /* between 18px (mobile) and 20px (large), with a fluid middle */
  font-size: clamp(19px, 2vw + 8px, 20px);
}
body {
   margin:0;
   font-family: Garamond, serif; 
   /*font-family:Arial; */
   /*font-size:100%; */
   /*font-size:2vw; */
   font-size: 1.0rem; 
   background-color: #000;
   color: #fff;
}
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.0rem, 2vw, 1.2rem); color: yellow;}
h5 { font-size: clamp(1.0rem, 2vw, 1.2rem); color: red ;}
h6 { font-size: clamp(1.0rem, 2vw, 1.2rem); color: blue;
  margin-top: 0.3em;          /* tighten gap above */
  margin-bottom: 0.2em;       /* tighten gap below */
}
h7 { font-size: clamp(1.0rem, 2vw, 1.2rem); color: black;}
h8 { font-size: clamp(1.0rem, 2vw, 1.2rem); color: blue;}
/* Make ordered lists match paragraph spacing */
ol {
  margin-top: 0.5em;          /* tighten gap above */
  margin-bottom: 0.5em;       /* tighten gap below */
  padding-left: 2em;          /* keeps the numbers clear of the text */
  line-height: 1.5;           /* match your paragraph line height */
}

/* Add a bit of space between list items themselves */
ol li {
  margin-bottom: 0.4em;       /* space between numbered entries */
}

/* optional: if you also want unordered lists to match */
ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
ul li {
  margin-bottom: 0.4em;
}

.footer-link { font-size: 1rem; }
.logo {
  /* previous #0a4, #3b4 */
  /*background-color: #f94;*/
  /*background-color: #ca0;*/
  background-color: #f91;
}

.navbar-top {
  background-color: black;
}
.topnav {
  overflow: auto;
  /*background-color: #333;*/
  /* previous #0a4, #3b4 */
  /*background-color: #f94;*/
  /*background-color: #ca0;*/
  background-color: #f91;
/*  position: sticky; */
  top: 0;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  /*font-size: 37px;*/
  font-size: 1.15rem;
  /*font-size: 2.5vw;*/
  /*font-size: inherit;*/
}

.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  font-size: inherit;
}

.dropdown .dropbtn {
  /*font-size: 37px;    */
  font-size: 1.15rem;    
  /*font-size: 2.5vw;*/
  /*font-size: inherit;*/
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #aa0000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  /* change drop down backgrnd */
  background-color: #aa0000;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #aa0000;
  color: white;
}

.dropdown-content a:hover {
  background-color: #dd0;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 1000px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* text-img container */
.text-image-container {
	display: flex;
	align-items: center;
}
.text-block {
	flex: 1;
}
.text-block p {
	line-height: 1.25;
}
.right-image {
	margin-left: 20px;
	max-width: 50%;
	height: auto;
}
.left-image {
	margin-right: 20px;
	max-width: 70%;
	height: auto;
}
	/* Add this media query for the text-image-container */
@media screen and (max-width: 768px) {
  .text-image-container {
    flex-direction: column;
  }
  
  .right-image {
    margin-left: 0;
    margin-top: 15px;
    max-width: 100%;
  }
  
  .left-image {
    margin-right: 0;
    margin-bottom: 15px;
    max-width: 100%;
  }
}

/* img container */
.img-container {
	max-width: 800px;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1400px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.8rem);
  /*font-size: 3vw;*/
  /*font-size: 15px;*/
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: clamp(0.9rem, 3vw + 0.2rem, 1.6rem);
  /*font-size: 4vw;*/
  /*font-size: 12px;*/
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #ff7171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

/* Heart bullets */
ul.heart-list {
  list-style: none;
  padding-left: 1.4em;
}

ul.heart-list li {
  position: relative;
  margin-bottom: 0.5em;
}

ul.heart-list li::before {
/*  content: "❤"; */
  content: "\2665";
  position: absolute;
  left: -1.2em;
  color: #c62828;        /* choose brand color */
  font-size: 1em;
  line-height: 1;
}

/* light text box with dark font */
.text-box {
  background-color: #ffffff;
  color: #111;
  padding: 0.7rem;
  margin: 0.55rem auto;
  max-width: 1500px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
/*
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.15);
*/
}
/* light text box with dark font with border*/
.text-box.bordered {
  border: 2px solid #ddd;
}
.text-box.narrow {
  max-width:600px; 
  background-color: #D7D4FF;
}

.text-box.narrow2 {
  width:100%;
}

.text-box.dark {
  background-color: #000000;
  color: #ffffff;
}

.text-box.warm {
  background-color: #fff4ec;   /* warm cream */
}

.text-box.accent {
  background-color: #fbeaea;   /* soft blush */
}

.text-box.sand {
  background-color: #c2b280;
}

.text-box.olive {
  background-color: #A8C29B;
}

.text-box.peach {
  background-color: #FFC678;
}

.text-box.lime {
  background-color: #C4EBBE;
}

.text-box.teal {
  background-color: #D0FFCC;
}

.text-box.plum {
  background-color: #D7D4FF;
}

.text-box.sky {
  background-color: #D9ECFC;
}

.text-box.lemon {
  background-color: #FFEC9C;
}

.text-box.lemon2 {
  background-color: #EDD728;
}

.text-box.lemon3 {
  background-color: #FFD117;
}

.text-box.gold {
  background-color: #C9A24D;
}

.text-box.silver {
  background-color: #BFC2C4;
}
.text-box.tan {
  background-color: #EBE5DA;
}

/* Override form element widths inside text-box containers */
.text-box input,
.text-box textarea,
.text-box select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


/* box-grid for stacking columns when screen is narrow */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  margin: 1.0rem auto;
  max-width: 950px;
}


/* table updates for horsetraining */

.program-compare {
/*  width: 90%; */
  max-width: 1200px;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
  border-color: white;
  color: orange;
/*  display: block; */
  overflow-x: auto;
  /*
  margin-left: auto;
  margin-right: auto;
  */
}

.program-compare th,
.program-compare td {
  border: 2px solid #ffffff33;
  border-color: white;
  padding: 0.5rem 0.3rem;
  text-align: center;
  vertical-align: center;
}

.program-compare thead th {
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 0.3rem;
  line-height: 1.2;  
}

.program-compare td:first-child,
.program-compare th:first-child {
  text-align: left;
  min-width: 130px;
}

.program-compare tbody tr:nth-child(even) {
  background-color: #ffffff08; /* light stripe on dark background */
}

.program-compare tbody tr:hover {
  background-color: #ffffff11;
}

.program-compare .price-row td {
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.program-compare .price-row small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* table wrap */
.table-wrap {
  display: flex;
  justify-content: center;
}


.btn-tier {
  display: inline-block;
  padding: 0.2rem 0.2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
  font-size: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 9px;
  margin-top: 0.2rem;
}

.btn-tier:hover {
  background-color: #ffffff;
  color: #000000;
}


@media (max-width: 768px) {
  .program-compare {
    font-size: 0.75rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .program-compare thead th {
    font-size: 0.7rem;
    padding: 0.5rem 0.25rem;
  }
  
  .program-compare th,
  .program-compare td {
    padding: 0.4rem 0.25rem;
    font-size: 0.75rem;
  }

  .program-compare td:first-child,
  .program-compare th:first-child {
    min-width: 120px;
  }
}

/* form updates for lessons/remote */

.bhh-button {
  display: inline-block;
  padding: 12px 24px;
  border: 4px solid #0077ff;
  color: #000000;
  background-color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 6px;
  margin: 1rem 0;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.bhh-button:hover {
  background-color: #ff0000;
  color: #000000;
  border-color: #ffffff;
}
.bhh-button.pay {
  background-color: #0000ff;
  color: #ffffff;
  border: 4px solid #0000ff;
}
.bhh-button.pay:hover {
  background-color: #ff0000;
  color: #000000;
  border-color: #ffffff;
}

/* line with heart */
.heart-divider {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  display: block; /* Make sure it's displaying */
}

.heart-divider:before,
.heart-divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 3px;
  background-color: #e6e6e6; /* light grey line */
  transform: translateY(-50%); /* This centers the line vertically */
}

.heart-divider:before {
  left: 0;
}

.heart-divider:after {
  right: 0;
}

.heart-divider .heart {
  color: #e6e6e6; /* matching light grey heart */
  font-size: 1.2rem;
  padding: 0 1rem;
  background-color: #000000; /* your black page color */
  position: relative;
  display: inline-block;
  z-index: 1; /* Ensures heart appears above lines */
}

@media (max-width: 768px) {
	.heart-divider:before, .heart-divider:after {
		width:40%; /* reduce from 45% to give more room */
	}
	.heart-divider .heart {
		font-size: 1rem; /* smaller heart */
		padding: 0 0.5rem; /* less padding */
	}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
/*
@media only screen and (max-width: 400px) {
  .text {font-size: 11px}
}
*/

.myDIV {
	margin-left: 3vw;
	margin-right: 3vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
}
.myDIV2 {
	margin-left: 2vw;
	margin-right: 2vw;
	margin-top: 2vw;
	margin-bottom: 4vw;
}

.nav-icon { font-size: 1.5rem; }

@media (max-width: 600px) {
  .nav-icon { font-size: 2rem; }   /* larger on phones */
}

/* make sure core text uses the rem scale from <html> */
p, li, small {
  font-size: 1rem;       
  line-height: 1.5;
/*  text-align: justify; */
/*  text-justify: inter-word; */
}
@media (max-width: 600px) {
  body, p, li { text-align: left; }
}
/* virtual lessons email */
.xsmall {
	font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .xsmall {
	  font-size: 3.4vw;
  }
}

