/* style/original.css */
.page-original {
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-color); /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-original__hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 0; /* Handled by .page-original */
}

.page-original__hero-carousel {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  overflow: hidden;
}

.page-original__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-original__hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.page-original__hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-original__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.page-original__hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-original__hero-dot.active {
  background-color: #FFD36B;
}

.page-original__hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
  background: var(--card-bg-color); /* Using card background for contrast */
  color: var(--text-main-color);
}

.page-original__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--glow-color); /* Using glow color for main title */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-original__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-main-color);
}

.page-original__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-original__btn-primary,
.page-original__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-original__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-original__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-original__btn-secondary {
  background: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--border-color);
}

.page-original__btn-secondary:hover {
  background: var(--border-color);
  color: #111111;
}

.page-original__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--glow-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-original__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--glow-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-original__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-original__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-original__grid-2-cols.page-original__feature-row--reverse {
  grid-template-areas: 'image text';
}

.page-original__grid-2-cols.page-original__feature-row--reverse .page-original__image-wrapper {
  grid-area: image;
}