/* style/affiliate-program.css */

/* Base styles for the affiliate program page */
.page-affiliate-program {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main for general content, assuming dark body background */
  background-color: #0A0A0A; /* Specific background for sections, overriding body for content area */
  padding-top: 10px; /* Small top padding for the first section, body padding-top handles header offset */
}

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

/* Hero Section */
.page-affiliate-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
  background-color: #0A0A0A; /* Match general background */
}

.page-affiliate-program__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-affiliate-program__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-affiliate-program__hero-content {
  position: relative; /* Not absolute, to be below the image */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 30px; /* Space between image and text */
}

.page-affiliate-program__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Main color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-affiliate-program__hero-description {
  font-size: 1.2rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-affiliate-program__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-affiliate-program__btn-primary,
.page-affiliate-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Include padding in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

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