/* mobile.css */
/* This stylesheet activates on screens 768px wide or smaller */

/* Body adjustments */
body {
  font-size: 16px;
  padding: 0 10px;
}

/* Header */
header {
  padding: 20px 10px;
}

header h1 {
  font-size: 1.6rem;
  line-height: 1.2;
}

/* Navigation Menu - collapses into vertical stack */
.menu {
  flex-direction: column;
  align-items: stretch;
}

.menu > li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu > li > a {
  padding: 14px;
  font-size: 1rem;
}

/* Dropdown menus appear under each link instead of overlapping */
.menu li ul {
  position: static;
  box-shadow: none;
  border-radius: 0;
}

.menu li ul li a {
  padding: 10px;
  background-color: #005bb5;
}

/* Main content */
main {
  margin: 20px auto;
  padding: 20px 15px;
  box-shadow: none;
  border-radius: 8px;
}

main h2 {
  font-size: 1.3rem;
}

/* Falcon Image Section */
.falcon img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

/* Form adjustments */
form label {
  font-size: 0.95rem;
}

form input,
form textarea,
form select {
  font-size: 0.95rem;
  padding: 8px;
}

/* Buttons */
button {
  width: 100%;
  margin: 10px 0;
  font-size: 1rem;
  padding: 12px;
}

/* Footer */
footer {
  font-size: 0.85rem;
  padding: 12px;
  line-height: 1.4;
}
