/* style/contact.css */

/* Custom properties for colors */
:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #FFFFFF; /* Auxiliary color */
  --text-dark: #333333; /* Dark text for light backgrounds */
  --text-light: #ffffff; /* Light text for dark backgrounds */
  --background-light: #f9f9f9; /* Light background for sections */
  --background-dark: #26A9E0; /* Dark background for sections (using primary color) */
  --button-login-color: #EA7C07; /* Specific color for login buttons */
  --border-color-light: #e0e0e0;
  --form-input-bg: #ffffff;
  --form-input-border: #cccccc;
}

/* Base styles for the contact page content */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for the page */
  background-color: var(--secondary-color); /* Default background, assuming shared.css sets body background */
}

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

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
}

.page-contact__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #4CAF50 100%); /* Example gradient, can be adjusted */
  color: var(--text-light);
  overflow: hidden; /* Prevent image overflow */
}

.page-contact__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above potential background effects */
}

.page-contact__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%; /* Ensure image does not exceed container */
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
}

.page-contact__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-contact__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}}