/* style/payment-methods.css */
/* Base styles and variables */
:root {
  --winph99-primary: #F2C14E;
  --winph99-secondary: #FFD36B;
  --winph99-card-bg: #111111;
  --winph99-background: #0A0A0A;
  --winph99-text-main: #FFF6D6;
  --winph99-border: #3A2A12;
  --winph99-glow: #FFD36B;
  --winph99-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 120px; /* Default desktop offset */
}

.page-payment-methods {
  font-family: Arial, sans-serif;
  color: var(--winph99-text-main); /* Main text color for dark body background */
  background-color: var(--winph99-background); /* Explicit background for main content */
  line-height: 1.6;
  font-size: 1rem;
}

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

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  background: var(--winph99-background); /* Should match body background */
  padding-top: var(--header-offset); /* Fixed header spacing */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Ensure no image overflow */
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height of hero image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.7); /* Slightly darken image for text readability, not changing color */
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2; /* Ensure content is above image */
  padding-bottom: 20px; /* Ensure content is not too close to the bottom */
  max-width: 800px;
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  color: var(--winph99-primary);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-payment-methods__hero-description {
  font-size: 1.15rem;
  color: var(--winph99-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}