@import url("/satoshi.css");

body {
  font-family: "Satoshi", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background-image: url('./images/Desktop\ -\ 2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;      /* Center horizontally */
  height: 100vh;            /* Full viewport height */
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-text p {
  font-style: italic;
  color: #e5e7eb; /* gray-200 */
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}
nav .flex a:hover {
  transform: translateY(-2px);
}