/* ======================
   POLICIES PAGE STYLES
   ====================== */

.policies-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 15, 5, 0.5) 100%);
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
  margin-top: 60px;
}

.policies-hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
  position: relative;
}

.policies-hero-title {
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.policies-hero-subtitle {
  font-size: 18px;
  color: #b0b0b0;
  font-weight: 500;
}

/* ======================
   POLICY NAVIGATION
   ====================== */

/* The policy navigation should not stick to the top of the viewport.  */
.policy-nav {
  position: relative;
  top: auto;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
  padding: 15px 20px;
  z-index: 500;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.policy-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 6px;
}

.policy-nav-link:hover {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
}

/* ======================
   POLICIES SECTION
   ====================== */

.policies-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(26, 15, 5, 0.3) 100%);
}

/* Ensure policy content is visible immediately without requiring scroll triggers. */
.policies-container {
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: none;
}

.policies-container.show {
  /* The show class is kept for compatibility but without animation */
  opacity: 1;
  transform: none;
  transition: none;
}

.policies-intro {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 165, 0, 0.05);
  border-left: 4px solid #ffa500;
  border-radius: 8px;
}

.policy-heading {
  font-size: 22px;
  font-weight: 800;
  color: #ffa500;
  margin-top: 35px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 165, 0, 0.2);
}

.policies-container p {
  font-size: 15px;
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.policies-container strong {
  color: #ffa500;
  font-weight: 700;
}

.policy-contact-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.policy-contact-list li {
  font-size: 15px;
  color: #c0c0c0;
  margin-bottom: 12px;
}

.policy-contact-list a {
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-contact-list a:hover {
  color: #ffb319;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

@media (max-width: 768px) {
  .policies-hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }

  .policies-hero-title {
    font-size: 28px;
  }

  .policies-hero-subtitle {
    font-size: 16px;
  }

  .policy-nav {
    /* Remove sticky positioning on small screens */
    top: auto;
    gap: 10px;
    padding: 12px 15px;
  }

  .policy-nav-link {
    font-size: 12px;
    padding: 4px 8px;
  }

  .policies-section {
    padding: 40px 15px;
  }

  .policies-container {
    max-width: 100%;
  }

  .policy-heading {
    font-size: 18px;
    margin-top: 25px;
  }

  .policies-container p {
    font-size: 14px;
  }

  .policy-contact-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .policies-hero {
    padding: 80px 15px 30px;
  }

  .policies-hero-title {
    font-size: 24px;
  }

  .policies-hero-subtitle {
    font-size: 14px;
  }

  .policy-nav {
    flex-direction: column;
    gap: 8px;
  }

  .policy-nav-link {
    display: block;
    text-align: center;
    font-size: 13px;
  }

  .policies-section {
    padding: 30px 15px;
  }

  .policy-heading {
    font-size: 16px;
  }

  .policies-intro {
    font-size: 14px;
    padding: 15px;
  }

  .policies-container p {
    font-size: 13px;
  }

  .policy-contact-list li {
    font-size: 13px;
  }
}
