/* CONTACT PAGE: Specific adjustments only */

/* Calendly Widget Sizing */
.calendly-inline-widget {
  height: 60vh;
  max-height: 600px;
  min-height: 300px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Optional: Reduce bottom space before footer on contact page */
footer {
  margin-top: 0;
}

.newsletter-form {
  background: var(--blush-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px var(--shadow-soft);
  max-width: 500px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-sizing: border-box; /* ensure padding doesn't affect width */
}

.newsletter-form label,
.newsletter-form input,
.newsletter-form button {
  width: 100%; /* make all children fill evenly */
  box-sizing: border-box; /* avoid overflow from padding */
}



.newsletter-form label {
  font-weight: bold;
  color: var(--text-dark);
}

.newsletter-form input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.newsletter-form button {
  background-color: var(--deep-purple);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.newsletter-form input,
.newsletter-form button {
  width: 100%;
}

.newsletter-form button:hover {
  background-color: var(--rich-plum);
}

/* Payment section */
.payment-section {
  margin-top: 2rem;
  text-align: center;
}

.payment-section p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--rich-plum);
  font-weight: 600;
}

.payment-section img {
  width: 150px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(90, 42, 131, 0.2);
}

.payment-box {
  background: var(--blush-bg);
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px var(--shadow-soft);
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}

.payment-box h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--rich-plum);
}

.payment-box p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 1rem;
}

.payment-box a {
  color: var(--deep-purple);
  font-weight: bold;
  text-decoration: underline;
}

.payment-box img {
  width: 160px;
  margin-top: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(90, 42, 131, 0.2);
}
