/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  background-color: var(--bg-color, #0A0A0A); /* Fallback to custom color if --bg-color is not defined */
  color: #FFF6D6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-privacy-policy__keyword {
  color: #FFD36B; /* Highlight attachment keyword */
  font-weight: bold;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Minimum height for large screens */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #F2C14E; /* Brand color for main title */
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Subtle glow */
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Area */
.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Ensure consistent dark background for main content */
}

.page-privacy-policy__section-wrapper {
  background-color: #111111; /* Card BG color for content sections */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.5em);
  color: #F2C14E;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-privacy-policy__paragraph {
  font-size: 1.05em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-privacy-policy__list-item strong {
  color: #FFD36B; /* Auxiliary color for strong text */
}

.page-privacy-policy__image-inline {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border color */
}

.page-privacy-policy__link {
  color: #FFD36B; /* Link color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #F2C14E; /* Hover effect */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-image-wrapper {
    max-height: 400px;
  }
  .page-privacy-policy__hero-image {
    min-height: 250px;
  }
  .page-privacy-policy__section-wrapper {
    padding: 30px;
  }
}

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

  .page-privacy-policy__hero-section {
    padding: 10px 0 40px;
  }
  .page-privacy-policy__hero-image-wrapper {
    max-height: 300px;
  }
  .page-privacy-policy__hero-image {
    min-height: 200px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(2em, 7vw, 2.8em);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(1em, 2.5vw, 1.1em);
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__section-wrapper {
    padding: 25px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure hero-image-wrapper also respects padding for smaller screens if needed */
  .page-privacy-policy__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* No video section on this page, but if it were, it would get this padding-top */
  .page-privacy-policy__video-section {
    padding-top: 10px !important; /* Example for video section if present */
  }
}