<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>ENZI | Wear Your Strength</title>
  <link rel="stylesheet" href="style.css" />
</head>
<body>
  <header class="hero">
    <nav>
      <div class="logo">ENZI</div>
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Collections</a></li>
        <li><a href="#">Fragrances</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </nav>
    <div class="hero-content">
      <h1>Wear Your Strength</h1>
      <p>Luxury fashion and signature perfumes crafted to empower every moment.</p>
      <a href="#collections" class="btn">Explore Collection</a>
    </div>
  </header>

  <section class="highlight" id="collections">
    <div class="container">
      <h2>Our Signature Lines</h2>
      <div class="cards">
        <div class="card">
          <img src="menswear.jpg" alt="Men's Fashion" />
          <h3>Menswear</h3>
          <p>Timeless pieces for powerful presence.</p>
        </div>
        <div class="card">
          <img src="womenswear.jpg" alt="Women's Fashion" />
          <h3>Womenswear</h3>
          <p>Elegance and edge in every detail.</p>
        </div>
        <div class="card">
          <img src="perfume.jpg" alt="Perfume" />
          <h3>Perfumes</h3>
          <p>Unforgettable scents that linger like legacy.</p>
        </div>
      </div>
    </div>
  </section>

  <footer>
    <p>&copy; 2024 ENZIWEAR. All rights reserved. | <a href="#">Privacy Policy</a></p>
  </footer>
</body>
</html>
