/* Landing Page Specific Styles */

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: linear-gradient(135deg, #f7f9fa 0%, #ffffff 100%);
  padding: var(--spacing-3xl) 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
}

.hero-image {
  margin-top: var(--spacing-2xl);
}

.brandmark {
  width: 400px;
  height: auto;
  opacity: 0.95;
}

/* ========================================
   Door Selection Section
   ======================================== */
.door-selection {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-white);
}

.section-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-xl);
}

/* ========================================
   Features Section
   ======================================== */
.features {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-bg-secondary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--spacing-md);
  filter: brightness(0) invert(1);
}

.hhs-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: italic;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}
