/* source-serif-4-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/source-serif-4-v14-latin-regular.woff2') format('woff2');
}

/* biryani-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Biryani';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/biryani-v15-latin-regular.woff2') format('woff2');
}

.has-vertically-aligned-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

:root {
  --lbc-brand-blue: #2a5060;
  --lbc-brand-peach: #c7957f;
  --lbc-brand-olive: #868672;
  --lbc-brand-tan: #e7dfd8;
  --lbc-text-dark: #3a3a3a;
  --lbc-card-bg: #ffffff;
}

html {
  font-family: "Biryani", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI",
               Roboto, Ubuntu, sans-serif;

  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-weight: 400;
  font-size: 1.0625rem;   /* 17px */
  line-height: 1.7;
  color: var(--lbc-text-dark);
}

.hidden { display: none }

.header-wrapper {
  padding-bottom: 10px;
  background-color: var(--lbc-brand-peach);
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: "Source Serif 4", Georgia, serif;
}

.navbar-burger.burger {
  color: var(--lbc-brand-blue);
}

/* ── Split hero layout ───────────────────────────── */

section.hero--split {
  background-color: var(--lbc-brand-tan);
}

.hero-body--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero--split .hero-body--split {
  --bulma-hero-body-padding-medium: 50px;
  min-height: 65vh;
}

/* ── Left panel ──────────────────────────────────── */

.hero-panel--content {
  background-color: var(--lbc-brand-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}

.hero-panel--content .container {
  max-width: 480px;
}

.hero-title {
  color: var(--lbc-brand-blue);
  font-size: 3rem;
  line-height: 1.5;
}

.hero-subtitle {
  color: var(--lbc-text-dark);
  font-size: 1.5rem;
  margin-top: 1rem;
  padding-right: 3rem;
}

/* ── Right panel ─────────────────────────────────── */

.hero-panel--photo {
  background-image:
    image-set(
      url("/img/hero_mtn_1x.webp") type("image/webp") 1x,
      url("/img/hero_mtn_2x.webp") type("image/webp") 2x
    );
  background-size: cover;
  background-position: center center;
}

/* ── Mobile: stack vertically ────────────────────── */

@media screen and (max-width: 768px) {
  .hero-body--split {
    grid-template-columns: 1fr;
  }

  .hero-panel--photo {
    min-height: 320px;
    order: -1;   /* photo appears above text on mobile */
  }

  .hero-panel--content {
    padding: 2.5rem 1.5rem;
  }
}

.hero .hero-foot {
  height: 50px;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.082);
}

@media (max-width: 599px) {
  .hero .hero-foot {
    display: none;
  }
}

.hero .hero-foot .hero-foot--wrapper {
  margin: 7px auto;
  height: 50px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop {
  line-height: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li {
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li.is-active a {
  border-bottom: 2px solid #1f2c6c;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a {
  color: var(--lbc-brand-blue);
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a:hover {
  color: var(--lbc-brand-blue);
  transition: all .2s ease-in-out;
  border-bottom: 2px solid #1f2c6c;
}

.main-content {
  color: var(--lbc-text-dark);
}

.main-content .section-light .section-title {
  color: var(--lbc-brand-peach);
}

.main-content .section-light {
  color: var(--lbc-text-dark);
  background-color: var(--lbc-brand-tan);
  padding: 60px;
}

.main-content .section-light.contact {
  padding: 200px;
}

@media (max-width: 599px) {
  .main-content .section-light.contact {
    padding: 60px 20px;
  }
}

.main-content .section-color {
  padding: 60px;
  background-color: var(--lbc-brand-blue);
  color: white;
}

.main-content .section-color.services {
  padding: 60px;
  background-color: var(--lbc-brand-blue);
  color: white;
}

.main-content .section-color.services i {
  font-size: 3rem;
  padding: 20px;
}

.main-content .section-color.contact {
  padding: 60px;
  background-color: var(--lbc-brand-olive);
  color: white;
}

.service-card {
  height: 100%;
  background-color: var(--lbc-card-bg);
  border-top: 4px solid var(--lbc-brand-peach);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card .icon {
  color: var(--lbc-brand-blue);
}

.service-card .title {
  color: var(--lbc-text-dark);
}

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

.service-subtitle {
  color: #6b7280;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.service-card .subtitle {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  text-align: center;
  margin-top: 1.25rem;
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 0.4rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: none;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: white;
}

.testimonial-attribution {
  margin-top: 10px;
  color: gray;
}

.about-person {
  margin-top: 3rem;
}

.about-person .title {
  color: var(--lbc-text-dark);
}

.about-philosophy {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

#about img {
  border-radius: 6px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-email {
  margin-top: 1.5rem;
  font-weight: 500;
}

div.email > span {
  display: none;
}

.contact-photo img {
  border-radius: 6px;
}

.main-content .section-title {
  color: white;
  text-transform: uppercase;
  font-size: 2.0rem;
  letter-spacing: 2px;
  padding-bottom: 30px;
}

.footer {
  bottom: 0;
  width: 100vw;
  padding: 0;
  height: 80px;
  line-height: 25px;
  text-align: center;
  background-color: var(--lbc-brand-olive);
  color: whitesmoke;
  padding-top: 2rem;
}

#toTop {
  height: 50px;
  width: 50px;

  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(199,149,127,0.65);
  color: white;

  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(14,25,80,0.3);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#toTop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#toTop:hover {
  background-color: #43485c;
}

body.preloader-site {
  overflow: hidden;
}

.preloader-wrapper {
  height: 100%;
  width: 100%;
  background: var(--lbc-brand-tan);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}

.preloader-wrapper .preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120px;
}

.white
{color:ghostwhite}
