:root {
  --primary-gradient-start: #00ccff;
  --primary-gradient-end: #0128b6;
  --text-color-light: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.25);
  --font-family-primary: "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  color: var(--text-color-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

.hero {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Left Section: Text Content */
.hero__text-content {
  flex: 1;
  min-width: 300px;
}

.hero__logo {
  max-width: 470px;
}

.hero__tagline {
  font-size: clamp(1rem, 4.5vw, 3.2rem);
  line-height: 1.5;
  font-weight: 600;
}

.hero__main-headline {
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  margin: 1rem 0 0 0;
  font-weight: 900;
  line-height: 1.1;
}

.hero__social-links {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
}

.hero__social-links a {
  color: var(--text-color-light);
  font-size: 2.2rem;
  transition: transform 0.2s ease-in-out;
}

.hero__social-links a:hover {
  transform: scale(1.15);
}

.hero__social-links2 {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
}

.hero__social-links2 a {
  color: var(--text-color-light);
  font-size: 2.2rem;
  transition: transform 0.2s ease-in-out;
}

.hero__social-links2 a:hover {
  transform: scale(1.15);
}

/* Right Section: Image Showcase */
.hero__image-showcase {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Align images to the bottom */
  position: relative;
  min-width: 350px;
  min-height: 70vh;
}

.hero__image {
  position: absolute;
  bottom: 0;
  border-radius: 20px;
  width: auto;
  box-shadow: 0 15px 30px var(--shadow-color);
}

/* Center (taller) */
.hero__image--center {
  z-index: 2;
  max-height: 60vh; /* Taller */
  left: 50%;
  transform: translateX(-50%);
}

/* Left & Right (equal height) */
.hero__image--left {
  z-index: 1;
  max-height: 50vh; /* Equal shorter height */
  left: 35%; /* Adjust horizontally */
  transform: translateX(-100%);
}

.hero__image--right {
  z-index: 1;
  max-height: 50vh; /* Equal shorter height */
  left: 65%; /* Adjust horizontally */
  transform: translateX(0);
}

/* --- Responsive Design for Mobile & Tablet --- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem; /* Reduced gap for smaller screens */
  }

  .hero__text-content {
    max-width: 100%;
  }

  .hero__social-links2 {
    justify-content: center; /* Extra space for mobile */
    margin-top: 2px;
  }
  .hero__social-links {
    display: none;
  }
  .hero__image-showcase {
    min-height: 35vh;
    margin-top: 5rem; /* Reduce container height */
  }

  .hero__image {
    max-width: 100%; /* Prevent images from being too wide */
    max-height: 60vh; /* Scale down for mobile */
  }

  .hero__image--center {
    max-height: 40vh; /* Slightly taller center */
  }

  .hero__image--left,
  .hero__image--right {
    max-height: 35vh; /* Equal height for sides */
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 0px;
  }
  .hero {
    padding: 1rem;
    gap: .5rem; /* Further reduced gap */
  }
  .hero__logo {
    max-width: 200px;
  }
  .hero__tagline {
    font-size: 1.5rem;
  }
  .hero__main-headline {
    font-size: 2.5rem;
  }
  .hero__social-links {
    display: none;
  }
  .hero__social-links2 {
    justify-content: center; /* Extra space for mobile */
    margin-top: 2px;
  }

  .hero__image-showcase {
    min-height: 30vh; /* Reduce container height */
    margin-top: 2px;
    padding: 0rem;
  }

  .hero__image {
    max-width: 90%; /* Prevent images from being too wide */
    max-height: 30vh; /* Scale down for mobile */
    padding: 0rem;
  }

  .hero__image--center {
    max-height: 30vh; /* Slightly taller center */
  }

  .hero__image--left,
  .hero__image--right {
    max-height: 25vh; /* Equal height for sides */
  }
}

@media (min-width: 901px) {
  .hero__social-links2 {
    display: none;
  }
}
