<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>BrightDen | Luxury Fashion & Accessories</title>
  <link rel="stylesheet" href="styles.css">
  <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
  <!-- Announcement Bar -->
  <div class="announcement-bar">
    <p>🌟 Exclusive Luxury Collection: Enjoy 20% Off on Selected Items! Shop Now</p>
  </div>

  <!-- Sticky Header -->
  <header class="sticky-header">
    <div class="logo">BrightDen</div>
    <nav>
      <a href="#">Home</a>
      <a href="#">Shop</a>
      <a href="#">Collections</a>
      <a href="#">Blog</a>
    </nav>
    <div class="cart-icon">🛒 <span class="cart-count">0</span></div>
  </header>

  <!-- Hero Section -->
  <section class="hero-section">
    <div class="hero-content">
      <h1>Elevate Your Style with Timeless Luxury</h1>
      <p>Discover our exclusive collection of handcrafted fashion and accessories.</p>
      <a href="#" class="cta-button">Shop Now</a>
    </div>
  </section>

  <!-- Feature Highlights -->
  <section class="feature-highlights">
    <div class="feature">
      <h2>Free Shipping</h2>
      <p>On all orders over $100</p>
    </div>
    <div class="feature">
      <h2>24/7 Support</h2>
      <p>Dedicated customer service</p>
    </div>
    <div class="feature">
      <h2>Secure Payments</h2>
      <p>100% safe and secure</p>
    </div>
  </section>

  <!-- Flash Sale Section -->
  <section class="flash-sale">
    <h2>Flash Sale: Limited Time Offer</h2>
    <div class="countdown-timer">
      <span id="hours">02</span>:<span id="minutes">30</span>:<span id="seconds">45</span>
    </div>
    <div class="product-grid">
      <div class="product-card">
        <img src="https://via.placeholder.com/200" alt="Product 1">
        <h3>Luxury Watch</h3>
        <p>$299.99</p>
      </div>
      <div class="product-card">
        <img src="https://via.placeholder.com/200" alt="Product 2">
        <h3>Leather Handbag</h3>
        <p>$499.99</p>
      </div>
      <div class="product-card">
        <img src="https://via.placeholder.com/200" alt="Product 3">
        <h3>Gold Necklace</h3>
        <p>$799.99</p>
      </div>
    </div>
  </section>

  <!-- Product Categories -->
  <section class="product-categories">
    <div class="category">
      <img src="https://via.placeholder.com/400" alt="Watches">
      <div class="overlay">
        <h3>Watches</h3>
        <a href="#">Shop Now</a>
      </div>
    </div>
    <div class="category">
      <img src="https://via.placeholder.com/400" alt="Handbags">
      <div class="overlay">
        <h3>Handbags</h3>
        <a href="#">Shop Now</a>
      </div>
    </div>
    <div class="category">
      <img src="https://via.placeholder.com/400" alt="Jewelry">
      <div class="overlay">
        <h3>Jewelry</h3>
        <a href="#">Shop Now</a>
      </div>
    </div>
  </section>

  <!-- Testimonials -->
  <section class="testimonials">
    <h2>What Our Customers Say</h2>
    <div class="testimonial-grid">
      <div class="testimonial">
        <p>"Absolutely stunning products! BrightDen never disappoints."</p>
        <h4>- Jane Doe</h4>
      </div>
      <div class="testimonial">
        <p>"The quality and craftsmanship are unmatched. Highly recommended!"</p>
        <h4>- John Smith</h4>
      </div>
      <div class="testimonial">
        <p>"Best shopping experience ever. Fast shipping and excellent service."</p>
        <h4>- Emma Johnson</h4>
      </div>
    </div>
  </section>

  <!-- Newsletter Signup -->
  <section class="newsletter">
    <h2>Join Our Newsletter</h2>
    <p>Get exclusive updates on new arrivals, sales, and more.</p>
    <form>
      <input type="email" placeholder="Enter your email" required>
      <button type="submit">Subscribe</button>
    </form>
  </section>

  <!-- Footer -->
  <footer>
    <div class="footer-links">
      <a href="#">About Us</a>
      <a href="#">Contact</a>
      <a href="#">Privacy Policy</a>
      <a href="#">Terms of Service</a>
    </div>
    <div class="social-icons">
      <a href="#">Facebook</a>
      <a href="#">Instagram</a>
      <a href="#">Twitter</a>
    </div>
  </footer>

  <script src="script.js"></script>
</body>
</html>