/* style/original.css */

/* Base styles for the page content */
.page-original {
  background-color: #0A0A0A; /* Custom background color */
  color: #FFF6D6; /* Custom main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

.page-original__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-original__section-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive H2 font size */
  color: #F2C14E; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-original__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Main text color */
}

/* Buttons */
.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  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%); /* Custom button gradient */
  color: #000000; /* Dark text for contrast on bright gradient */
  border: 2px solid #FFD36B;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-original__btn-primary:hover {
  background: linear-gradient(180deg, #FFE08A 0%, #E6AE2A 100%);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
  transform: translateY(-2px);
}

.page-original__btn-secondary {
  background-color: transparent;
  color: #FFD36B; /* Custom glow color for text */
  border: 2px solid #FFD36B; /* Custom glow color for border */
}

.page-original__btn-secondary:hover {
  background-color: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-original__btn-text {
  color: #FFD36B; /* Custom glow color for text */
  border: none;
  padding: 0;
  margin-top: 15px;
  display: block;
  text-align: left;
}

.page-original__btn-text:hover {
  text-decoration: underline;
  color: #FFE08A;
}

.page-original__centered-cta {
  text-align: center;
  margin-top: 50px;
}

/* Hero Section */
.page-original__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-original__hero-video-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-original__hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure video covers area */
}

.page-original__hero-video-link {
  display: block;
  cursor: pointer;
}

.page-original__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  z-index: 1; /* Ensure content is above video if any overlap */
}

.page-original__hero-title {
  font-size: clamp(2.5em, 5vw, 4em); /* H1 responsive font size */
  color: #F2C14E; /* Primary brand color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-original__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Main text color */
  margin-bottom: 30px;
}

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