/* ---------------------------------------------------
   Litchfield Balancing – Custom Overrides
   ---------------------------------------------------*/

/* ---------------------------------------------------
   GENERAL
   ---------------------------------------------------*/

   html, body {
    background-color: #000; /* Black background */
    overflow-y: auto !important; /* Guarantee page can scroll */
  }

  body {
    font-weight: 400;
  }
  
  /* ---------------------------------------------------
     NAVBAR
     ---------------------------------------------------*/
  
  .navbar {
    background-color: transparent !important;
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  .navbar a.nav-link,
  .navbar .navbar-brand {
    color: #ffffff !important; /* White links in navbar */
    transition: color 0.3s ease;
  }
  
  /* ---------------------------------------------------
     HERO SECTION
     ---------------------------------------------------*/
  
  .page-header {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-color: #000; /* Black fallback */
  }
  
  .page-header::before {
    background: transparent !important; /* Remove dark overlay */
    pointer-events: none;
  }
  
  .page-header .container,
  .page-header .content-center {
    position: relative;
    z-index: 2;
  }
  
  .page-header .content-center {
    padding-top: 100px;
    text-align: center;
  }
  
  .page-header .content-center h1,
  .page-header .content-center h4 {
    animation: fadeIn 2s ease-in-out;
  }
  
  .page-header .content-center h1 {
    margin-bottom: 20px;
    font-size: 4rem;
  }
  
  .page-header .content-center h4 {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6; /* Add this */
}
  
  /* Fade-in Animation Keyframes */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Fade Hero on Scroll */
  .fade-in {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  
  /* ---------------------------------------------------
     SECTIONS
     ---------------------------------------------------*/
  
  .section,
  .section-gray,
  section {
    background-color: #f9f9f9; /* Very light grey */
    position: relative;
    z-index: 2;
  }

  .container p,
  .container .description {
    color: #666666 !important;
  }
  
  p,
.description {
  font-weight: 400;          /* bump up from 300 to 400 */
  font-size: 15px;           /* or 1rem */
  color: #666666;            /* stronger contrast */
  line-height: 1.6;
}

  /* Make normal links inside sections inherit color — but NOT buttons */
  .section a:not(.btn) {
    color: inherit;
    text-decoration: none;
  }
  
  /* Optional underline on hover for links */
  .section a:hover {
    text-decoration: underline;
  }
  
/* Universal tighter spacing between sections */
.section,
.section-gray,
section {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Brand new isolated footer style */
.site-footer {
  background-color: #000;
  color: #ffffff;
  padding: 30px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Fix email/phone link color inside description blocks like in 'Find Us' */
.description.contact-links a:hover {
  color: #b63d3e !important;
  text-decoration: underline;
}

.description a[href^="tel"] {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.description a[href^="tel"]:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------
   CUSTOM SECTION LAYOUTS (COL-10 WIDTH)
   ---------------------------------------------------*/

/* Right-aligned text block */
.section-text-right {
  max-width: 85%; /* 10/12 columns */
  margin-left: auto;
  text-align: right;
}

/* Left-aligned text block */
.section-text-left {
  max-width: 85%; /* 10/12 columns */
  margin-right: auto;
  text-align: left;
}

/* Center-aligned text block */
.section-text-center {
  max-width: 85%; /* 10/12 columns */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------------------------
   CUSTOM QUOTE STYLING
   ---------------------------------------------------*/

   .custom-quote {
    font-style: italic;
    color: #cc4b4c; /* Softer red */
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    text-align: right;
    transition: color 0.3s ease; /* Smooth hover transition */
  }
  
  /* Hover effect: slightly darker red on hover */
  .custom-quote:hover {
    color: #b63d3e; /* Slightly darker red on hover */
  }
  
  

  /* ---------------------------------------------------
     CONTACT LINKS
     ---------------------------------------------------*/
  
  /* Only the links inside .contact-links stay black */
  .contact-links a {
    color: #000000;
    text-decoration: none;
  }
  
  .contact-links a:hover {
    text-decoration: underline;
  }
  
  /* ---------------------------------------------------
     FOOTER
     ---------------------------------------------------*/
  
  .footer {
    background-color: #000;
    color: #ffffff;
    padding: 20px 0;
  }
  
  /* ---------------------------------------------------
     MAP
     ---------------------------------------------------*/
  
  iframe {
    border: none;
    display: block;
    width: 100%;
  }
  
/* ---------------------------------------------------
   CAROUSEL
---------------------------------------------------*/

/* Line-style indicators with lighter semi-transparent color */
.carousel-indicators.carousel-indicators-lines li {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4); /* Light white, semi-transparent */
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.carousel-indicators.carousel-indicators-lines li.active {
  background-color: #cc4b4c; /* Brand red when active */
  opacity: 1;
}

/* Arrow controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: #fff;
  font-size: 2rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  filter: drop-shadow(0 0 1px black);
}



/* ---------------------------------------------------
   BUTTONS
---------------------------------------------------*/

/* General danger button */
.btn-danger {
  background-color: #cc4b4c !important;
  border-color: #cc4b4c !important;
  color: #ffffff !important;
}

/* Hover/focus/active states */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: #b63d3e !important;
  border-color: #b63d3e !important;
  color: #ffffff !important;
}

/* Outline variant */
.btn-outline-danger {
  color: #cc4b4c !important;
  border-color: #cc4b4c !important;
}

.btn-outline-danger:hover {
  background-color: #cc4b4c !important;
  border-color: #cc4b4c !important;
  color: #ffffff !important;
}

/* Nav contact button override */
.nav-contact-btn {
  background-color: #d63a3a !important;
  border-color: #d63a3a !important;
  color: #ffffff !important;
}

.nav-contact-btn:hover {
  background-color: #bb2e2e !important;
  border-color: #bb2e2e !important;
}

/* ---------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------*/

html, body {
  overflow-y: auto !important;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-body,
.card-body p,
.card-body li {
  color: #555555 !important;
  font-weight: 400;
}

.card-title {
  font-weight: 400;
  color: #000000;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-text {
  margin-top: 15px;
  margin-bottom: 10px !important;
  line-height: 1.6;
}

.brand-highlight {
  color: #cc4b4c !important;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1em;       /* Add spacing above */
  margin-bottom: 1em;    /* Add spacing below */
  line-height: 1.6;
}


.custom-red {
  color: #cc4b4c !important;
}

.description.contact-links a {
  color: #cc4b4c !important;   /* brand red */
  font-weight: 500;            /* brand font weight */
  text-decoration: none;
}

.description.contact-links a:hover {
  color: #cc4b4c !important;   /* no change on hover */
  text-decoration: underline;
}


