/* ==========================================
   ShowtimeVegas Search Widget
   File: /css/showtimevegas-search-widget.css
========================================== */

.stv-search-widget {
  width: min(420px, calc(100vw - 24px));
  margin: 24px auto;
  padding: 18px;

  background:
    linear-gradient(180deg, #111111 0%, #2b1600 100%);

  border: 3px solid #f99903;
  border-radius: 16px;

  box-shadow:
    0 0 12px rgba(249, 153, 3, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.25);

  box-sizing: border-box;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.stv-search-title {
  margin: 0 0 12px;
  color: #f99903;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.stv-search-box {
  display: flex;
  gap: 8px;
  width: 100%;
}

.stv-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 12px;

  border: 2px solid #f99903;
  border-radius: 10px;

  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;

  outline: none;
  box-sizing: border-box;
}

.stv-search-input:focus {
  border-color: #ffbf4d;
  box-shadow: 0 0 8px rgba(249, 153, 3, 0.65);
}

.stv-search-button {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  background: #0284c7;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;

  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stv-search-button:hover {
  background: #0369a1;
  transform: translateY(-1px);
  box-shadow:
    0 0 8px rgba(56, 189, 248, 0.7),
    0 0 18px rgba(56, 189, 248, 0.45);
}

.stv-search-visit {
  display: inline-block;
  margin-top: 12px;

  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.stv-search-visit:hover {
  color: #f99903 !important;
  text-decoration: underline;
}

@media (max-width: 420px) {
  .stv-search-box {
    flex-direction: column;
  }

  .stv-search-button {
    width: 100%;
  }
}