/* [project]/src/components/Welcome.module.css [app-client] (css) */
.Welcome-module__hHVcrG__welcomeSection {
  background: radial-gradient(circle at 100% 0, #1a1a1a, #000);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 2rem 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Welcome-module__hHVcrG__bgImage {
  z-index: 0;
  opacity: .3;
  filter: blur(8px) grayscale(.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Welcome-module__hHVcrG__bgImage:after {
  content: "";
  z-index: 1;
  background: #0009;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Welcome-module__hHVcrG__container {
  z-index: 10;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.Welcome-module__hHVcrG__textContent {
  color: var(--foreground);
  animation: 1s ease-out Welcome-module__hHVcrG__fadeIn;
}

.Welcome-module__hHVcrG__title {
  font-family: var(--font-display);
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  margin-bottom: .5rem;
  font-size: 3.5rem;
  line-height: 1.1;
}

.Welcome-module__hHVcrG__subTitle {
  font-family: var(--font-display);
  color: var(--gold);
  opacity: .8;
  margin-bottom: 2rem;
  font-size: 2rem;
  display: block;
}

.Welcome-module__hHVcrG__bioText {
  color: #e0e0e0;
  text-align: justify;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
  display: flex;
}

.Welcome-module__hHVcrG__highlight {
  color: var(--gold);
  font-weight: 500;
}

.Welcome-module__hHVcrG__imageWrapper {
  border: 1px solid var(--gold-dim);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  animation: 1s ease-out Welcome-module__hHVcrG__slideIn;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px #00000080;
}

.Welcome-module__hHVcrG__profileImage {
  object-fit: cover;
  transition: transform .7s;
}

.Welcome-module__hHVcrG__imageWrapper:hover .Welcome-module__hHVcrG__profileImage {
  transform: scale(1.03);
}

.Welcome-module__hHVcrG__cta {
  border-left: 4px solid var(--gold);
  background: #d4af371a;
  border-radius: 0 10px 10px 0;
  margin-top: 2rem;
  padding: 1.5rem;
}

.Welcome-module__hHVcrG__cta p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-style: italic;
}

@keyframes Welcome-module__hHVcrG__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Welcome-module__hHVcrG__slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .Welcome-module__hHVcrG__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .Welcome-module__hHVcrG__imageWrapper {
    order: -1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .Welcome-module__hHVcrG__title {
    text-align: center;
    font-size: 2.5rem;
  }

  .Welcome-module__hHVcrG__textContent {
    text-align: center;
  }

  .Welcome-module__hHVcrG__bioText {
    text-align: left;
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .Welcome-module__hHVcrG__welcomeSection {
    padding: 6rem 1rem;
  }

  .Welcome-module__hHVcrG__title {
    font-size: 2rem;
  }

  .Welcome-module__hHVcrG__bioText {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/*# sourceMappingURL=src_components_Welcome_module_03e67087.css.map*/