/* style/original.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-original {
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-original__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

.page-original__light-bg {
  background-color: #111111; /* Card BG for contrast */
}

.page-original__dark-bg {
  background-color: #0A0A0A; /* Background */
}

.page-original__text-contrast-fix {
  color: #FFF6D6; /* Ensure light text on dark backgrounds */
}

/* Containers */
.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Headings */
.page-original__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary color for titles */
  line-height: 1.2;
}

.page-original__sub-title {
  font-size: clamp(1.5em, 3vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #FFD36B; /* Auxiliary color for sub-titles */
}

/* Hero Section */
.page-original__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

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

.page-original__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap slightly with image for design */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-original__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Primary color */
  margin-bottom: 15px;
  line-height: 1.1;
}

.page-original__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-original__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-original__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-original__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #F2C14E; /* Border color */
}

.page-original__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Dark text for filled button */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-original__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-original__btn-small:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.3);
}

/* Content Wrapper with Image */
.page-original__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-original__text-block {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-original__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-original__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
}