/* css/style.css - simple styling overrides */

:root{
  --brand: #0d6efd;
    margin: 0;
    padding: 0;
}

/* Hero area uses background image (replace with your image if preferred) */
.hero22 {
  background: linear-gradient(0deg, rgba(13,110,253,0.85), rgba(13,110,253,0.85)), url('../images/placeholder.jpg') center/cover no-repeat;
  min-height: 380px;
}

/* Site footer small tweaks */
.site-footer a { text-decoration: none; }
.site-footer h5, .site-footer h6 { color: #fff; }
.site-footer p, .site-footer li { color: #ccc; }

/* Basic responsive helpers */
@media (max-width: 576px){
  .hero { padding: 3rem 1rem; }
  .hero .display-4 { font-size: 1.8rem; }
}

/* Shrink logo on small screens */
@media (max-width: 576px) {
  .navbar-logo {
    height: 50px;
    width: 50px;
  }
}

    /* Navbar logo size */
.navbar-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

    /* Jumbotron background image */
    .hero {
      background: url("../images/jumbotron-bg.gif") no-repeat center center;
      background-size: cover;
      min-height: 500px; /* adjust height as needed */
    }

.hero2 {
  background: url("../images/service-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 60vh; /* 60% of screen height */
}


.hero3 {
  background: url("../images/service-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 550px;
  display: flex;
  align-items: flex-start; /* align content to top */
  justify-content: flex-start; /* align content to left */
  padding: 2rem; /* space from edges */
}

    /* Footer logo size */
    .footer-logo {
      height: 80px;
      width: 80px;
      object-fit: contain;
    }

//

/* Logo shrink on mobile */
.navbar-logo {
  height: 50px;
  transition: height 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 35px;
  }
}

/* Make all nav links same font & align */
.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: white !important;
}

/* Special style for the "Get in Touch" link to look like a button but stay aligned */
.navbar-nav .contact-link {
  border: 1px solid white;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .contact-link:hover {
  background-color: white;
  color: black !important;
}

.card {
  border: 1px solid orange;
}

    .btn-primary {
        background-color: #ffffff; /* Example: Red background */
        border-color: orange;   /* Example: Darker red border */
        color: #000000;         /* Example: White text */
    }

    .btn-primary:hover {
        background-color: orange;
        border-color: orange;
    }

    .btn-primary:active,
    .btn-primary:focus {
        background-color: orange;
        border-color: orange;
    }
