/* style/original.css */

:root {
  --luckycola-primary: #F2C14E;
  --luckycola-secondary: #FFD36B;
  --luckycola-card-bg: #111111;
  --luckycola-background: #0A0A0A;
  --luckycola-text-main: #FFF6D6;
  --luckycola-border: #3A2A12;
  --luckycola-glow: #FFD36B;
  --luckycola-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-original {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--luckycola-text-main); /* Default text color for dark background */
  background-color: var(--luckycola-background); /* Ensure consistent background */
}

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

.page-original__section-padding {
  padding: 80px 0;
}

/* HERO Section */
.page-original__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Desktop padding to clear fixed header */
  background-color: var(--luckycola-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Aspect ratio 16:9 for 1200x675 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-original__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-original__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over the image, but not *on* it */
  background: rgba(17, 17, 17, 0.85); /* Semi-transparent dark background for text */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%); /* Visually center over the bottom of the image */
  margin-bottom: -100px; /* Adjust for the transform */
}

.page-original__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--luckycola-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-original__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--luckycola-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* General Section Titles */
.page-original__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--luckycola-secondary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-original__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--luckycola-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-original__text-block {
  font-size: 1.1rem;
  color: var(--luckycola-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

.page-original__highlight-text {
  color: var(--luckycola-secondary);
  font-weight: bold;
}

.page-original__inline-link {
  color: var(--luckycola-primary);
  text-decoration: underline;
}

.page-original__inline-link:hover {
  color: var(--luckycola-secondary);
}