/* Banner Styles for showproducts.php - Match products.php banner styles */

/* Banner Section Styles - Matching products.php */
.banner-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Primary color overlay - matching products.php */
.bg-primary-overlay {
  background-color: rgba(0, 71, 107, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 600px;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeUp 1s ease;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
  animation: fadeUp 1s ease 0.2s both;
}

/* Button styles - matching products.php */
.banner-content .btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.banner-content .btn-primary {
  background-color: var(--color-primary, #00476b);
  color: white;
  border: 2px solid var(--color-primary, #00476b);
}

.banner-content .btn-primary:hover {
  background-color: #003452;
  border-color: #003452;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.banner-content .btn-secondary {
  background-color: white;
  color: var(--color-primary, #00476b);
  border: 2px solid var(--color-primary, #00476b);
}

.banner-content .btn-secondary:hover {
  background-color: rgba(0, 71, 107, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Special hover effect for quote button - matching products.php */
#quote-btn:hover {
  background-color: rgba(0, 71, 107, 0.5) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design - matching products.php */
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .banner-section {
    height: 500px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  .banner-content .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: 400px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
}