/* style/register.css */
:root {
  --primary-color: #0A246A; /* Deep Blue */
  --secondary-color: #F7B32B; /* Bright Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f4f4;
  --border-color: #e0e0e0;
}

.page-register {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
}

/* Fixed Header Offset - desktop and mobile */
.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* HERO Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden; /* Prevent content overflow */
}

.page-register__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-register__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-register__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-register__hero-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light); /* Ensure light text on dark background */
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light); /* Ensure light text on dark background */
}

.page-register__hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for visual balance */
  margin-top: 30px; /* Space between content and image */
}

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