/* Privacy Policy Page Styles */

/* Content Section */
.privacy-content {
  background-color: #cac5bc;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px;
}

.privacy-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Policy Text */
.privacy-text {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  font-family: "Cinzel", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 0 0 50px 0;
  line-height: 1.2;
  text-align: left;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 35px;
}

.policy-section h2 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.policy-section p {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  font-weight: 400;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Email Link */
.email-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid #1a1a1a;
}

.email-link:hover {
  color: #6a6560;
  border-bottom-color: #6a6560;
}

/* Policy Lists */
.policy-list {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.policy-list li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

/* Last Updated */
.last-updated {
  font-family: "Crimson Text", serif;
  font-size: 15px;
  font-style: italic;
  color: #6a6560;
  margin-bottom: 40px;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
  .privacy-content {
    padding: 80px 60px;
  }

  .privacy-title {
    font-size: 44px;
    margin-bottom: 45px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section p,
  .policy-list {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .privacy-content {
    padding: 70px 50px;
  }

  .privacy-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .privacy-container {
    max-width: 1000px;
  }

  .privacy-text {
    max-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  .privacy-content {
    padding: 60px 40px;
    min-height: calc(100vh - 60px);
  }

  .privacy-title {
    font-size: 36px;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
  }

  .privacy-text {
    max-width: 700px;
  }

  .policy-section h2 {
    font-size: 19px;
  }

  .policy-section p,
  .policy-list {
    font-size: 15px;
  }

  .policy-section {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .privacy-content {
    padding: 50px 30px;
  }

  .privacy-title {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .privacy-text {
    max-width: 100%;
  }

  .policy-section {
    margin-bottom: 25px;
  }

  .policy-section h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .policy-section p,
  .policy-list {
    font-size: 14px;
    line-height: 1.7;
  }

  .last-updated {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .privacy-content {
    padding: 40px 24px;
  }

  .privacy-title {
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
  }

  .policy-section {
    margin-bottom: 20px;
  }

  .policy-section h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .policy-section p,
  .policy-list {
    font-size: 13px;
    line-height: 1.6;
  }

  .policy-list {
    padding-left: 20px;
  }

  .last-updated {
    font-size: 13px;
    margin-bottom: 25px;
  }
}

/* Animation for page load */
.privacy-content {
  animation: fadeIn 0.8s ease-out;
}

.privacy-title {
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.last-updated {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.policy-section {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.policy-section:nth-child(3) {
  animation-delay: 0.4s;
}

.policy-section:nth-child(4) {
  animation-delay: 0.5s;
}

.policy-section:nth-child(5) {
  animation-delay: 0.6s;
}

.policy-section:nth-child(6) {
  animation-delay: 0.7s;
}

.policy-section:nth-child(7) {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selection styling */
::selection {
  background-color: #8a8175;
  color: #ffffff;
}

::-moz-selection {
  background-color: #8a8175;
  color: #ffffff;
}

/* Print styles */
@media print {
  .privacy-content {
    padding: 20px;
    background-color: white;
  }

  .policy-section p,
  .policy-list {
    color: black;
  }

  .email-link {
    color: black;
    border-bottom: none;
    text-decoration: underline;
  }
}
