.wellness-hub-banner {
	position: relative;
	width: 100%;
	height: 680px;           /* lock banner height */
	overflow: hidden;
}

.wellness-hub-banner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;       /* crops to fill without distortion */
	display: block;
	z-index: 0;
}

/* Centered title block */
.wellness-hub-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 1;
	line-height: 1.2;
}

/* First line: light */
.wellness-hub-light {
	font-weight: 300;
	font-size: 8vw;          /* responsive size */
	letter-spacing: 0.06em;
}

/* Second line: bold */
.wellness-hub-bold {
	font-weight: 700;
	font-size: 9vw;          /* bigger than first line */
	letter-spacing: 0.05em;
}

/* Cap sizes on large desktops */
@media (min-width: 1200px) {
	.wellness-hub-light { font-size: 92px; }
	.wellness-hub-bold { font-size: 96px; }
}

.wellness-discover {
	margin: 60px auto;
	text-align: center;
}

.wellness-discover-text {
	font-size: 2rem;       /* base size */
	font-weight: 400;      /* light font */
	line-height: 1.4;
	color: #151515;           /* dark gray for readability */
	margin: 0 auto;
	max-width: 900px;      /* limit line length for better reading */
}

/* Larger on bigger screens */
@media (min-width: 992px) {
	.wellness-discover-text {
		font-size: 3.5rem;
	}
}

.wellness-location {
	margin: 60px auto 80px auto;
}

.wellness-location-btn {
	display: inline-block;
	background-color: #000;
	color: #fff;
	text-decoration: none;     /* no underline */
	padding: 12px 20px;
	font-size: 3.8rem;
	font-weight: 300;
	text-align: center;
	width: 100%;
	border-radius: 50px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.wellness-location-btn:hover,
.wellness-location-btn:focus {
	background-color: #222;
	color: #fff;
	text-decoration: none;     /* no underline on hover/focus */
}

/* On desktop: 60% width centered */
@media (min-width: 992px) {
	.wellness-location-btn {
		width: 60%;
	}
}


/* Grid spacing */
.wellness-link-cards {
	margin-bottom: 60px;
}

.wellness-link-cards .col-xs-12 { margin-bottom: 20px; }
@media (min-width: 768px) {
	.wellness-link-cards .col-sm-6 { margin-bottom: 24px; }
}

/* Card base */
.wellness-card {
	position: relative;
	display: block;
	width: 100%;
	height: 220px;                 /* mobile height */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
}

/* Dark overlay for readability */
.wellness-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	transition: background 0.25s ease, transform 0.25s ease;
}

/* Title */
.wellness-card-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	font-weight: 300;
	font-size: 36px;
	letter-spacing: 0.04em;
	line-height: 1.2;
	padding: 0 10px;               /* keep long words off edges */
}

/* Hover */
.wellness-card:hover:before,
.wellness-card:focus:before { background: rgba(0,0,0,0.5); }
.wellness-card:hover,
.wellness-card:focus { text-decoration: none; }

/* Larger sizes on bigger screens */
@media (min-width: 768px) {
	.wellness-card { height: 280px; }
	.wellness-card-title { font-size: 20px; }
}
@media (min-width: 992px) {
	.wellness-card { height: 320px; }
	.wellness-card-title { font-size: 36px; }
}

.ptb {
	padding-top: 110px;
	padding-bottom: 110px;
}

.dark-bg2 {
	background: #151515;
	color: #fff;
}


/* Ensure the banner creates layout space */
.wellness-banner {
	position: relative;
	width: 100%;
	height: 228px;           /* lock the banner height */
	overflow: hidden;
	margin-bottom: 60px;
}

/* Make the image fill the banner area without distortion */
.wellness-banner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;       /* crops as needed to fill */
	display: block;
	z-index: 0;
}

.wellness-banner-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	z-index: 1;
	color: #fff;
	font-weight: 300;            /* lighter weight */
	letter-spacing: 0.05em;      /* stretches text slightly */
	text-align: center;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.7);

	/* Base size for mobile */
	font-size: 8vw;              /* responsive to viewport width */
	line-height: 1.1;
}

/* Tablet and up */
@media (min-width: 768px) {
	.wellness-banner-title {
		font-size: 5vw;
	}
}

/* Large desktop */
@media (min-width: 1200px) {
	.wellness-banner-title {
		font-size: 60px;          /* cap the size so it doesn’t get too big */
	}
}


/* Equal-height columns on md+ */
@media (min-width: 992px) {
	.wellness-two-col .row {
		display: flex;            /* make siblings equal-height */
		align-items: stretch;
	}
	.wellness-two-col .col-md-6 {
		float: none;              /* turn off Bootstrap floats inside this row */
		display: flex;            /* so inner content can center */
		flex-direction: column;
	}
	/* Vertically center text column */
	.wellness-text-col {
		justify-content: center;  /* centers its inner content vertically */
	}
}

