<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Beautyrush</title>
  <!-- Correctly link to styles.css -->
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <!-- Steam-like Banner -->
  <header class="banner">
    <h1>Beautyrush: Services Now Done At Home</h1>
  </header>

  <!-- Hero Section -->
  <section class="hero-section">
    <div class="hero-image">
      <img src="images/makeup-hero-image.jpg" alt="Beautyrush Hero Image">
    </div>
    <div class="hero-content">
      <h2>Get Beauty, Barber & Massage Services Delivered to Your Door – 24/7</h2>
      <p>Beautyrush connects you with local beauty, barber, and massage professionals anytime, anywhere.</p>
      <button class="cta-button" onclick="window.location.href='signin.html'">Register Now</button>
    </div>
  </section>

  <!-- How It Works Section -->
  <section class="how-it-works">
    <h2>How Beautyrush Works</h2>
    <p>It's simple! Follow these 3 easy steps to get started:</p>
    
    <!-- Step 1 -->
    <div class="step">
      <img src="images/step1-icon.png" alt="Register" class="step-icon">
      <h3>1. Register</h3>
      <p>Sign up with your email or social account and create your personalized profile.</p>
    </div>

    <!-- Step 2 -->
    <div class="step">
      <img src="images/step2-icon.png" alt="Select a Service" class="step-icon">
      <h3>2. Select a Service</h3>
      <p>Browse beauty, barber, and massage services. Pick the one you need and choose a professional.</p>
    </div>

    <!-- Step 3 -->
    <div class="step">
      <img src="images/step3-icon.png" alt="Relax" class="step-icon">
      <h3>3. Relax</h3>
      <p>Sit back and enjoy your service at home, work, or anywhere. Professionals arrive at your door!</p>
    </div>

    <!-- Register Button for How It Works Page -->
    <button class="cta-button" onclick="window.location.href='signin.html'">Register Now</button>
  </section>

</body>
</html>