.hero-section {
  background: #000000;
  min-height: auto;
  display: flex;
  align-items: center;
  color: white;
}

/* Add this for a nice text effect like Haddy's */
.hero-section h1 {
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-section h2 {
  line-height: 1.1;
}

/* Transformation container styles */
#transformation-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    max-height: 700px;
    margin: 0 auto;
  }
  
  /* Add a subtle pulsing effect to the container when hovered */
  #transformation-container:hover {
    animation: pulse 1s infinite;
  }
  
  /* Before/After images positioning */
  #current-image,
  #before-image {
    display: block;
    transition: opacity 0.5s ease;
    width: 100%;
    height: auto;
  }
  
  /* Ensure the before image is positioned correctly */
  #before-image {
    position: absolute;
    top: 25%;
    left: 0%;
  }
  
  /* Create a pulsing animation for the hover effect */
  @keyframes pulse {
    0% {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
      box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }
    100% {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
  }
  
  /* Style for the prompt text */
  #transformation-container .absolute {
    transition: all 0.3s ease;
    border-radius: 4px;
    transform: translateY(0);
  }
  
  #transformation-container:hover .absolute {
    transform: translateY(-5px);
  }

  /* Mobile-friendly hero section height */
@media (max-width: 768px) {
    .hero-section {
      min-height: auto;  /* Remove fixed height on mobile */
      padding: 120px 0 40px;  /* Add padding instead (120px top to account for navbar) */
    }
    
    /* Make transformation container smaller on mobile */
    #transformation-container {
      max-width: 100%;
      margin-top: 30px;
    }
    
    /* Slightly reduce text size on mobile for better fit */
    .hero-section h1 {
      font-size: 2.75rem;
    }
    
    .hero-section h2 {
      font-size: 2.25rem;
    }
  }