
:root {
  --lg-font-headline: "Marcellus", serif;
  --lg-font-body: "Montserrat", system-ui, sans-serif;
  --lg-font-serif: 'Times New Roman', serif;
  --lg-color-bg: #f5f1ec;
  --lg-color-ink: #2b2b2b;
  --lg-color-ink-soft: #6e6a67;
  --lg-color-accent: #548D83;
  --lg-color-accent-soft: #e0f0ed;
  --lg-radius-lg: 18px;
  --lg-radius-xl: 28px;
  --lg-shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);

  --bg: #E7E2DD;
  --line: #6a655d;
  --text: #3f3a33;
  --muted:#6b645c;
  --accent:#b29775;
  --maxw: 1050px;
}

 *,*::before,*::after{ box-sizing: border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    background: var(--bg);
    /* background: var(--bg); */
    color: var(--text);
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

/* HERO SECTION */

.blogs-hero-section {
  padding: 80px 16px 50px;
  background: #FAF8F6;
  text-align: center;
}

@media (max-width: 768px) {
  .blogs-hero-section {
    padding: 70px 16px 30px;
  }
}

.blogs-hairline {
  width: 100%;
  max-width: 900px;
  margin: 16px auto;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.blogs-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.blogs-hero-content h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #27211c;
  margin-bottom: 16px;
}

.blogs-hero-lead {
  line-height: 1.8;
  color: var(--lg-color-ink-soft);
  max-width: 720px;
  margin: 0 auto 26px;
  font-family: "times new roman", serif;
  font-size: clamp(15px, 1.5vw, 18px);
}

.blogs-hero-lead em {
  font-style: italic;
  color: #4a443d;
}

.blogs-hero-lead b {
  font-weight: 600;
}

.blogs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 15px;
  color:#6e6a63;
}

.blogs-hero-badge svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .blogs-hero-badge {
    gap: 8px;
    font-size: 14px;
  }

  .blogs-hero-badge svg {
    width: 18px;
    height: 18px;
  }
}


/* BLOG DETAILS SECTION */

.blog-details-section{
  background: #FAF8F6;
  padding: 0px 0 70px;
}

/* Image Slider */
.blog-details-slider{
  padding: 0;
  margin: 0;
}

.bhs-wrap{
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 14px;
  align-items: center;
  padding: 0 16px;
}

@media (max-width: 720px){
  .bhs-wrap{
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
  }
}

.bhs-viewport{
  overflow: hidden;
  border-radius: 0px;
  background: #000;
  box-shadow: var(--lg-shadow-soft);
}

.bhs-track{
  display: flex;
  width: 100%;
  transition: transform .5s ease;
  will-change: transform;
}

.bhs-slide{
  flex: 0 0 100%;
}

.bhs-slide img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px){
  .bhs-slide img{ height: 360px; }
}

.bhs-nav{
  width: 46px;
  height: 46px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.bhs-nav:hover{
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.bhs-nav:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.bhs-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 6px;
}

.bhs-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 0;
  cursor: pointer;
}

.bhs-dot.active{
  background: rgba(0,0,0,0.78);
}


/* Details */
.blog-details-content-wrap{
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 16px 0;
}



/* grid */
.exc-layout-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: start;
  padding-top: 26px;
}

@media (max-width: 980px){
  .exc-layout-grid{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }
}

.exc-title{
  font-family: var(--lg-font-headline);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #27211c;
  margin: 0 0 18px;
  line-height: 1.05;
}

.exc-lead{
  font-family: "times new roman", serif;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

@media (max-width: 980px){
  .exc-lead{ margin: 0 auto; }
}

.exc-right-text{
  font-family: var(--lg-font-body);
  font-size: 0.92rem;
  line-height: 1.9;
  color: #6e6a67;
  margin: 0 0 22px;
  max-width: 520px;
}

@media (max-width: 980px){
  .exc-right-text{ margin: 0 auto 22px; }
}

.exc-btn{
  display: inline-block;
  background: #6a655d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--lg-font-body);
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.exc-btn:hover{
  transform: translateY(-2px);
  opacity: .92;
  background: #000;
}


/* OTHER EXPERIENCES  */

.other-experiences-section{
  padding: 70px 16px 90px;
  background: #fafaf6;
}

.other-experiences-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.other-experiences-title{
  font-family: var(--lg-font-headline);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .02em;
  color: #2f2620;
  margin: 0 0 26px;
}

.oe-slider{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
}

@media (max-width: 720px){
  .oe-slider{
    grid-template-columns: 36px 1fr 36px;
  }
}

.oe-track-wrap{
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--lg-shadow-soft);
}

.oe-track{
  display: flex;
  gap: 18px;
  transition: transform .5s ease;
  will-change: transform;
  padding: 8px;
}

.oe-card{
  min-width: calc((100% - 36px) / 3);
  background: #fffdf9;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--lg-shadow-soft);
  text-align: left;
}

@media (max-width: 980px){
  .oe-card{ min-width: calc((100% - 18px) / 2); }
}
@media (max-width: 640px){
  .oe-card{ min-width: 100%; }
}

.oe-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.oe-body{
  padding: 14px 16px 18px;
}

.oe-body h3{
  font-family: var(--lg-font-headline);
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #2f2620;
}

.oe-body p{
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.oe-btn{
  display: inline-block;
  background: transparent;
  color: #111;
  border: 1px solid #111;
  padding: 9px 14px;
  border-radius: 1px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: bold;
  font-family: var(--lg-font-headline);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.oe-btn:hover{
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.oe-nav{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.oe-nav:hover{
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.oe-nav:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.oe-dots{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.oe-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  border: 0;
  cursor: pointer;
}

.oe-dot.active{
  background: rgba(0,0,0,0.75);
}

.back-to-experiences{
  margin-top: 50px;
  text-align: center;
}

.back-exp-btn{
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid #6a655d;
  color: #6a655d;
  text-decoration: none;
  font-family: var(--lg-font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.back-exp-btn:hover{
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}


/* WHATSAPP FLOAT */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  /* background: #25D366; */
  background: #104622;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none !important;
}
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.whatsapp-icon{
  /* color: #fff; */
  color: #dcd6cc;
}
