@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@300..700&display=swap");

body {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7)),
    url("Images/dark background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  width: 100%;
  font-family: "Red Rose", serif;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar .nav-links {
  display: flex;
  gap: 20px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav li {
  display: inline;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.navbar .nav-links a:hover {
  background-color: #d0d0d0;
  border-radius: 8px;
}

.drop-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: none;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: white;
  z-index: 30;
}

.policy-container {
  max-width: 900px;
  margin: 70px auto 0;
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  color: white;
  font-family: "Red Rose", serif;
  line-height: 1.9;
}

.policy-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 8px;
}

.policy-updated {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.95;
}

.policy-section {
  margin-top: 18px;
}

.policy-section h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.policy-section p {
  font-size: 18px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 90px;
  margin-bottom: 40px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  font-size: 28px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  border: none;
  outline: none;
}

.social-icons a:hover {
  color: #e6e6e6;
  transform: translateY(-2px);
}

.site-footer {
  text-align: center;
  color: white;
  font-family: "Red Rose", serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.site-footer a {
  color: white;
}

.site-footer a:hover {
  color: #e6e6e6;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

@media screen and (max-width: 900px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 10px;
    width: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.68));
    padding: 20px;
    gap: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    animation: slideDown 0.3s ease forwards;
  }

  .navbar.active {
    display: flex;
  }

  .nav {
    flex-direction: column;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .drop-icon {
    display: block;
    cursor: pointer;
  }

  .policy-container {
    margin: 120px 16px 0;
    padding: 20px 16px;
  }

  .policy-title {
    font-size: 32px;
  }

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

  .policy-section p {
    font-size: 17px;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 120px;
    margin-bottom: 24px;
  }

  .site-footer {
    font-size: 15px;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 901px) {
  .navbar {
    display: flex !important;
  }

  .drop-icon {
    display: none;
  }
}
