/* style.css */

/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset & base styles */
body {
  background-color: #f8f9fa !important;
  font-family: "DM Sans", sans-serif !important;
  color: #1f2937;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f2f2f2;
}

/* Top bar */
.topbar {
  background-color: #ffffff;
  height: 64px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111827;
}

.help-btn {
  background: none;
  border: 1px solid #11162a;
  color: #11162a;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.help-btn:hover {
  background-color: #11162a;
  color: #fff;
}

/* Content layout */
.content-container {
  margin-top: 3rem;
  max-width: 720px;
}

/* Card styles */
.card {
  border: none !important;
  background-color: #f8f9fa !important;
  margin-top: 4rem;
}

.card-body {
  padding: 3rem 2rem;
}

h3 {
  font-weight: 600;
  font-size: 1.75rem;
  color: #1a1f36;
}

h5 {
  color: #1a1f36 !important;
}

p.lead {
  font-size: 1.1rem;
  color: #374151;
  margin-top: 0.5rem;
}

.text-danger {
  font-size: 0.95rem;
  margin-top: 1rem;
}

hr {
  margin: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Custom primary button */
.big-button {
  background-color: #1a1f36 !important;
  border: none;
  padding: 0.85rem 2.5rem;
  padding: 16px 24px !important;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  color: #ffffff !important;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-top: 1rem;
}

.big-button:hover {
  background-color: #0a0f28 !important;
  color: #ffffff !important;
  border: 1px solid #1a1f36 !important;
}

.icon {
  color: #ffffff !important;
}

.icon:hover {
  color: #1a1f36 !important;
}

/* Effects */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form styling */
.form-control,
.form-select {
  border: none !important;
  border-bottom: 1px solid #d1d5db !important; /* light gray border like the screenshot */
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding-left: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #1f2937;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #1a1f36 !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #1f2937;
}

.form-control::placeholder {
  color: #9ca3af; /* Tailwind gray-400 */
  opacity: 1;
}

/* Footer Styling */
.site-footer {
    color: #131836;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer links */
.site-footer a {
    color: grey;
    text-decoration: none;
    margin: 0 10px;
}