<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Astronomy Explorer - Galaxy Gallery</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <h1>🌌 Astronomy Explorer</h1>
        <p>Discover the Beauty of Our Universe</p>
    </header>

    <nav class="navigation">
        <button class="nav-btn active" data-filter="all">All</button>
        <button class="nav-btn" data-filter="spiral">Spiral</button>
        <button class="nav-btn" data-filter="elliptical">Elliptical</button>
        <button class="nav-btn" data-filter="irregular">Irregular</button>
    </nav>

    <main class="container">
        <section class="gallery" id="gallery">
            <!-- Gallery items will be inserted here by JavaScript -->
        </section>
    </main>

    <footer>
        <p>&copy; 2026 Astronomy Explorer. Celebrating the cosmos.</p>
    </footer>

    <script src="script.js"></script>
</body>
</html>
