/* Custom styles for Ignium Ventures homepage */

.home-content {
  text-align: center;
  padding: 2rem 2rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  height: calc(100vh - 14rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.home-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.home-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.home-content strong {
  color: var(--accent);
}

.home-content hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid var(--border-color);
}

.home-content em {
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
}

.supported-by {
  margin-top: 2.5rem;
  position: relative;
}

.supported-by h3 {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--foreground) 60%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.supported-by h3::before,
.supported-by h3::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 30%, transparent), transparent);
  transform: translateY(-50%);
}

.supported-by h3::before {
  left: -100px;
}

.supported-by h3::after {
  right: -100px;
}

.supporter-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.supporter-logo {
  height: 4rem;
  width: auto;
  opacity: 0.4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(100%) brightness(1.2);
  position: relative;
  border: 0;
}

.supporter-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px);
}

.supporter-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.supporter-logo:hover::after {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 768px) {
  .home-content {
    padding: 1.5rem 1rem 1rem 1rem;
    height: calc(100vh - 12rem);
  }
  
  .home-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .home-content p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .supported-by {
    margin-top: 2rem;
  }
  
  .supported-by h3::before,
  .supported-by h3::after {
    width: 50px;
  }
  
  .supported-by h3::before {
    left: -65px;
  }
  
  .supported-by h3::after {
    right: -65px;
  }
  
  .supporter-logos {
    gap: 2rem;
    padding: 1rem 0;
  }
  
  .supporter-logo {
    height: 3rem;
  }
}

/* Fallbacks for browsers that don't support color-mix */
@supports not (color: color-mix(in srgb, white, black)) {
  .supported-by h3 {
    color: rgba(236, 234, 229, 0.6);
  }
  
  .supported-by h3::before,
  .supported-by h3::after {
    background: linear-gradient(90deg, transparent, rgba(238, 195, 94, 0.3), transparent);
  }
}
