/* style/index.css */

/* Custom properties for colors from the prompt */
:root {
  --primary-color: #26A9E0; /* Main color: light blue */
  --secondary-color: #FFFFFF; /* Auxiliary color: white */
  --login-color: #EA7C07; /* Login button specific color */
  --black-color: #000000;
  --text-dark: #333333;
  --text-light: #f0f0f0;
  --border-color: #e0e0e0;
}

/* Ensure body background is consistent with shared.css and text color is chosen smartly */
.page-index {
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--secondary-color); /* Matches the body background from shared.css */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

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

/* HERO Main Image Area */
.page-index__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); /* Ensures content is not hidden by fixed header */
  background-color: var(--primary-color); /* Using primary color as background for hero */
  color: var(--text-light); /* Light text on primary darkish background */
}

.page-index__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-index__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-index__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: var(--secondary-color); /* White text for main title */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-index__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  color: var(--text-light); /* Light text for description */
  opacity: 0.9;
}

.page-index__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index__cta-button--primary {
  background: var(--login-color); /* Specific login color for primary CTA */
  color: var(--secondary-color);
  border: 2px solid var(--login-color);
}

.page-index__cta-button--primary:hover {
  background: #D46C00; /* Darken on hover for visual feedback */
  border-color: #D46C00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-index__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}