/**
 * Thank You Page Styles (page-merci.php)
 */

.merci-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.merci-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.merci-icon {
  width: 80px;
  height: 80px;
  background: #bb0a30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: merciScaleIn 0.5s ease-out;
}

.merci-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes merciScaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.merci-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
}

.merci-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.merci-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.merci-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.merci-btn-primary {
  background: #bb0a30;
  color: white;
}

.merci-btn-primary:hover {
  background: #9a0828;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
}

.merci-btn-secondary {
  background: #f5f5f5;
  color: #333;
}

.merci-btn-secondary:hover {
  background: #e5e5e5;
  color: #000;
  transform: translateY(-2px);
}

.merci-info {
  margin-top: 50px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #bb0a30;
}

.merci-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.merci-info-text {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .merci-title {
    font-size: 2rem;
  }
  
  .merci-text {
    font-size: 1rem;
  }
  
  .merci-buttons {
    flex-direction: column;
  }
  
  .merci-btn {
    width: 100%;
    justify-content: center;
  }
}
