/* style/privacy-policy.css */

/* Custom properties for colors from the prompt */
:root {
  --bingoplus-primary-color: #F2C14E;
  --bingoplus-secondary-color: #FFD36B;
  --bingoplus-card-bg: #111111;
  --bingoplus-background: #0A0A0A;
  --bingoplus-text-main: #FFF6D6;
  --bingoplus-border-color: #3A2A12;
  --bingoplus-glow-color: #FFD36B;
  --bingoplus-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--bingoplus-text-main); /* Light text on dark body background */
  background-color: var(--bingoplus-background); /* Body background from shared.css, but ensuring consistency */
}

/* Ensure content is not too wide */
.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add horizontal padding for smaller screens */
  box-sizing: border-box;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  background: var(--bingoplus-background); /* Use the main background color */
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Desktop: Ensure content is below fixed header */
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-privacy-policy__hero-content {
  max-width: 800px;
  margin-top: 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: bold;
  color: var(--bingoplus-primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--bingoplus-text-main);
}

/* Buttons */
.page-privacy-policy__btn-primary {
  display: inline-block;
  background: var(--bingoplus-btn-gradient);
  color: #ffffff; /* White text on golden button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-privacy-policy__content-area {
  padding: 40px 0;
}

.page-privacy-policy__dark-section {
  background-color: var(--bingoplus-card-bg); /* Darker background for alternating sections */
  color: var(--bingoplus-text-main);
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--bingoplus-primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  color: var(--bingoplus-secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__content-area p {
  margin-bottom: 15px;
  color: var(--bingoplus-text-main);
}

.page-privacy-policy__content-area ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--bingoplus-text-main);
}

.page-privacy-policy__content-area li {
  margin-bottom: 8px;
  color: var(--bingoplus-text-main);
}

.page-privacy-policy__content-area a {
  color: var(--bingoplus-secondary-color); /* Use a brand color for links */
  text-decoration: underline;
}

.page-privacy-policy__content-area a:hover {
  color: var(--bingoplus-primary-color);
}

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 25px auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: Adjust padding-top for fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

  .page-privacy-policy__section-title {
    font-size: clamp(1.8em, 7vw, 2em);
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.3em, 5vw, 1.5em);
  }

  /* Images responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Content containers responsiveness */
  .page-privacy-policy__content-area,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__dark-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsiveness */
  .page-privacy-policy__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__hero-content .page-privacy-policy__btn-primary {
    margin-top: 20px;
  }
}