/* Simple, clean styles for Hurbs LLC website */

/* Base styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Layout */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

/* Logo styling */
.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  max-width: 100%;
  width: 300px;
  height: auto;
}

/* Typography */
h1 {
  font-size: 2rem;
  font-weight: 300;
  color: #333;
  margin: 1rem 0;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  padding: 1rem 0;
  text-align: center;
  color: #888;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .logo-container img {
    width: 250px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-container img {
    width: 200px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
}
