/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 04 2026 | 04:15:48 */


.hero-section {
  display: flex;
  align-items: center;
  min-height: 85vh; 
  background-color: var(--color-green);
  padding: 4rem 2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Sharp background image layer */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://sibolmccoop.com/wp-content/uploads/2026/05/banner1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Pure overlay layer to ensure high text contrast without any blur */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(46, 114, 47, 0.85) 0%, 
    rgba(20, 40, 21, 0.85) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-title .text-block {
  display: block;
  margin-top: 0.5rem;
}

/* Specific text color classes requested */
.text-white {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.text-gold {
  color: var(--color-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Interactive Modern Button */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2.75rem;
  font-weight: 600;
  border-radius: 99px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background-color: var(--color-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: #ffd24d; 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 179, 38, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive optimization */
@media (min-width: 768px) {
  .hero-section {
    min-height: 75vh;
    padding: 6rem 4rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
}