/* style/original.css */

/* Variables (if needed, otherwise directly use custom colors) */
:root {
  --rich9-primary: #F2C14E;
  --rich9-secondary: #FFD36B;
  --rich9-bg-dark: #0A0A0A; /* Background */
  --rich9-card-bg: #111111; /* Card BG */
  --rich9-text-main: #FFF6D6; /* Text Main */
  --rich9-border: #3A2A12; /* Border */
  --rich9-glow: #FFD36B; /* Glow */
  --rich9-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-original {
  background-color: var(--rich9-bg-dark); /* Assuming body background is dark from shared.css */
  color: var(--rich9-text-main); /* Text main color for general content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

/* --- Hero Section --- */
.page-original__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--rich9-bg-dark);
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-original__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-original__hero-content-wrapper {
  width: 100%;
  background-color: var(--rich9-card-bg);
  padding: 40px 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--rich9-border);
  border-top: none;
  position: relative;
  z-index: 2;
  margin-top: -50px; /* Slight pull-up, but content does not overlap image's visible rectangle */
}