/* style/privacy-policy.css */

/* Variables and general reset for this page, ensuring BEM naming */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1A1A1A;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  /* Body background is #000 (dark) from shared.css, so default text color is light */
  color: var(--text-light);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Ensure main content area also uses dark background */
}

/* Fixed header spacing for desktop */
.page-privacy-policy__hero-section {
  padding-top: 120px; /* Adjust based on actual fixed header height */
  padding-bottom: 60px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-title .highlight {
  color: var(--primary-color);
}

.page-privacy-policy__hero-description {
  font-size: 1.15em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Prevent text wrapping for primary buttons on desktop */
}

.page-privacy-policy__cta-button--primary {
  background: var(--primary-color);
  color: var(--bg-dark); /* Dark text on gold button for contrast */
  border: 2px solid var(--primary-color);
}

.page-privacy-policy__cta-button--primary:hover {
  background: #e0c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-privacy-policy__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-section {
  padding: 80px 20px;
  background-color: var(--bg-light); /* Default light background for content */
  color: var(--text-dark); /* Dark text for light background */
}

.page-privacy-policy__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-privacy-policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  padding-left: 0;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__list li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
  line-height: 1.6;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__image-full {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__image-standard {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-section .page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-privacy-policy__contact-section .page-privacy-policy__contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-privacy-policy__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #e0c200;
  text-decoration: underline;
}

/* CTA Banner */
.page-privacy-policy__cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #f0c000);
  padding: 60px 20px;
  text-align: center;
  color: var(--bg-dark); /* Dark text on gold background for contrast */
}

.page-privacy-policy__cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__cta-banner-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--bg-dark);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-privacy-policy__cta-banner-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333;
}

/* Ensure CTA button in banner is styled correctly */
.page-privacy-policy__cta-banner .page-privacy-policy__cta-button--primary {
  background: var(--bg-dark); /* Dark button on gold banner */
  color: var(--primary-color);
  border: 2px solid var(--bg-dark);
}

.page-privacy-policy__cta-banner .page-privacy-policy__cta-button--primary:hover {
  background: #333333;
  color: #f0c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__cta-banner-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  /* Fixed header spacing for mobile */
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Adjust based on mobile fixed header height */
    padding-bottom: 40px;
  }

  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 300px !important; /* Limit button width for better mobile display */
    margin: 0 auto; /* Center buttons */
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__content-section {
    padding: 50px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 0.95em;
  }

  .page-privacy-policy__image-full,
  .page-privacy-policy__image-standard {
    max-width: 100% !important;
    height: auto !important;
    margin: 30px auto;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__contact-section .page-privacy-policy__contact-list li {
    font-size: 1em;
  }

  .page-privacy-policy__cta-banner {
    padding: 40px 15px;
  }
  .page-privacy-policy__cta-banner-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-banner-description {
    font-size: 1em;
  }
  .page-privacy-policy__cta-banner .page-privacy-policy__cta-button--primary {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Ensure all containers and elements handle overflow on mobile */
  .page-privacy-policy__container,
  .page-privacy-policy__hero-container,
  .page-privacy-policy__cta-banner-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}