/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  color: #f0f0f0; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* General padding for the bottom */
}

/* Hero Section - First content block, needs padding-top for fixed header */
.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(34, 34, 34, 0.9)), url('[GALLERY:privacy:clb88,privacy-policy,hero-background,1920x1080]') no-repeat center center/cover;
  padding: 120px 20px 80px; /* Desktop padding-top for fixed header */
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: var(--primary-color, #FFD700); /* Brand gold color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.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 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-privacy-policy__cta-button--primary {
  background: var(--primary-color, #FFD700);
  color: #1a1a1a; /* Dark text for gold button */
}

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

.page-privacy-policy__cta-button--secondary {
  background: var(--secondary-color, #DC143C);
  color: #ffffff; /* White text for red button */
}

.page-privacy-policy__cta-button--secondary:hover {
  background: #b81032;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: #2a2a2a; /* Slightly lighter dark background for content */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-privacy-policy__content-section--dark-bg {
  background-color: #1a1a1a; /* Darker background for alternating sections */
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--primary-color, #FFD700);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy p {
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-privacy-policy__list strong {
  color: var(--primary-color, #FFD700);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description,
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 1em;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-privacy-policy__content-section {
    padding: 40px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  /* All images must be responsive and not cause horizontal scroll */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Ensure all containers are responsive */
  .page-privacy-policy__container,
  .page-privacy-policy__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__hero-section {
    padding-top: 80px !important; /* Adjust for very small screens if needed */
  }
}