/* privacy-policy.css */
@import url('/fonts.css');
@import url('/tailwind.css');
@import url('/app/global.css');

html, body {
  font-family: var(--font-inter) !important;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.legal-banner-container {
  height: 35vh;
  width: 100%;
  overflow: hidden;
  padding-top: 1.5rem;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14.5%; 
  border-radius: 1rem;
}

.container-privacy-policy {
  max-width: 75vw;
  margin: 0 auto;
  min-height: 100vh;
}

header {
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.content-privacy-policy {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-privacy-policy {
  margin-bottom: 1.5rem;
}

.intro-privacy-policy p {
  font-size: 1rem;
  margin: 0;
  color: black;
  font-weight: 400;
}

/* Table of Contents */
.table-of-contents-privacy-policy {
  margin-bottom: 1.5rem;
}

.table-of-contents-privacy-policy h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.table-of-contents-privacy-policy ul {
  max-width: 18vw;
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-of-contents-privacy-policy li {
  margin-bottom: .625rem;
}

.table-of-contents-privacy-policy a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 15px;
}

.table-of-contents-privacy-policy a:hover {
  text-decoration: none; /* Remove default underline */
  color: inherit; /* Don't let other hover rules affect the bullet */
}

.table-of-contents-privacy-policy a:hover span {
  color: #fe2c55;
  text-decoration: underline;
  text-decoration-color: #fe2c55;
}

/* Sections */
.section-privacy-policy {
  margin-bottom: 1rem;
}

.section-privacy-policy h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.section-privacy-policy h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin: 1rem 0 1rem 0;
}

.section-privacy-policy p {
  color: black;
  font-size: 1rem;
  line-height: 1.7;
}

/* subsections */
.subsection-privacy-policy {
  margin-bottom: 1.5rem;
}

/* Info blocks */
.info-block-privacy-policy {
  color: black;
}

.info-block-privacy-policy p:first-child {
  margin-top: 0;
}

.info-block-privacy-policy p:last-child {
  margin-bottom: 0;
}

.info-block-privacy-policy ul {
  margin: 1rem 0;
  padding-left: 0;
}

.info-block-privacy-policy li {
  color: black;
  margin-bottom: .25rem;
  padding-left: 1rem;
  position: relative;
  list-style: none;
}

.info-block-privacy-policy li:before {
  content: '•';
  color: black;
  font-weight: bold;
  position: absolute;
  left: 0px;
}

.info-block-privacy-policy strong {
  color: black;
  font-weight: 600;
}

/* Links */
a {
  color: #4299e1;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}

/* Contact info */
.contact-info {
  color: black;
}

.contact-info p {
  color: black;
}

/* Footer */
/* footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-nav a {
  padding: 0.5rem 1rem;
  background-color: #4299e1;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  background-color: #2b6cb0;
  transform: translateY(-1px);
  text-decoration: none;
}

.footer-disclaimer {
  color: #718096;
  font-size: 0.9rem;
  margin-top: 20px;
  text-align: center;
} */

/* Responsive Design */

/* Desktop | 1281px - 1440px  */
@media (max-width: 1280px) {
  /* No code needed */
}

/* Medium Laptop/Desktop | 1515px - 1920px */
@media (max-width: 1515px) {
  /* No code needed */
}

/* Small Laptop/Desktop | 1024px - 1280px */
@media (max-width: 1024px) {
  /* No code needed */
}

/* Tablet Portrait (Normal) | 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {

  .legal-banner-container {
    height: 15vh;
  }

  .container-privacy-policy {
    padding: 0rem;
  }
  
  header h1 {
    font-size: 3rem;
  }

  .table-of-contents-privacy-policy ul {
    max-width: 50vw;
  }
  
  .section-privacy-policy {
    margin-bottom: 1.25rem;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Tablet Landscape */
@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) {
  .container-privacy-policy {
    max-width: 85%;
  }

  .table-of-contents-privacy-policy ul {
    max-width: 50vw;
  }
}

/* Mobile Large Portrait | 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) and (orientation: portrait) {
  .container-privacy-policy {
    padding: 0rem;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  .table-of-contents-privacy-policy h2 {
    font-size: 1.5rem;
  }
  
  .section-privacy-policy h2 {
    font-size: 1.5rem;
  }
  
  .section-privacy-policy h3 {
    font-size: 1.1rem;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .footer-nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Mobile Small Portrait | up to 480px */
@media (max-width: 480px) and (orientation: portrait) {

  .legal-banner-container {
    height: 15vh;
  }

  .container-privacy-policy {
    max-width: 90vw;
  }

  .intro-privacy-policy {
    margin-bottom: 1rem;
  }

  .container-privacy-policy {
    padding-top: 3rem;
  }
  
  header {
    padding-bottom: 0rem;
  }

  .table-of-contents-privacy-policy ul {
    max-width: 80vw;
  }
  
  header h1 {
    font-size: 1.75rem;
  }
  
  .last-updated {
    font-size: 0.85rem;
  }
  
  .intro-privacy-policy p {
    font-size: 0.95rem;
  }

  .table-of-contents-privacy-policy li {
    margin-bottom: 0.5rem;
  }
  
  .table-of-contents-privacy-policy h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .table-of-contents-privacy-policy a {
    font-size: 0.9rem;
    padding-left: 10px;
  }
  
  .section-privacy-policy {
    margin-bottom: 1rem;
  }
  
  .section-privacy-policy h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .section-privacy-policy h3 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
  }
  
  .section-privacy-policy p {
    font-size: 0.9rem;
    margin-bottom: 0rem;
  }
  
  .subsection-privacy-policy {
    margin-bottom: 1rem;
  }
  
  .info-block-privacy-policy li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-left: 20px;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-nav a {
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
  }
  
  footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .footer-disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    padding: 0 0.25rem;
  }
}

/* Mobile Small Landscape | up to 950px */
@media (max-width: 950px) and (orientation: landscape) {

  .table-of-contents-privacy-policy ul {
    max-width: 45vw;
  }

  .container-privacy-policy {
    padding-top: 0rem;
  }

  .legal-banner-container
   {
    height: 45vh;
   }
  
  header h1 {
    font-size: 2rem;
  }
  
  .section-privacy-policy {
    margin-bottom: 1rem;
  }
  
  .section-privacy-policy h2 {
    font-size: 1.5rem;
  }
  
  .footer-nav {
    gap: 1rem;
  }
  
  .footer-nav a {
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
  }
}