/* style/support.css */

/* Body background is #1a1a2e (dark), so main text color should be light */
.page-support {
  color: #ffffff; /* Light text for readability on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #1a1a2e; /* Dark background for hero */
  color: #ffffff;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__main-title {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  /* Use clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive H1 font size */
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-support__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

/* General Button Styles */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-tertiary,
.page-support__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-support__btn-primary {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-support__btn-primary:hover {
  background-color: #005f2f;
  border-color: #005f2f;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-support__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-support__btn-tertiary {
  background-color: #C30808; /* Custom color for register/login type buttons */
  color: #FFFF00; /* Custom font color for register/login type buttons */
  border: 2px solid #C30808;
}

.page-support__btn-tertiary:hover {
  background-color: #a00606;
  border-color: #a00606;
  color: #fff; /* Ensure hover color has good contrast */
}

.page-support__btn-link {
  background-color: transparent;
  color: #017439;
  border: none;
  padding: 8px 15px;
  text-decoration: underline;
}

.page-support__btn-link:hover {
  color: #005f2f;
}

/* Sections */
.page-support__contact-methods,
.page-support__faq-section,
.page-support__account-management,
.page-support__payment-support,
.page-support__technical-support,
.page-support__responsible-gaming,
.page-support__final-cta {
  padding: 80px 0;
}

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

/* Dark background sections */
.page-support__dark-section {
  background-color: #017439; /* Primary brand color as dark background */
  color: #ffffff;
}
.page-support__dark-section .page-support__section-title {
  color: #ffffff;
}
.page-support__dark-section .page-support__section-intro {
  color: #f0f0f0;
}
.page-support__dark-section .page-support__card-title {
  color: #ffffff;
}
.page-support__dark-section .page-support__card-description {
  color: #e0e0e0;
}
.page-support__dark-section .page-support__contact-card {
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent dark for cards on dark section */
}

/* Light background sections */
.page-support__light-bg {
  background-color: #2a2a4a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}
.page-support__light-bg .page-support__section-title {
  color: #ffffff;
}
.page-support__light-bg .page-support__section-intro {
  color: #f0f0f0;
}
.page-support__light-bg .page-support__card-title {
  color: #ffffff;
}
.page-support__light-bg .page-support__card-description {
  color: #e0e0e0;
}