/* Roboto Font Configuration */

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

.post-header h1 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

button, input, select, textarea {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.nav-container .home-menu a {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

/* Logo styling */
.pure-menu-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.pure-menu-heading .title {
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .site-logo {
    height: 28px;
  }
  
  .pure-menu-heading .title {
    font-size: 16px;
  }
  
  .pure-menu-heading {
    gap: 8px;
  }
}

/* Footer logo styling */
.footer-logo-section {
  margin-bottom: 20px;
  padding: 20px 0;
}

.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-title {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #333;
  margin: 8px 0 4px 0;
}

.footer-tagline {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* Footer responsive design */
@media (max-width: 768px) {
  .footer-logo {
    height: 40px;
  }
  
  .footer-title {
    font-size: 18px;
  }
  
  .footer-tagline {
    font-size: 13px;
  }
  
  .footer-logo-section {
    padding: 15px 0;
    margin-bottom: 15px;
  }
}