/**
 * Business Single Page Styles
 * Extracted from single-business.php for better maintainability
 * Scoped to .business-single to avoid conflicts with other pages
 */

/* =============================================================================
   CSS Custom Properties (Variables)
   ============================================================================= */

.business-single {
  
  /* Neutral Colors */

  --floral-white: #fffdf4;
  --white: #ffffff;
  --cream: #fefefe;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --black: #0f172a;
  

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}


/* =============================================================================
   Base Styles (Scoped to Business Single Page)
   ============================================================================= */

.business-single * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 15px;
}

.business-single {
  line-height: 1.6;
  color: var(--black);
  background-color: var(--floral-white);
  font-weight: 300;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.business-single h1,
.business-single h2 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.business-single h1 {
  font-size: 60px;
  line-height: 1;
}

.business-single h2 {
  font-size: 50px;
}

.business-single h2.accordion-header {
  font-size: 18px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================================================
   Utility Classes (Background Colors)
   ============================================================================= */

.business-single .bg-floral-white { background-color: var(--floral-white) !important; }
.business-single .bg-black { background-color: var(--black) !important; }
.business-single .bg-accent1 { background-color: var(--accent1) !important; }
.business-single .bg-white { background-color: var(--white) !important; }
.business-single .bg-light-grey { background-color: var(--light-grey) !important; }
.business-single .bg-mainMedium { background-color: var(--mainMedium) !important; }
.business-single .bg-mainDark { background-color: var(--mainDark) !important; }
.business-single .bg-accent2 { background-color: var(--accent2) !important; }
.business-single .bg-mainLight { background-color: var(--mainLight) !important; }

/* =============================================================================
   Utility Classes (Text Colors)
   ============================================================================= */

.business-single .text-floral-white { color: var(--floral-white) !important; }
.business-single .text-black { color: var(--black) !important; }
.business-single .text-accent1 { color: var(--accent1) !important; }
.business-single .text-white { color: var(--white) !important; }
.business-single .text-light-grey { color: var(--light-grey) !important; }
.business-single .text-mainMedium { color: var(--mainMedium) !important; }
.business-single .text-mainDark { color: var(--mainDark) !important; }
.business-single .text-accent2 { color: var(--accent2) !important; }
.business-single .text-mainLight { color: var(--mainLight) !important; }

/* Dynamic Text Colors - Change based on theme */
.business-single .text-dynamic-mainDark { color: var(--mainDarkText) !important; }
.business-single .text-dynamic-mainMedium { color: var(--mainMediumText) !important; }
.business-single .text-dynamic-mainLight { color: var(--mainLightText) !important; }
.business-single .text-dynamic-accent1 { color: var(--accent1Text) !important; }
.business-single .text-dynamic-accent2 { color: var(--accent2Text) !important; }

/* =============================================================================
   Typography Utilities
   ============================================================================= */

.business-single .object-fit-cover {
  object-fit: cover;
  height: 400px;
}

.business-single .text-15px {
  font-size: 15px;
  line-height: 1.5;
}

.business-single .container-fluid {
  padding: 50px 0;
  margin: auto;
}

.business-single .container {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: var(--bs-gutter-x, 1.5rem);
  padding-right: var(--bs-gutter-x, 1.5rem);
  margin: auto;
}

/* =============================================================================
   Navigation Styles
   ============================================================================= */

.business-single .navbar.single-business-page {
  background-color: #fffdf4bf !important;
}

.business-single .navbar .container {
  padding: 10px 0;
}

/* =============================================================================
   About Section - Carousel Components
   ============================================================================= */

.business-single .carousel-trigger {
  width: 100px !important;
  height: 110px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border-color: #dee2e6;
  font-weight: 300;
  position: relative;
}

.business-single .carousel-trigger:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  transform: translateY(-1px);
}

.business-single .carousel-trigger.active {
  background-color: #fbf8e8;
  border-color: #6c757d;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

.business-single .carousel-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent1);
  border-radius: 50%;
}

/* =============================================================================
   Features Section
   ============================================================================= */

.business-single .each-feature-text {
  font-size: 15px;
  line-height: 1.5;
}

.business-single #features p {
  font-weight: 100;
}

.business-single .each-feature {
  border-left: 1px dashed #ffffff80;
  border-top: 0;
}

.business-single .each-feature:last-child {
  border-right: 1px dashed #ffffff80;
  border-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .business-single .each-feature {
    border-left: 0;
    border-right: 0;
  }
}

@media only screen and (max-width: 760px) {
  .business-single .each-feature {
    border-top: 1px dashed #ffffff80;
  }
  
  .business-single .each-feature:last-child {
    border-bottom: 1px dashed #ffffff80;
  }
}

/* =============================================================================
   Promo Banner Section
   ============================================================================= */

.business-single .accordion-button {
  font-size: 1.1rem;
  padding: 1rem 0;
}

