/*-------------------------------------
|   SHANTAY brand overrides
|   (edit this file freely -- it's layered
|   on top of the hotlinked theme.css framework)
------------------------------------*/

.shantay-font {
	font-family: Inter, "Inter 18pt Black", "Inter 18pt ExtraBold" !important;
}

.shantay-font-blod {
	font-family: "Inter Medium", "Inter SemiBold" !important;
}

.shantay-Gold-fonts {
	color: #bfa161;
}

.shantay-base-colour{
	background-color: #fff8ed;
}

.logo-grid {
  height: auto;
  width: 9rem;
}

.logo-grid1 {
  height: auto;
  width: 9rem;
}

.logo-grid2 {
  height: auto;
  width: 12rem;
}

.logo-card-box {
  height: 9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.logo-card-box-framed {
  background: #fff8ed;
  border: 1px solid rgba(191, 161, 97, 0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo-card-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.shantay_offset-md-1 {
    margin-left: 2.33333333%;
	text-align: left;
  }

/*-----------------------------------------------
|   Global left margin (keeps full-bleed banner
|   images edge-to-edge, insets everything else)
-----------------------------------------------*/
body {
  padding-left: 24px;
}

.container-fluid .container-fluid.px-0 {
  margin-left: -24px;
  width: calc(100% + 24px);
}

/*-----------------------------------------------
|   Partner photo columns (Core Partners /
|   Global Partners) -- shorter, with a guaranteed
|   gap so consecutive images never touch
-----------------------------------------------*/
.col-lg-5.px-0.align-self-stretch.py-11.position-relative {
  height: 360px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 40px !important;
  overflow: hidden;
}

.partner-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------------------
|   Horizontal rules
-----------------------------------------------*/
.hr-short {
  width: 18.2rem;
	border-block-width: 3px;
	border-color: #bfa161;
  margin: 0 auto;
}

.hr-short-black {
  width: 15.2rem;
	border-block-width: 3px;
	border-color: #000;
}

/*-----------------------------------------------
|   Contact form
-----------------------------------------------*/
.form {
  max-width: 520px;
}

.field {
  position: relative;
  margin-bottom: 2px;
}

.input {
  width: 100%;
  padding: 18px 16px 10px;
  border-radius: 8px;
  background: #f3f4f6;
  border: none;
  font-size: 14px;
  outline: none;
  transition: background 0.2s;
}

.input:focus {
  background: #ebecf0;
}

.label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
}

.input:focus + .label,
.input:not(:placeholder-shown) + .label {
  top: 6px;
  font-size: 11px;
  color: #555;
}

.error-text {
  font-size: 12px;
  color: #d93025;
  margin-top: 6px;
  display: none;
}

.input.error {
  background: #ffecec;
}

.category-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option input {
  display: none;
}

.option span {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f3f4f6;
  transition: background 0.15s;
}

.option:hover span {
  background: #ebecf0;
}

.option input:checked + span {
  background: #e3e5e8;
  font-weight: 500;
}

.button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #bfa161;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success {
  display: none;
  padding: 14px;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e7e34;
  margin-top: 20px;
  font-size: 14px;
}

/*-----------------------------------------------
|   Events page -- listing (tabs + grid)
-----------------------------------------------*/
.events-tabs {
  display: inline-flex;
  gap: 4px;
  border: 1px solid #e5ddc8;
  border-radius: 999px;
  padding: 4px;
  background: #fff;
}

.events-tab-btn {
  border: none;
  background: transparent;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9a8a63;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.events-tab-btn:hover {
  color: #bfa161;
}

.events-tab-btn.active {
  background: #bfa161;
  color: #fff;
}

.events-tab-panel {
  display: none;
}

.events-tab-panel.active {
  display: block;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #efe8d8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  color: inherit;
}

.event-card-img-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #14130f;
  overflow: hidden;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card-body {
  padding: 20px 22px 22px;
}

.event-card-dates {
  color: #bfa161;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.event-card-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.event-card-venue {
  font-size: 13px;
  color: #9a8f79;
  margin-bottom: 12px;
}

.event-card-cta {
  display: inline-block;
  color: #bfa161;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.events-coming-soon {
  border: 1.5px dashed #d8cba9;
  box-shadow: none;
}

.events-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.events-coming-soon-frame {
  background: #fdfaf3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-coming-soon-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #d8cba9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfa161;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.events-empty-state {
  border: 1.5px dashed #d8cba9;
  border-radius: 12px;
  padding: 70px 30px;
  text-align: center;
  color: #9a8a63;
}

/*-----------------------------------------------
|   Services page -- category grid + detail panels
-----------------------------------------------*/
.service-card {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #efe8d8;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

.service-card.active {
  border-color: #bfa161;
  box-shadow: 0 8px 20px rgba(191,161,97,0.18);
}

.service-card-img-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #14130f;
  overflow: hidden;
  padding: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card-body {
  padding: 14px 16px 16px;
}

.service-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.service-card.active .service-card-title {
  color: #bfa161;
}

.service-card-tagline {
  font-size: 12px;
  color: #9a8f79;
  line-height: 1.4;
  margin-bottom: 0;
}

.service-detail-panel {
  display: none;
  scroll-margin-top: 110px;
}

.service-detail-panel.active {
  display: block;
  animation: serviceFadeIn 0.35s ease;
}

@keyframes serviceFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-detail-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  width: calc(450px + 2cm);
  height: calc(300px + 2cm);
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .service-detail-img {
    height: auto;
    aspect-ratio: 450 / 300;
  }
}

/*-----------------------------------------------
|   Event detail page
-----------------------------------------------*/
.event-back-link {
  color: #bfa161;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.event-back-link:hover {
  text-decoration: underline;
}

.event-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 28px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-announcement p {
  margin-bottom: 14px;
}

.event-announcement a {
  color: #bfa161;
  text-decoration: underline;
  word-break: break-word;
}

.event-announcement a:hover {
  color: #a88c4f;
}

.event-doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid #d8cba9;
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.event-doc-link:hover {
  background: #fff8ed;
  border-color: #bfa161;
}

.event-doc-link .doc-icon {
  color: #bfa161;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1.5px solid #bfa161;
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

.event-doc-link-label {
  font-weight: 600;
}

.event-day-block {
  border-left: 3px solid #bfa161;
  padding-left: 18px;
  margin-bottom: 26px;
}

.event-day-label {
  color: #bfa161;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  margin-bottom: 4px;
}

.event-day-theme {
  margin-bottom: 8px;
}

.btn-shantay-gold {
  display: inline-block;
  background: #bfa161;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin: 4px 8px 4px 0;
  transition: background 0.2s ease;
}

.btn-shantay-gold:hover {
  background: #a88c4f;
  color: #fff !important;
}

.btn-shantay-outline {
  display: inline-block;
  border: 1.5px solid #bfa161;
  color: #bfa161 !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin: 4px 8px 4px 0;
  transition: all 0.2s ease;
}

.btn-shantay-outline:hover {
  background: #bfa161;
  color: #fff !important;
}

/* nav */
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #bfa161;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #bfa161;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* Core Partners logo grid (about.html) */
.core-partner-logo-box {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(191, 161, 97, 0.3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-partner-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.core-partner-logo-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.core-partner-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b6350;
  margin-top: 10px;
  margin-bottom: 0;
}

.vision-mission-icon {
  flex-shrink: 0;
}

/*-----------------------------------------------
|   HomeV2 -- feature icon cards
|   (The Gap / What Shantay Does)
-----------------------------------------------*/
.feature-icon-card {
  text-align: center;
  padding: 20px 14px;
}

.feature-icon-circle {
  width: calc(62px + 2cm);
  height: calc(62px + 2cm);
  border-radius: 50%;
  background: #fff8ed;
  border: 1px solid rgba(191, 161, 97, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.feature-icon-text {
  font-size: 18px;
  color: #6b6350;
  margin-bottom: 0;
}

/*-----------------------------------------------
|   HomeV2 -- process steps (How Shantay Works)
-----------------------------------------------*/
.process-step {
  text-align: center;
  padding: 0 10px;
}

.process-step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #bfa161;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 16px rgba(191, 161, 97, 0.35);
}

.process-step-label {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.process-step-text {
  font-size: 18px;
  color: #6b6350;
  margin-bottom: 0;
}

/*-----------------------------------------------
|   HomeV2 -- hero CTAs
-----------------------------------------------*/
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/*-----------------------------------------------
|   HomeV2 -- teaser "view all" link
-----------------------------------------------*/
.section-cta-row {
  text-align: center;
  margin-top: 8px;
}

/*-----------------------------------------------
|   HomeV2 -- final CTA band
-----------------------------------------------*/
.cta-band {
  background: #14130f;
  color: #fff;
  text-align: center;
  padding: 72px 20px;
}

.cta-band h3 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
}

/*-----------------------------------------------
|   HomeV2 -- consolidated site footer
-----------------------------------------------*/
.site-footer {
  background: #fff8ed;
  padding: 56px 0 28px;
}

.site-footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a8a63;
  margin-bottom: 14px;
}

.site-footer a {
  color: #6b6350;
  text-decoration: none;
}

.site-footer a:hover {
  color: #bfa161;
}

.site-footer-links li {
  margin-bottom: 8px;
}

.site-footer-bottom {
  border-top: 1px solid rgba(191, 161, 97, 0.25);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 12px;
  color: #9a8f79;
}

/*-----------------------------------------------
| Footer social icons (contact + LinkedIn)
-----------------------------------------------*/
.footer-social-row {
	display: flex;
	gap: 10px;
	margin-top: 4px;
}
.footer-social-icon {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid rgba(191, 161, 97, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #bfa161;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.footer-social-icon:hover {
	background: #bfa161;
	color: #fff;
	transform: translateY(-2px);
}
.footer-social-icon::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: #1a1a1a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	white-space: nowrap;
	padding: 5px 10px;
	border-radius: 5px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-social-icon::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	border: 5px solid transparent;
	border-top-color: #1a1a1a;
	margin-bottom: -2px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-social-icon:hover::after,
.footer-social-icon:hover::before {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
