/* =========================================================
   Street Level FM - Site Styles
   Order: Variables → Global/Typography → Layout Blocks → Components → Footer → Utilities/Media
========================================================= */

/* -------------------------
   1) Variables
-------------------------- */
:root{
  --sl-blue: #0b2b4a;
  --sl-muted: #6c757d;
  --sl-yellow: #ffe600;
  --sl-black: #000;
}

/* -------------------------
   2) Global / Typography
-------------------------- */
/* Hero text + navbar type styling (per notes) */
.hero h1,
.hero .lead,
.navbar{
  font-family: "Roboto Slab", serif;
  font-weight: 400 !important;
}


h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Roboto Slab", serif;
  font-weight: 400 !important;
}

/* Uppercase nav links */
.nav-link{
  text-transform: uppercase;
  font-weight: 400 !important;
}

/* Generic section title helper */
.section-title{
  letter-spacing: .02em;
}

/* -------------------------
   3) Header / Top Bar
-------------------------- */
.sl-topbar{
  background: var(--sl-black);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: .95rem;
}
.sl-topbar a{
  color: #fff;
  text-decoration: none;
}

.sl-logo{

  height: auto;
  width: 240px;
    max-width:100%;
  display: block;
  margin: 1rem 0;

}

.call-text {
  display: flex;
  align-items: center;
}

.call-right {
  margin-left: auto;
  text-align: right;
}

.fb-link {
  background: #007cff;
  padding: 5px 12px;
}


/* -------------------------
   4) Primary Navigation
-------------------------- */
.sl-navbar{
  background: var(--sl-yellow);
  border-bottom: 2px solid rgba(0,0,0,.25);
}
.sl-navbar .nav-link{
  color: #111;
  letter-spacing: .01em;
}
.sl-navbar .nav-link:hover{
  color: #000;
  text-decoration: underline;
}

/* -------------------------
   5) Hero
-------------------------- */
.hero{
  position: relative;
  background: var(--sl-blue);
  color: #fff;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.15)),
    url("/images/branding-bg.jpg") center/cover no-repeat;
  opacity: .95;
}
.hero > .container{
  position: relative;
  z-index: 2;
}

.hero-placeholder-slider{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 18px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.85);
}

/* -------------------------
   6) Home Blocks
-------------------------- */
.sl-home-block{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-top: 4px solid #000;
  border-radius: 0;
  padding: 22px;
  height: 100%;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.06);
}
.sl-home-block h2{
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

/* -------------------------
   7) Mini Slider (Carousel)
-------------------------- */
.sl-mini-slider{
  max-width: 520px; /* adjust to taste */
}

.sl-mini-slider .carousel{
  border: 3px solid #fff;
  border-radius: 6px;
  overflow: hidden;
  background: #000; /* prevents transparent edges */
}

.sl-mini-slider img{
  display: block;
  width: 100%;
  height: auto;
}

/* Arrows hidden until hover */
.sl-mini-slider .carousel-control-prev,
.sl-mini-slider .carousel-control-next{
  opacity: 0;
  transition: opacity .15s ease-in-out;
}
.sl-mini-slider:hover .carousel-control-prev,
.sl-mini-slider:hover .carousel-control-next{
  opacity: 1;
}





/* Keep arrows usable on mobile (no hover) */
@media (hover: none){
  .sl-mini-slider .carousel-control-prev,
  .sl-mini-slider .carousel-control-next{
    opacity: 1;
  }
}

/* Dots at bottom (display-only) */
.sl-mini-slider .carousel-indicators{
  margin-bottom: 12px;
  pointer-events: none; /* disables clicking; purely visual */
}
.sl-mini-slider .carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* -------------------------
   8) News
-------------------------- */
.news-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

/* -------------------------
   9) Footer
-------------------------- */
footer{
  background: #0f1720;
  color: rgba(255,255,255,.8);
}
footer a{
  color: rgba(255,255,255,.9);
}
.footer-logo{
  height: 46px;
  width: auto;
}