/* As One Health Brand Styles - Copied from Live Site */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Overlay Health Brand Colors - Healthcare Professional */
  --brand-blue: #0066cc;
  --brand-blue-dark: #004499;
  --brand-blue-light: #3388dd;
  --brand-teal: #008080;
  --brand-teal-dark: #006666;
  --brand-green: #22c55e;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg-white: #ffffff;
  --bg-gray-50: #f8fafc;
  --bg-gray-100: #f1f5f9;
  --border-gray: #e2e8f0;
  --footer-bg: #1e293b;
  --footer-text: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --gradient-healthcare: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
}

* {
  box-sizing: border-box;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header Styles */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-section {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 48px;
  width: auto;
}

.desktop-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-blue);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-gray);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--brand-blue);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-section {
  background: var(--bg-gray-100);
  border-radius: 8px;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input,
.form-textarea {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-submit {
  background: var(--brand-blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background: var(--brand-blue-dark);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  margin-bottom: 1rem;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue-light);
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1.25rem;
  color: var(--brand-blue-light);
}

.locations-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.location {
  margin-bottom: 1rem;
}

.location-name {
  font-weight: 600;
  color: var(--brand-blue-light);
  margin-bottom: 0.25rem;
}

.location-address {
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.copyright {
  color: #9ca3af;
  margin: 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-blue { color: var(--brand-blue); }
.bg-blue { background: var(--brand-blue); }
.shadow { box-shadow: var(--shadow); }
.rounded { border-radius: 8px; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }