/*
Theme Name: Tribeca
Author: Anonymous
Author URI:
Version: 100
Description: Tribeca theme for Wordpress
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
Text Domain: tribeca
Tags: one-column, two-columns
Theme URI:
*/

#sb_instagram img{ display: block !important; }
.sbi_photo_wrap a.sbi_photo{ height: auto; }

.admin-bar .wrapper {
  margin-top: -32px !important;
}
.services-block__info {
	left: 0% !important
}
.instagram-block__heading {
	max-width: 500px !important
}
/* Gutenberg two-column layout */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 2em 0;
}

.wp-block-column {
  flex: 1;
  min-width: 280px;
}

/* Content spacing */
.entry-content p {
  margin-bottom: 1.2em;
  line-height: 1.7;
}

/* Headings */
.entry-content h2,
.entry-content h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3;
}

/* Responsive images */
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}
/* FAQ Section */
.faq-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* Wrapper (optional if you wrap your FAQs in a div.faq-section) */


/* Each FAQ item */
details {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Question (summary) */
summary {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  list-style: none; /* remove default arrow */
  position: relative;
}

/* Custom + / - icon */
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Change icon when open */
details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

/* Answer */
details > *:not(summary) {
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background: #fafafa;
}

.custom-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px auto;
  }

  .custom-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
  }

  .custom-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  .custom-slide.active {
    display: block;
  }

  .custom-slider-buttons {
    text-align: center;
    margin-top: 15px;
  }

  .custom-slider-buttons button {
    padding: 8px 16px;
    margin: 0 5px;
    border: none;
    background-color: #000;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }

  .custom-slider-buttons button:hover {
    background-color: #555;
  }
#breadcrumbs {
  position: relative;
  font-size: 16px;
  color: #666; /* gray for plain text & dividers */
  z-index: 1;
  padding: 12px 0;
  overflow: hidden;
  word-wrap: break-word; /* ensures long text breaks nicely */
}

#breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4; /* background transparency if needed */
  z-index: 0;
}

/* Breadcrumb links */
#breadcrumbs a {
  position: relative;
  z-index: 1;
  color: #000; /* black links */
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap; /* keep link text together */
}

#breadcrumbs a:hover {
  color: #CDB077; /* gold hover color */
  text-decoration: underline;
}

/* Responsive styling */
@media (max-width: 768px) {
  #breadcrumbs {
    font-size: 14px; /* slightly smaller text on tablets */
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  #breadcrumbs {
    font-size: 13px; /* smaller on mobile */
    line-height: 1.4;
  }

  #breadcrumbs a {
    white-space: normal; /* allow wrapping on small screens */
    display: inline-block;
  }

  #breadcrumbs {
    text-align: left;
  }
}

.services-grid-section {
  padding: 60px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.other-services-grid-section {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: stretch;
}

.other-service-item {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.other-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.other-service-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.highlight-bg {
  position: absolute;
  top: 6px;      /* less space on top */
  left: 6px;     /* less space on left */
  right: -10px;  /* more space on right */
  bottom: -10px; /* more space on bottom */
  background-color: #000; /* your yellow tone */
  border-radius: 12px;
  z-index: 1;
}
.other-service-title {
  font-size: 16px;
  font-weight: 600;
  color: #D0B784;
  padding: 16px;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .other-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .other-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

.carousel__image:before, .carousel__img {
	width:90% !important
}

.services-hero {
	margin-bottom:10px !important
}

.blog-post__content{
	padding-top:10px !important
}
.services-hero__photo {
  width: 100% !important;
  overflow: hidden;
  border-radius: 10px; /* optional for nicer look */
  position: relative;
  max-width: 100%;
}

.services-hero__photo img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
#fd--chat-widget{
	display:none;
}
/* Responsive adjustment for larger mobile and tablet */
@media (min-width: 428px) and (max-width: 1024px) {
  .services-hero__photo {
    left: -10vw;
    width: 120% !important;
  }
}

/* Desktop view fix (ensures full width but aligned properly) */
@media (min-width: 1025px) {
  .services-hero__photo {
    left: 0;
    width: 100% !important;
  }
}
