/* Thankyou page only */

body.thankyou-page {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  background: url("../assets/modern-gradient-background-picjumbo-com.jpg")
              center/cover no-repeat fixed;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
  margin: 0;

  /* ✅ stop any inherited layout weirdness */
  padding: 0;
}

.thank-you-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 92%;
  animation: fadeInUp 0.6s ease both;
}

.thank-you-container h1 {
  color: #222;
  font-size: 2rem;
  margin-bottom: 14px;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}

.thank-you-container a.button {
  display: inline-block;
  background-color: #D9792B;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.thank-you-container a.button:hover {
  background-color: #bf6f28;
  transform: translateY(-2px);
}
