/* === Font Definitions === */
@font-face {
  font-family: 'IBMPlexSerif';
  src: url('https://images.echofyre.com/IBMPlexSerif-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'UnicaOne';
  src: url('https://images.echofyre.com/UnicaOne-Regular.woff2') format('woff2');
}

/* === Base Page === */
body {
  margin: 0;
  padding-top: 100px; /* Creates breathing room under fixed nav */
  font-family: 'IBMPlexSerif', serif;
  background: #0d0d0f url('https://images.echofyre.com/faq_contact.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #d6d3ce;
}

/* Add mobile adjustment */
@media (max-width: 600px) {
  body {
    padding-top: 60px;
  }
}

/* === Container Box === */
.entry-box {
  max-width: 900px;
  margin: 3rem auto;
  background-color: rgba(10, 10, 30, 0.88);
  border: 2px solid #4e9de7;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 28px #4e9de7b0;
}

/* === Headings === */
h1, h2 {
  font-family: 'UnicaOne', sans-serif;
  color: #4e9de7;
  text-shadow: 0 0 6px #000;
  text-align: center;
}

/* === HR and Dividers === */
hr {
  border: none;
  height: 1px;
  background: #4e9de7;
  margin: 2rem 0;
}

/* === FAQ Sections === */
.faq-entry {
  margin-bottom: 2rem;
}

.faq-entry summary {
  font-family: 'UnicaOne', sans-serif;
  font-size: 1.2rem;
  color: #3cbf74;
  cursor: pointer;
  padding-bottom: 0.3rem;
}

.faq-entry summary:hover {
  color: #cc2c1c; /* red hover */
}

.faq-entry p {
  margin-left: 1rem;
  margin-top: 0.5rem;
  color: #4e9de7;
  line-height: 1.6;
}

/* === Blockquote Notice === */
blockquote {
  font-family: 'UnicaOne', sans-serif;
  font-style: italic;
  margin: 2rem auto;
  color: #4e9de7;
  font-size: 1.1rem;
  max-width: 750px;
  text-align: center;
}

/* === Contact Button === */
.button-link {
  display: block;
  margin: 3rem auto 1rem auto;
  background: #3cbf74;
  color: #0d0d0f;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 6px #e0b84a80;
  width: fit-content;
}

.button-link:hover {
  background-color: #4e9de7; /* page blue */
}

/* === Final Warning Box === */
.final-warning {
  padding: 1.5rem;
  background-color: rgba(30, 10, 10, 0.65);
  color: #ffdddd;
  font-style: italic;
  font-size: 1rem;
  border: 2px solid #cc2c1c;
  border-radius: 12px;
  box-shadow: 0 0 12px #cc2c1c80;
  margin-top: 4rem;
}

/* === Responsive === */
@media (max-width: 600px) {
  .entry-box {
    margin: 1rem;
    padding: 1rem;
  }

  h1, h2 {
    font-size: 1.3rem;
  }

  blockquote {
    font-size: 1rem !important;
    padding: 0.5rem;
  }

  input, textarea, select, button {
    font-size: 1rem;
  }
}

/* === Contact Form Layout Fix === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  font-family: 'UnicaOne', sans-serif;
  color: #4e9de7;
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  background: #111;
  color: #d6d3ce;
  border: 1px solid #4e9de7;
  border-radius: 8px;
  font-family: 'IBMPlexSerif', serif;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  margin: 2rem auto 0 auto;
  padding: 0.6rem 1.4rem;
  background: #3cbf74;
  color: #ffffff; /* white text */
  font-family: 'UnicaOne', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 6px #4e9de780;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background: #4e9de7; /* page blue */
}

/* === Captcha === */
.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* === Thank You Container Styling === */
.thankyou-container {
  max-width: 800px;
  margin: 6rem auto 3rem auto;
  padding: 3rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #4e9de7;
  border-radius: 16px;
  box-shadow: 0 0 24px #4e9de770;
  background-color: rgba(10, 10, 30, 0.85);
  color: #d6d3ce;
  text-align: center;
  font-family: 'IBMPlexSerif', serif;
}

.thankyou-container h1 {
  font-family: 'UnicaOne', sans-serif;
  font-size: 2rem;
  color: #4e9de7;
  margin-bottom: 1rem;
}

.thankyou-container a#cancel-arc {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3cbf74;
  color: #0d0d0f;
  font-family: 'UnicaOne', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 2rem;
  box-shadow: 0 0 6px #4e9de780;
  transition: background-color 0.3s ease;
}

.thankyou-container a#cancel-arc:hover {
  background-color: #4e9de7;
  color: #ffffff;
}

/* === Mobile Scaling === */
@media (max-width: 600px) {
  .thankyou-container {
    margin: 2rem 1rem;
    padding: 2rem 1rem;
  }

  .thankyou-container h1 {
    font-size: 1.4rem;
  }
}