/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-contact__contact-info {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-contact__info-item {
  font-size: 1.1em;
  color: #ffffff;
}

.page-contact__info-item a {
  color: #FFFF00; /* Yellow for contact links */
  text-decoration: none;
  font-weight: bold;
}

.page-contact__info-item a:hover {
  text-decoration: underline;
}

.page-contact__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Red for primary action button */
  color: #FFFF00; /* Yellow text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
  background-color: #a00606;
  border-color: #FFFF00;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 1;
}

/* Section Titles and Descriptions */
.page-contact__section-title {
  font-size: 2.5em;
  color: #ffffff; /* White text on dark body */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}