@charset "UTF-8";
/* ==== CONTACT.CSS ==== */

/* ===========================
   CONTACT FORM
=========================== */

.contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Lora', serif;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: #111;
  color: #eee;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

body.light .contact-form input,
body.light .contact-form textarea {
  background: #f9f9f9;
  color: #111;
  border: 1px solid rgba(0,0,0,0.15);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(247,74,5,0.35);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.submit-btn {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.7rem 1.8rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #000;
  box-shadow: 0 6px 18px rgba(247,74,5,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(247,74,5,0.6);
}


/* ===========================
   SUCCESS PAGE
=========================== */

.success-box {
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(247,74,5,0.55);
  animation: popIn 0.6s ease-out;
}

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

.success-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.success-btn {
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #000;
  box-shadow: 0 6px 18px rgba(247,74,5,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(247,74,5,0.6);
}

.success-btn.outline {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

body.light .success-btn.outline {
  border: 1px solid rgba(0,0,0,0.25);
}

.success-btn.outline:hover {
  background: var(--accent);
  color: #000;
}

