/* Shared styles for kletter.app landing + privacy pages */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b8ea5 0%, #52b788 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: #ffffff;
}

/* Index (landing) */
.container {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.logo {
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

h1 {
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}

.container p {
  font-size: 1.5rem;
}

.container h2 {
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .logo {
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

/* Brand link */
.brand-link {
  text-decoration: none;
  color: white;
}

.brand-link:hover {
  opacity: 0.9;
}

/* Footer link (bottom center) */
.footer-link {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.95rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 4px 6px;
  border-radius: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.footer-link a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* Privacy page */
body.privacy-body {
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px;
}

.privacy-header {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.privacy-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

.privacy-site-title {
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.privacy-card {
  width: min(920px, 100%);
  margin: 24px auto 64px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.privacy-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  font-family: "Saira", sans-serif;
}

.privacy-card .updated {
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.privacy-card p,
.privacy-card li {
  line-height: 1.6;
  font-size: 1rem;
}

.privacy-card p {
  margin: 0.6rem 0;
}

.privacy-card ol {
  padding-left: 1.25rem;
}

.privacy-card li {
  margin: 0.5rem 0;
}

.privacy-card a {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-underline-offset: 3px;
}
