/* Thank You Page Styles */
:root {
  --ss-bg-color: #f0f4f8;
  --ss-primary: #ff6f61;
  --ss-secondary: #00bcd4;
  --ss-text: #2c3e50;
  --ss-light-text: #ffffff;
  --ss-border-radius: 12px;
  --ss-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  --ss-transition: all 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--ss-text);
  background: linear-gradient(135deg, var(--ss-secondary), var(--ss-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-you-container {
  background: var(--ss-light-text);
  padding: 4rem;
  border-radius: var(--ss-border-radius);
  box-shadow: var(--ss-shadow);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.thank-you-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--ss-primary);
}

.thank-you-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.back-button {
  background-color: var(--ss-primary);
  color: var(--ss-light-text);
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  border-radius: var(--ss-border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--ss-transition);
}

.back-button:hover {
  background-color: var(--ss-secondary);
  transform: translateY(-2px);
}

/* Checkmark Animation */
.check-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}
.check-mark svg circle,
.check-mark svg path {
  stroke: var(--ss-primary);
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 0.8s ease forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 2rem;
  }
  .thank-you-content h1 {
    font-size: 2.4rem;
  }
  .thank-you-content p {
    font-size: 1.2rem;
  }
  .back-button {
    width: 100%;
  }
}
