/* Hero section */
.site {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.logo-wrapper {
  max-width: 600px;
  width: 100%;
  border: 3px solid var(--text-silver);
  padding: 7rem;
  border-radius: 10px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.5),  /* main shadow */
    0 0 10px rgba(255, 255, 255, 0.05), /* subtle highlight/glow */
    0 4px 6px rgba(0, 0, 0, 0.3); /* depth shadow */
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to make it feel interactive */
.logo-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 25px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(255, 255, 255, 0.07),
    0 6px 8px rgba(0, 0, 0, 0.35);
}



.hero-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.site-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.btn {
  color: inherit;
  padding: 0.8rem 0;
  font-weight: bold;
  transition: all 0.3s ease;
  transition: color 0.3s;
}

.btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.btn:hover {
  color: var(--primary);
}

.btn:hover::after{
  transform: scaleX(1);
}


/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation classes */
/* .hero-logo-wrapper {
  animation: fadeInScale 1s ease forwards;
} */

.site-title {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.intro {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.hero-buttons a {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-buttons a:nth-child(1) {
  animation-delay: 1.2s;
}
.hero-buttons a:nth-child(2) {
  animation-delay: 1.4s;
}


@media (max-width: 768px) {
  .logo-wrapper {
    padding: 1rem;
  }

  .hero {
    min-height: unset;
    padding: 3rem 1rem 4rem 1rem;
  }

}