/**
 * Rellax Parallax Custom Styles
 * 
 * Ensures parallax background displays correctly
 */

/* Contact Section Parallax Background */
#contact-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-color: #333; /* Fallback color */
}

#contact-section .parallax-bg {
  position: absolute !important;
  top: -100px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 200px) !important;
  z-index: 0 !important;
  will-change: transform;
}

#contact-section .parallax-bg-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay on background */
#contact-section .parallax-bg-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* Ensure content is above background */
#contact-section .contact-content {
  position: relative;
  z-index: 10;
}
