<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tye International BV - Coming Soon</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .pulse-slow {
            animation: pulse 3s ease-in-out infinite;
        }
    </style>
</head>
<body class="bg-gradient-to-br from-slate-900 via-blue-900 to-slate-900 min-h-screen flex items-center justify-center p-4">
    <div class="max-w-4xl w-full text-center fade-in">
        <!-- Logo/Company Name -->
        <div class="mb-8">
            <h1 class="text-5xl md:text-7xl font-bold text-white mb-4">
                Tye International BV
            </h1>
            <div class="w-24 h-1 bg-blue-400 mx-auto"></div>
        </div>

        <!-- Coming Soon Message -->
        <div class="mb-12">
            <h2 class="text-3xl md:text-4xl font-semibold text-blue-300 mb-6">
                Coming Soon
            </h2>
            <p class="text-lg md:text-xl text-gray-300 mb-4 max-w-2xl mx-auto">
                We're working hard to bring you an exceptional experience. Our new website is under construction and will be launching soon.
            </p>
        </div>

        <!-- Animated Dots -->
        <div class="flex justify-center gap-3 mb-12">
            <div class="w-3 h-3 bg-blue-400 rounded-full pulse-slow" style="animation-delay: 0s;"></div>
            <div class="w-3 h-3 bg-blue-400 rounded-full pulse-slow" style="animation-delay: 0.3s;"></div>
            <div class="w-3 h-3 bg-blue-400 rounded-full pulse-slow" style="animation-delay: 0.6s;"></div>
        </div>

        <!-- Contact Information (Optional) -->
        <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-lg p-6 max-w-md mx-auto">
            <p class="text-gray-300 mb-4">
                For inquiries, please contact us:
            </p>
            <a href="mailto:sales@tye-int.com" class="text-blue-300 hover:text-blue-200 transition-colors text-lg font-medium">
                sales@tye-int.com
            </a>
        </div>

        <!-- Footer -->
        <div class="mt-16 text-gray-400 text-sm">
            <p>&copy; 2024 Tye International BV. All rights reserved.</p>
        </div>
    </div>
</body>
</html>
