/* css/style.css */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  background: #f5f5f7;
}

header h1 {
  margin-bottom: 0.25rem;
}

header p {
  color: #555;
}

.centerimglogos {
  display: block;
  margin-left: auto;
  /*margin-right: auto;*/
  width: 50%;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 1.5rem;
}

button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  cursor: not-allowed; /* until backend works */
}

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}


/* NAVBAR BASE */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111827;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative; /* important for dropdown positioning */
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-links a.active {
  background: #2563eb;
  color: #ffffff;
}

/* DROPDOWN */

.dropdown .dropbtn {
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;          /* sit just below the parent */
  left: 0;
  min-width: 180px;
  background-color: #111827;
  border-radius: 0.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.4rem 0.9rem;
  border-radius: 0; /* flat inside the dropdown */
}

/* Show dropdown on hover */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Base layout */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem 3rem;
  background: #f3f4f6;
  color: #111827;
}

/* Navbar (you may already have something similar) */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111827;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #111827;
  border-radius: 0.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.4rem 0.9rem;
  border-radius: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero section */
.hero {
  margin-top: 1.5rem;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
  color: #111827;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 52rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

/* Sections */
.section {
  margin-top: 2.5rem;
}

.section-alt {
  background: #e5e7eb;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.section-title {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
}

.section-intro {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 52rem;
  line-height: 1.6;
}

/* Feature grid */
.grid-3 {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  font-size: 0.9rem;
  color: #4b5563;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #111827;
}

/* Timeline */
.timeline {
  margin-top: 1.25rem;
  border-left: 2px solid #d1d5db;
  padding-left: 1rem;
}

.timeline-step {
  position: relative;
  margin-bottom: 1.25rem;
}

.step-number {
  position: absolute;
  left: -1.45rem;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Status card */
.status-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  font-size: 0.92rem;
  color: #4b5563;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #dbeafe;
  color: #1d4ed8;
}



