<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet">

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;
}
/* Navbar background and text colors */
.jumbotron-navbar {
  background-color: #33415c; /* dark steel gray */
}

/* Navbar colors */
.jumbotron-navbar .navbar-nav .nav-link {
  color: #e0e0e0; /* light gray text */
  transition: color 0.2s ease-in-out;
}

.jumbotron-navbar .navbar-nav .nav-link:hover,
.jumbotron-navbar .navbar-nav .nav-link:focus {
  color: #ffcc00; /* gold/yellow hover */
  text-decoration: underline;
}

/* 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;
}

/* 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;
}

/* 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: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 1rem;
}

/* 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;
}


