
.about-hero-section {
  position: relative;
  height: 45vh;
  background: url('assets/tents4.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
  z-index: 2;
}

.about-hero-section .hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding-top: 10vh;
}

.about-hero-section .hero-text h1 {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.about-hero-section .hero-text p {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Contact + About layout */
.about-contact-split {
  background: linear-gradient(to right, #f6f6f6, #e2e2e2);
  padding: 3rem 2rem;
}

.about-panel,
.contact-panel {
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

/* Desktop layout */
@media (min-width: 992px) {
  .about-contact-split {
    display: flex;
    gap: 2rem;
  }

  .about-panel,
  .contact-panel {
    width: 50%;
  }
}

.about-panel {
  padding-bottom: 4rem;
}

.contact-panel .gform_wrapper {
  margin-top: 1rem;
}

/* Purple submit button */
#gform_submit_button_1 {
  background-color: #5a3d9c !important;
  color: #fff !important;
  border: none !important;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#gform_submit_button_1:hover {
  background-color: #4b3282 !important;
}


.about-float-img {
    float: right;
    width: 300px;
    margin: 0 0 1.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: thin solid #4B3282;
}


@media (max-width: 768px) {
  .about-contact-split {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}
