/* Homepage 2 - Clean Design */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #000000;
}

/* Navigation - Desktop (sticky top) */
.nav-desktop {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #000000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-weight: 600;
  font-size: 1.25rem;
  color: #000000;
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: underline;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Navigation - Mobile (fixed bottom) */
.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-top: 1px solid #000000;
  padding: 0.5rem 1rem;
  display: none;
  justify-content: space-around;
  align-items: center;
}

.nav-mobile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000000;
  padding: 0.25rem 0.5rem;
}

.nav-mobile-item:hover {
  text-decoration: underline;
}

.nav-mobile-label {
  font-size: 0.75rem;
}

/* Responsive: show/hide navs */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-mobile {
    display: none;
  }
}

/* Mobile Contact Links */
.mobile-contact-links {
  display: none;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }
  .container {
    padding-bottom: 4rem;
  }
  .mobile-contact-links {
    display: block;
  }
}

a {
  color: #000000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-banner {
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-banner img {
    width: 133.33%;
    max-width: none;
  }
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.5rem;
}

ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Engagement List */
.engagement-list {
  margin: 0;
  padding: 0;
}

.engagement-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.engagement-item:first-child {
  padding-top: 0;
}

.engagement-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.engagement-item dt {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.engagement-item dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.availability-badge {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Page Title */
.page-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.5rem;
}

/* Contact Links */
.contact-links-compact {
  margin-bottom: 1.5rem;
}

.contact-links-compact p {
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-width: 2px;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-submit {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.contact-submit:hover {
  background: #333333;
}

.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.9rem;
  margin: 0;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}
