/* style/privacy-policy.css */

/* Variables */
:root {
  --manclub-primary-color: #26A9E0;
  --manclub-secondary-color: #FFFFFF;
  --manclub-login-color: #EA7C07;
  --manclub-dark-text: #333333;
  --manclub-light-text: #FFFFFF;
  --manclub-bg-light: #F8F8F8;
  --manclub-bg-dark: #1A1A1A; /* Assuming --dark-bg-1 is a dark color, using a placeholder */
}

/* Base styles for the privacy-policy page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--manclub-light-text); /* Default text color for dark body background */
  background-color: var(--manclub-bg-dark); /* Assuming body background is dark */
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--manclub-primary-color);
  min-height: 500px;
}

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  display: block;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--manclub-light-text);
}

.page-privacy-policy__main-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--manclub-light-text);
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-privacy-policy__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--manclub-light-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: var(--manclub-login-color);
  color: var(--manclub-light-text);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.page-privacy-policy__btn-primary:hover {
  background-color: darken(var(--manclub-login-color), 10%); /* Placeholder for darken function */
  transform: translateY(-2px);
}

/* Content Area */
.page-privacy-policy__content-area {
  background-color: var(--manclub-secondary-color); /* Light background for main content */
  color: var(--manclub-dark-text);
  padding: 60px 20px;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--manclub-primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-privacy-policy__subsection-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--manclub-dark-text);
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-privacy-policy__text-block {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--manclub-dark-text);
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--manclub-dark-text);
}

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

.page-privacy-policy__list-item strong {
  color: var(--manclub-primary-color);
}

.page-privacy-policy__content-area a {
  color: var(--manclub-primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.page-privacy-policy__content-area a:hover {
  text-decoration: none;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  background-color: var(--manclub-primary-color);
  color: var(--manclub-light-text);
  padding: 60px 20px;
  text-align: center;
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
  color: var(--manclub-light-text);
  margin-bottom: 40px;
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-privacy-policy__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--manclub-light-text);
}

.page-privacy-policy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-privacy-policy__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--manclub-light-text);
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-privacy-policy__description {
    font-size: 1rem;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8rem;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.5rem;
  }
}

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

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-privacy-policy__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__text-block, 
  .page-privacy-policy__list-item {
    font-size: 1rem;
  }

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

  .page-privacy-policy__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-privacy-policy__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }

  /* Image responsive rules */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__section-container,
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-privacy-policy__btn-primary {
    width: 100%;
  }
}