/* Parallax Hero Section Styles */

/* Main parallax container */
.parallax-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

/* Parallax background */
.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(assets/images/photorealistic-earth-planet.webp);
  background-size: cover;
  background-position: center;

  z-index: -1;
  will-change: transform;
}

/* Hero content wrapper */
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hero content */
.hero-content {
  transform: translateZ(0);
  will-change: transform, opacity;
  max-width: 100%;
}

/* Hero image */
.hero-image {
  transform: translateZ(0);
  will-change: transform, opacity;
  display: flex;
  justify-content: flex;
}

/* Profile frame with 3D effect */
.profile-frame {
  transform-style: preserve-3d;
  perspective: 1000px;
  margin-right: 0;
}



/* Mouse parallax effect */
.mouse-parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-image {
    justify-content: center;
  }

  .profile-frame {
    margin: 0 auto;
  }
}

/* Dark theme adjustments */
body.dark-theme .parallax-background {
  opacity: 0.6;
}


