body {
   background-color: rgb(164, 204, 231); /* TEMP TEST */
  }
  
  .page-background {
    background-image: url('../images/bg-iron-patriot-1.jpg');
    background-repeat: repeat;
    background-size: 1000px 1000px;
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: overlay;
  }
  
/* Jumbotron Video Layout */
.video-jumbotron {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-jumbotron video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay Text on Video */
.jumbotron-overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

/* Navbar Floating Over Jumbotron */
.jumbotron-navbar {
  position: absolute;
  top: 25px; /* adjust to float lower/higher */
  left: 0;
  width: 100%;
  z-index: 3;
}

/* Jumbotro-Navbar Brand name (Iron Patriot Fab Works) */
.jumbotron-navbar .navbar-brand {
  color: #ffffff;
  font-weight: bold;
}
/* Brand name hover effect */
.jumbotron-navbar .navbar-brand:hover {
  color: #ffcc00;
}
/* Jumbotron-Navbar Background Color-Verified */
.jumbotron-navbar {
  background-color: #33415c; /* dark steel gray */
}
/* Jumbotron-Navbar Text Color-Verified */
.jumbotron-navbar .navbar-nav .nav-link {
  color: #e0e0e0; /* light gray text */
  transition: color 0.2s ease-in-out;
}
/* Jumbotron-Navbar Hover Colors-Verified */
.jumbotron-navbar .navbar-nav .nav-link:hover,
.jumbotron-navbar .navbar-nav .nav-link:focus {
  color: #ffcc00; /* gold/yellow hover */
  text-decoration: underline;
}
/* Jumbotron-Navbar Navbar dropdown styles */
.jumbotron-navbar .dropdown-menu {
  background-color: #1f1f1f;
}
.jumbotron-navbar .dropdown-item {
  color: #e0e0e0;
}
.jumbotron-navbar .dropdown-item:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Standard-Navbar Background Color-Verified */
.standard-navbar {
  background-color: #33415c; /* dark steel gray */
}
/* Standard-Navbar Text Color-Verified */
.standard-navbar .navbar-nav .nav-link {
  color: #e0e0e0; /* light gray text */
  transition: color 0.2s ease-in-out;
}
/* Standard-Navbar Hover Colors-Verified */
.standard-navbar .navbar-nav .nav-link:hover,
.standard-navbar .navbar-nav .nav-link:focus {
  color: #ffcc00; /* gold/yellow hover */
  text-decoration: underline;
}
/* Standard-Navbar Brand name (Iron Patriot Fab Works) */
.standard-navbar .navbar-brand {
  color: #ffffff;
  font-weight: bold;
}
/* Standard-Navbar Brand name hover effect */
.standard-navbar .navbar-brand:hover {
  color: #ffcc00;
}
/* Standard-Navbar Navbar dropdown styles */
.standard-navbar .dropdown-menu {
  background-color: #1f1f1f;
}
.standard-navbar .dropdown-item {
  color: #e0e0e0;
}
.standard-navbar .dropdown-item:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Collapsed mobile menu dropdown background */
.navbar-dark .navbar-collapse {
  background-color: #f5f5dc; /* dark steel gray */
}

/* Custom hamburger icon color (cream) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23f5f5dc' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Optional: make dropdown items more visible on mobile */
.navbar-dark .navbar-nav .nav-link {
  color: #f5f5dc !important; /* cream */
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: orange !important;
}

/* Markets Served Section */
.markets-strip {
  background-color: #33415c;           /* background */
  color: #fff;                      /* text */
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

.markets-strip h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.markets-strip .row > div {
  font-weight: 500;
  font-size: 1.25rem;
}

.custom-card {
  background-color: #F2F2F2; /* light gray background */
  backdrop-filter: blur(2px);
  border: 1px solid #ddd;
  padding: 1rem 0.5rem;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; /* controls spacing between label and image */
}

.image-wrapper {
  flex: 1;
  overflow: hidden;
}

.fixed-card-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  margin-bottom: 1rem;
}

/* Corrects Mobile-Vesion Image Crop */
.image-wrapper {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;  /* make sure image isn't clipped */
}

/* Adjusts buffer spacing between text and action button */
.card-body {
  padding-bottom: 2rem; /* or try 3rem if needed */
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-right: 0.5rem;
  padding-top: 0.5rem;
}

.quote-btn {
  background-color: #c62828;  /* deep red */
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.quote-btn:hover,
.quote-btn:focus {
  background-color: #8e0000;  /* darker red */
  color: #fff;
  text-decoration: none;
}

.custom-btn {
  background-color: #004080;     /* button background */
  color: #ffffff;                /* button text */
  border: none;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #002b5c;     /* darker on hover */
  color: #ffffff;
}

.gallery-image {
  width: 100%;
  height: 250px;               /* fixed uniform height */
  object-fit: cover;           /* crop to fill space cleanly */
  display: block;
}

.site-footer {
  background-color: #33415c;     /* Change to desired background color */
  color: #f0f0f0;             /* Change to desired text color */
}

.site-footer a {
  color: #ffc107;             /* Optional: style footer links if any */
  text-decoration: none;
}

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

/* Center Headr Style */
.center-page-header {
  background-color: #33415c; /* dark steel gray */
  color: #f5f5dc; /* cream */
  padding: 3rem 1rem;
}

.center-page-header h2,
.center-page-header p {
  color: #f5f5dc;
}

/* About Us Center-Page Banner Colors */
.center-page-header {
  background-color: #5e6777;       /* Dark steel gray */
  color: #f5f5dc;                   /* Cream */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.center-page-header h2,
.center-page-header p {
  color: #f5f5dc;                   /* Ensure text inside also turns cream */
}


/* Debug Line-Holds Drop-Downs Open */
/* .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
} */

