/* CSS for Hero Section */

.hero-section {
  background: var(--naf-secondary);
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.hero-content {
  max-width: 600px;
  margin-right: 3rem;
}

.hero-logo {
  max-width: 120px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--naf-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 400;
}

.hero-feature i {
  font-size: 1.2rem;
  color: var(--naf-primary);
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: transparent;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-btn-primary {
  background: var(--naf-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
}
.hero-btn-primary:hover {
  background: var(--naf-primary-dark);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--naf-primary);
  border: 2px solid var(--naf-primary);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none !important;
}
.hero-btn-secondary:hover {
  color: var(--naf-primary-dark);
  border-color: var(--naf-primary-dark);
  background: rgba(197, 164, 92, 0.04);
}

.hero-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    /* padding: 1.5rem 1rem; */ /* Handled by .site-header-inner or general hero padding */
    padding-top: 1.5rem;
    min-height: 70vh;
  }
  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-features {
    max-width: 100%;
    gap: 1rem 1.5rem;
    justify-content: center;
    margin: 0 auto 2rem auto;
  }
  .hero-image {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-features {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    max-width: 300px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
