/* ===========================================
   BlocHost Landing Pages Styles
   Brand Colors: #FF5500 (orange), #000 (black), #666 (gray)
   =========================================== */

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

/* Homepage Base */
.home-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #FFFFFF;
  color: #000000;
}

/* Brand Colors */
.text-brand {
  color: #FF5500;
}

.bg-brand {
  background-color: #FF5500;
}

.text-gray {
  color: #666666;
}

.text-light-gray {
  color: #999999;
}

.border-light {
  border-color: #E5E5E5;
}

/* Homepage Navigation */
.home-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
}

.home-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.home-nav-logo-circle {
  width: 28px;
  height: 28px;
  background-color: #FF5500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-nav-logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.03em;
}

.home-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-nav-tagline {
  font-size: 0.875rem;
  color: #666666;
  text-align: right;
  line-height: 1.4;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-nav-link {
  font-size: 0.875rem;
  color: #666666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.home-nav-link:hover {
  color: #000000;
}

/* Homepage Hero */
.home-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #FFFFFF;
}

.home-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.home-hero-text {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 2rem;
}

.home-hero-tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.home-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Homepage Buttons */
.btn-brand {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #FF5500;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-brand:hover {
  background-color: #E64D00;
  color: #FFFFFF;
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #000000;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-outline-dark:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Homepage Features */
.home-features {
  padding: 6rem 2rem;
  background-color: #FFFFFF;
}

.home-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.home-feature {
  text-align: left;
}

.home-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.home-feature-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

/* Homepage CTA */
.home-cta {
  padding: 6rem 2rem;
  background-color: #FAFAFA;
  text-align: center;
}

.home-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.home-cta-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage Footer */
.home-footer {
  padding: 3rem 2rem;
  background-color: #FFFFFF;
  border-top: 1px solid #E5E5E5;
}

.home-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

.home-footer-attribution {
  font-size: 0.875rem;
  color: #666666;
}

.home-footer-attribution a {
  color: #FF5500;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.home-footer-attribution a:hover {
  color: #E64D00;
}

.home-footer-copyright {
  font-size: 0.875rem;
  color: #999999;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E5E5;
}

/* Responsive Homepage */
@media (max-width: 768px) {
  .home-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .home-nav-right {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .home-nav-tagline {
    text-align: center;
  }

  .home-nav-links {
    width: 100%;
    justify-content: center;
  }

  .home-hero {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .home-hero-text {
    font-size: 2rem;
  }

  .home-hero-tagline {
    font-size: 1.25rem;
  }

  .home-hero-buttons {
    flex-direction: column;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-features {
    padding: 4rem 1.5rem;
  }

  .home-cta {
    padding: 4rem 1.5rem;
  }

  .home-footer-content {
    flex-direction: column;
    text-align: center;
  }
}