.business-single .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: white !important;
  box-shadow: none !important;
}

.business-single .accordion-button:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

.business-single .accordion-button::after {
  display: none;
}

.business-single .promo-card {
  border: 0.75px dashed var(--white);
  background-color: #ffffff14;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.75rem;
  box-shadow: 0 1px 3px -2px #4d392e0d;
  transition: all 0.3s ease;
  height: 100%;
}

.business-single .promo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-single .promo-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.business-single .promo-card-title {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.business-single .promo-card-text {
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.business-single .promo-card-date {
  margin-top: auto;
  width: 100%;
}

.business-single section.promo-banner {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow-x: clip;
}

.business-single .budget-learn_learn-more_row {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: flex-start;
  align-items: center;
  height: 4.125rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  position: absolute;
  top: 0%;
  color: inherit;
}

.business-single .budget-learn_learn-more_text {
  color: inherit;
  opacity: 40%;
  text-transform: uppercase;
  flex: none;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .business-single .promo-card {
    width: 100%;
    max-width: 330px;
    padding: 1.25rem;
  }
}

/* =============================================================================
   Visit Info Section
   ============================================================================= */

.business-single #visit .card {
  border: none !important;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.business-single .each_key_info_item {
  border: 1px dashed var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #ffffff40;
  width: 45%;
  margin-right: 5%;
  margin-bottom: 20px;
}

.business-single .card-body hr {
  margin: 1rem 0;
}
/* =============================================================================
   Local Features Section
   ============================================================================= */

#local_features img.icon {
  max-width: 80px;
  height: auto;
}



/* =============================================================================
   Gallery Section
   ============================================================================= */

.business-single .gallery-section {
  overflow-x: hidden;
}

.business-single .gallery-row-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bs-dark);
  margin-bottom: 1.5rem;
}

.business-single .gallery-row-left .gallery-row-title {
  padding-left: 1rem;
}

.business-single .gallery-scroll-left {
  padding-left: 1rem;
  margin-right: 150px;
}

.business-single .gallery-row-right .gallery-row-title {
  padding-right: 1rem;
}

.business-single .gallery-scroll-right {
  padding-right: 1rem;
  margin-left: 150px;
}

.business-single .gallery-scroll {
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.business-single .gallery-scroll::-webkit-scrollbar {
  display: none;
}

.business-single .gallery-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.business-single .gallery-image-wrapper {
  border-radius: 1.25rem;
  width: 30vw;
  min-width: 280px;
  max-width: 400px;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.business-single .gallery-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.business-single .gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.3s ease;
}

.business-single .gallery-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .business-single .gallery-image-wrapper {
    width: 40vw;
  }
  
  .business-single .gallery-scroll {
    gap: 1rem !important;
  }
  
  .business-single .gallery-row-title {
    font-size: 1.25rem;
  }
  
  .business-single .gallery-scroll-left,
  .business-single .gallery-scroll-right {
    margin-left: 0;
    margin-right: 0;
  }
  
  .business-single .gallery-scroll-right {
    padding-left: 1rem !important;
  }
  
  .business-single .gallery-scroll-left {
    padding-right: 1rem !important;
  }
}

@media (max-width: 480px) {
  .business-single .gallery-image-wrapper {
    width: 40vw;
    min-width: 220px;
  }
  
  .business-single .gallery-row-title {
    font-size: 1.125rem;
  }
}

/* =============================================================================
   Contact Section
   ============================================================================= */

.business-single .contact-nav-tabs {
  border: none;
  gap: 2rem;
}

.business-single .contact-nav-tabs .nav-link {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  position: relative;
  border-radius: 0;
  transition: all 0.3s ease;
}

.business-single .contact-nav-tabs .nav-link:hover {
  color: inherit;
  opacity: 0.9;
  background: none;
}

.business-single .contact-nav-tabs .nav-link.active {
  color: inherit;
  opacity: 1;
  background: none;
}

.business-single .contact-nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.business-single .contact-main-container {
  max-width: 1000px;
  margin: 0 auto;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  padding-bottom: 0 !important;
}

.business-single .map-container {
  max-height: 450px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.business-single #mapTabsContent {
    text-align: center;
}

/* =============================================================================
   FAQ Section
   ============================================================================= */

.business-single .currentlyOpen {
  display: none;
}

.business-single .currentlyClosed {
  display: contents;
}

.business-single #faq .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.business-single #faq .accordion-button:not(.collapsed) .currentlyClosed {
  display: none;
}

.business-single #faq .accordion-button:not(.collapsed) .currentlyOpen {
  display: contents;
}

.business-single .iconOnAccordian {
  font-weight: 100;
  font-size: 30px;
}

/* =============================================================================
   Footer Section
   ============================================================================= */

.business-single footer a {
  text-decoration: none;
  color: inherit;
}