/* =========================================
   LIGHT VERSE LOOKUP SECTION
   Elegant Bible-style light design
========================================= */

.verse-lookup-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 55px;
  border-radius: 34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98),
      rgba(247,243,236,0.98)
    );

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 18px 55px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);

  color: #24324a;
}

/* =========================================
   HEADER
========================================= */

.verse-lookup-header {
  text-align: center;
  margin-bottom: 42px;
}

.lookup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;
  margin-bottom: 20px;

  border-radius: 999px;

  background: #f3ece2;

  border: 1px solid rgba(179,139,89,0.12);

  color: #8a6a40;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verse-lookup-header h2 {
  margin-bottom: 16px;

  font-size: clamp(2.3rem, 5vw, 4rem);

  line-height: 1.08;

  color: #1f2d45;

  font-family: Georgia, serif;
}

.verse-lookup-header p {
  max-width: 700px;
  margin: 0 auto;

  color: #617089;

  font-size: 1.08rem;
  line-height: 1.8;
}

/* =========================================
   MAIN CARD
========================================= */

.verse-lookup-card {
  padding: 38px;
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(250,248,244,0.95)
    );

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow:
    0 12px 32px rgba(0,0,0,0.05);
}

/* =========================================
   GRID
========================================= */

.verse-input-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

/* =========================================
   INPUT GROUP
========================================= */

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 10px;

  color: #8a6a40;

  font-size: 0.92rem;
  font-weight: 800;
}

/* =========================================
   INPUTS
========================================= */

.input-group input {
  height: 58px;

  padding: 0 18px;

  border-radius: 18px;

  border: 1px solid rgba(0,0,0,0.08);

  background: #ffffff;

  color: #24324a;

  font-size: 1rem;

  outline: none;

  transition: all 0.2s ease;

  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.03);
}

.input-group input::placeholder {
  color: #95a0af;
}

.input-group input:focus {
  border-color: rgba(179,139,89,0.45);

  box-shadow:
    0 0 0 4px rgba(179,139,89,0.08);
}

/* =========================================
   BUTTON
========================================= */

.verse-search-btn {
  height: 58px;

  border: none;
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #d8c7aa,
      #b89b70
    );

  color: #1f2d45;

  font-size: 1rem;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.verse-search-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 26px rgba(179,139,89,0.25);
}

/* =========================================
   RESULT BOX
========================================= */

.verse-result-box {
  margin-top: 32px;

  padding: 30px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(243,236,226,0.85),
      rgba(255,255,255,0.96)
    );

  border: 1px solid rgba(179,139,89,0.12);

  min-height: 90px;

  color: #24324a;

  line-height: 1.9;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* verse styles */

.verseRef {
  margin-bottom: 14px;

  color: #8a6a40;

  font-size: 1rem;
  font-weight: 900;

  letter-spacing: 0.03em;
}

.verseText {
  color: #2d3b52;

  font-size: 1.08rem;
  line-height: 2;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .verse-input-grid {
    grid-template-columns: 1fr;
  }

  .verse-search-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .verse-lookup-section {
    margin: 50px 14px;
    padding: 28px;
    border-radius: 24px;
  }

  .verse-lookup-card {
    padding: 24px;
  }

  .verse-lookup-header h2 {
    font-size: 2.4rem;
  }
}