<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Vasutex - Fabrics, Home, Apparel & Yarn</title>

    <style>

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); min-height: 100vh; display: flex; flex-direction: column; }

        header { background: #fff; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

        nav { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

        .logo { font-size: 1.8rem; font-weight: bold; color: #2c3e50; text-decoration: none; }

        main { flex: 1; max-width: 1200px; margin: 4rem auto; padding: 0 2rem; text-align: center; }

        .hero h1 { font-size: 3rem; margin-bottom: 1rem; color: #2c3e50; }

        .hero p { font-size: 1.2rem; margin-bottom: 3rem; color: #666; }

        .buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 800px; margin: 0 auto; }

        .btn { display: inline-block; padding: 1.5rem 3rem; font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 50px; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

        .btn-live { background: #3498db; color: white; }

        .btn-live:hover { background: #2980b9; transform: translateY(-3px); }

        .btn-soon { background: #95a5a6; color: white; cursor: pointer; }

        .btn-soon:hover { background: #7f8c8d; transform: translateY(-3px); }

        footer { background: #2c3e50; color: white; text-align: center; padding: 2rem; }

        @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .buttons { grid-template-columns: 1fr; } }

    </style>

</head>

<body>

    <header>

        <nav>

            <a href="#" class="logo">Vasutex</a>

        </nav>

    </header>

    <main>

        <div class="hero">

            <h1>Welcome to Vasutex</h1>

            <p>Your source for premium fabrics, home textiles, apparel, and yarn solutions.</p>

        </div>

        <div class="buttons">

            <a href="https://vasutexfabrics.com" target="_blank" class="btn btn-live">Fabrics</a>

            <a href="https://vasutexhome.com" target="_blank" class="btn btn-live">Home</a>

            <a href="#" onclick="comingSoon('Apparel')" class="btn btn-soon">Apparel</a>

            <a href="#" onclick="comingSoon('Yarn')" class="btn btn-soon">Yarn</a>

        </div>

    </main>

    <footer>

        <p>&copy; 2026 Vasutex. All rights reserved.</p>

    </footer>

    <script>

        function comingSoon(product) {

            alert(product + ' is coming soon! Stay tuned for updates.');

        }

    </script>

</body>

</html>