/* Vertical center text on md+ */
@media (min-width: 992px) {
	.wellness-text-col {
		display: flex;
		align-items: center;
	}
	.wellness-text-inner {
		width: 100%;
	}
}

.wellness-benefits {
	margin: 60px auto;
}

.wellness-section-title {
	font-weight: 700;
	margin-bottom: 30px;
	color: #000; /* Accent yellow */
}

.wellness-list {
	padding-left: 20px; /* space for bullets */
	margin-bottom: 0;
}

.wellness-list li {
	margin-bottom: 8px;
	line-height: 1.5;
	font-size: 21px;
	font-weight: 300;
}

.wellness-use-section {
	background-color: #282828;
	color: #fff;
	padding: 60px 15px;
}

.wellness-use-section-title {
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
}

.wellness-subtitle {
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #fff !important;
}

.wellness-divider {
	border: none;
	border-top: 1px solid #fff;
	margin: 30px 0;
}

.wellness-hydration {
	margin: 60px auto;
}

.wellness-section-title {
	font-weight: 700;
	margin-bottom: 16px;
}

.wellness-list {
	padding-left: 20px;   /* space for bullets */
	margin: 0;
}

.wellness-list li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.wellness-electrolytes {
	margin-bottom: 60px;
}

.wellness-electrolytes-title {
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	color: #2a1a52; /* deep purple like original */
}

.wellness-electrolyte-card {
	background-color: #d83268; /* pink/red like original */
	color: #fff;
	text-align: center;
	padding: 20px 15px;
	border-radius: 8px;
	margin-bottom: 30px;
	height: 100%; /* for equal height in flex layout */
}

.wellness-symbol {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.wellness-name {
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	margin: 10px 0;
}

.wellness-electrolyte-card p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

/* Equal height on md+ */
@media (min-width: 992px) {
	.wellness-electrolytes .row {
		display: flex;
		flex-wrap: wrap;
	}

	.wellness-electrolytes .col-sm-6.col-md-4 {
		display: flex;
	}

	.wellness-electrolyte-card {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}

	.wellness-electrolytes .col-sm-6.col-md-4:nth-child(-n+3) {
		margin-bottom: 40px; /* adjust spacing as needed */
	}
}

/* Reset Bootstrap’s default active styles */
.wellness-accordion .panel,
.wellness-accordion .panel-default > .panel-heading {
	border-color: #333;
}

.wellness-accordion .panel {
	margin-bottom: 2px;
}

.wellness-accordion .panel-title a {
	display: block;
	text-decoration: none;
}

.wellness-accordion .panel-title a:hover,
.wellness-accordion .panel-title a:focus,
.wellness-accordion .panel-title a:active {
	text-decoration: none;
	color: #333;
}

/* icon styling */
.wellness-accordion .wellness-accordion-icon {
	float: right;
	font-size: 18px;
	line-height: 1;
}

/* show + by default */
.wellness-accordion .panel-title a .wellness-accordion-icon:after {
	content: "+";
}

/* when panel is open (Bootstrap adds .in) → show − */
.wellness-accordion .panel-collapse.in + .panel-body,
.wellness-accordion .panel-title a[aria-expanded="true"] .wellness-accordion-icon:after {
	content: "−";
}

/* Title */
.wellness-appointments-title {
  color: #1e61a8;                 /* blue like the reference */
  font-weight: 600;
  margin-bottom: 30px;
}
.wellness-appointments-title .glyphicon {
  margin-right: 6px;
}

.wellness-appointments {
	padding: 60px 0;
	margin-bottom: 0;
	background-color: #f7f7f7;
}

/* Card container */
.wellness-appointments-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;               /* round inner borders */
}

/* Each row */
.wellness-appointment-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 20px;
  border-top: 1px solid #eee;
}
.wellness-appointment-row:first-child {
  border-top: 0;                  /* no top border on first row */
}

/* Text block (left) */
.wellness-appointment-info {
  min-width: 0;                   /* prevents overflow */
}
.wellness-appointment-name {
  font-weight: 600;
  font-size: 18px;
  color: #444;
}
.wellness-appointment-price {
  color: #7a7a7a;
  margin-top: 4px;
}

/* BOOK button (right) */
.wellness-book-btn {
  display: inline-block;
  background: #157cc5;            /* primary blue */
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 3px;
  transition: background .2s ease;
}
.wellness-book-btn:hover,
.wellness-book-btn:focus {
  background: #0f67a3;
  color: #fff;
  text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .wellness-appointment-row {
    display: block;               /* stack on mobile */
  }
  .wellness-book-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
