/* style/contact.css */

/* Variables for consistent styling */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #00CED1; /* Turquoise */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1a1a2e; /* From shared.css body background */
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark bg */
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
  --form-bg-dark-mode: rgba(255, 255, 255, 0.05);
  --placeholder-color-dark-mode: #bbbbbb;
  --shadow-dark-mode: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-contact {
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency, though body handles this */
  line-height: 1.7;
}

/* Ensure all images are responsive and do not overflow */
.page-contact img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-dark); /* Dark text for hero section's light gradient background */
  overflow: hidden; /* Prevent content overflow */
}

.page-contact__hero-container {
  display: flex;
  flex-direction: column; /* Default to column for smaller screens */
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-contact__hero-content {
  flex: 1;
  text-align: center;
  max-width: 800px;
}

.page-contact__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-contact__hero-description .highlight {
  font-weight: bold;
  color: #a0522d; /* Sienna, a darker gold/brown for contrast on gradient */
}

.page-contact__hero-image {
  flex: 1;
  max-width: 600px;
}

.page-contact__hero-img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-dark); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-contact__cta-button:hover {
  background: #e6c200; /* Darken primary color */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}