/* style/privacy-policy.css */

/* General page styles, ensuring text color contrasts with body background (#0A0A0A) */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
}

/* Ensure no double padding from shared.css */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per requirements, body handles --header-offset */
  background-color: #0A0A0A; /* Ensure consistent background for the section */
}

.page-privacy-policy__hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  color: #F2C14E; /* Primary brand color for title */
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 does not overflow */
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main color */
  margin-bottom: 30px;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Background color */
  box-sizing: border-box;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FFD36B; /* Auxiliary brand color for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main color */
}

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

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

.page-privacy-policy__list-item strong {
  color: #F2C14E; /* Primary brand color for emphasis */
}

.page-privacy-policy__image-content {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 800px; /* Max width for content images */
}

.page-privacy-policy__link {
  color: #F2C14E; /* Primary brand color for links */
  text-decoration: underline;
}

.page-privacy-policy__link:hover {
  color: #FFD36B; /* Auxiliary brand color on hover */
}

.page-privacy-policy__cta-block {
  background: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-privacy-policy__cta-text {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main color */
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for button */
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%); /* Slightly reversed gradient on hover */
}

.page-privacy-policy__last-updated {
  text-align: right;
  font-size: 0.9em;
  color: #FFD36B; /* Auxiliary brand color for date */
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em); /* Smaller H1 on mobile */
    line-height: 1.1;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__cta-text {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure all containers with images are responsive */
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .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;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.5em, 9vw, 2em); /* Even smaller H1 on very small screens */
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
}