/* ── Tabs Container ───────────────────────────────────────────────────────── */
.nav-tabs {
  display: inline-flex;    /* shrink to fit the buttons */
  margin: 0 auto 20px;     /* center in its parent, with 20px bottom gap */
  flex-wrap: wrap;
  border-bottom: none;     /* remove the underline */
  padding: 0;              /* remove any default list padding */
  list-style: none;        /* remove default bullets */
}

/* ── Each Tab ─────────────────────────────────────────────────────────────── */
.nav-tabs .nav-item {
  flex: none;              /* don’t force equal widths */
  text-align: center;
  margin: 0 5px;           /* small horizontal gap between tabs */
}

/* ── Tab Links ───────────────────────────────────────────────────────────── */
.nav-tabs .nav-link {
  font-weight: bold;
  font-size: 1.15rem;
  color: #333;
  padding: 12px 20px;
  border: none;
  background: transparent;
  transition: color .2s, transform .2s;
}
.nav-tabs .nav-link:hover {
  color: #ff9800;
}

/* ── Active Tab ──────────────────────────────────────────────────────────── */
.nav-tabs .nav-link.active {
  color: #ff9800;
  /* transform: scale(1.05); */
  text-decoration: underline;
}

/* ── Gallery Thumbnails ───────────────────────────────────────────────────── */
.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

/* larger fixed height for all thumbs */
.gallery-thumb img,
.gallery-thumb video {
  display: block;
  width: 100%;
  height: 250px;           /* increased size */
  object-fit: cover;
  transition: transform .3s ease;
}

/* overlay hidden by default */
.gallery-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  transition: opacity .3s ease;
}
.gallery-thumb .overlay h5 {
  margin: 0 0 .75rem;
  font-size: 1.4rem;      /* larger */
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(255, 253, 253, 0.8);
  line-height: 1.2;
}

/* Description */
.gallery-thumb .overlay p {
  margin: 0;
  font-size: 1rem;        /* a bit bigger */
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  max-width: 90%;
}


/* hover effects */
.gallery-thumb:hover img,
.gallery-thumb:hover video {
  transform: scale(1.05);
}
.gallery-thumb:hover .overlay {
  opacity: 1;
}

/* ── Tab Panes Cleanup ─────────────────────────────────────────────────────── */
.tab-content > .tab-pane {
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
}


/* Footer */
/* --------------------------------------------
   Base Footer Styles
   -------------------------------------------- */
.footer-area {
  background-color: #F0EED4;
  padding: 50px 0;
  color: #000;
}

.footer_logo img {
  margin-bottom: 10px;
}

.footer_2 h4,
.footer_3 h4 {
  color: #FF5722;
  border-bottom: 2px solid #FF5722;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.footer_2 p,
.footer_3 p {
  color: #080808;
  font-size: 15px;
  line-height: 1.8;
}

.footer_2 .contact_info span {
  color: #FF5722;
  font-weight: bold;
}

.single-footer-widget a {
  color: #000;
  margin: 0 5px;
  font-weight: 800;
  text-decoration: none;
}

.single-footer-widget a:hover {
  color: #FF5722;
}

/* ensure any <p> inside a widget is centered below */
.single-footer-widget p {
  margin: 0.5em 0;
}

/* Copyright row */
.copyright_part_text {
  background-color: #F0EED4;
  padding: 15px 0;
  margin-top: 20px;
  font-weight: 900;
  color: #000;
}

.copyright_part_text .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  margin: 0;
}

.copyright_social_icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.copyright_social_icon a {
  color: #666;
  margin-left: 10px;
  font-size: 1.1rem;
}

.copyright_social_icon a:hover {
  color: #FF5722;
}

/* --------------------------------------------
   Mobile & Tablet Styles (up to 991px)
   -------------------------------------------- */
@media (max-width: 991px) {

  /* hide separators and stack nav links */
  .link-separator { display: none; }
  .footer-links a {
    display: block;
    margin-bottom: 5px;
  }

  /* center all widget content */
  .footer-area {
    padding: 40px 20px;
    text-align: center;
  }
  .single-footer-widget {
    margin-bottom: 30px;
  }
  .footer_logo img {
    margin: 0 auto 15px;
    display: block;
    max-width: 150px;
  }

  /* smaller headings & text */
  .footer_2 h4,
  .footer_3 h4 {
    font-size: 18px;
  }
  .footer_2 p,
  .footer_3 p {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer_2 .contact_info span {
    display: block;
    margin-top: 5px;
  }

  /* make the email input/form full‑width */
  .footer_3 .input-group {
    width: 100%;
  }
  .footer_3 .input-group .form-control {
    width: calc(100% - 50px); /* leave space for the button */
  }
  .footer_3 .input-group .input-group-append .btn {
    width: 50px;
  }

  /* center copyright & social icons under it */
  .copyright_part_text .row {
    flex-direction: column;
    text-align: center;
  }
  .copyright_social_icon {
    justify-content: center;
    margin-top: 10px;
  }
}


/* Lazing Loading */
img.lazy,
video.lazy {
  filter: blur(5px);
  transition: filter 0.5s ease;
}
img.lazy.loaded,
video.lazy.loaded {
  filter: none;
}
