<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>SpatiuWeb.ro - Anunț Important</title>
    <style>
        body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
            overflow: hidden;
        }

        .bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .visible {
            opacity: 1;
        }

        .container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(255, 255, 255, 0.8);
            padding: 40px;
            width: 80%;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        h1,
        p,
        ul {
            margin: 10px 0;
            font-size: 20px;
            line-height: 1.5;
        }

        li {
            margin-bottom: 10px;
        }

        .menu {
            text-align: center;
            margin-top: 20px;
        }

        .menu a {
            text-decoration: none;
            margin: 0 20px;
            color: #333;
            transition: color 0.3s;
        }

        .menu a:hover {
            color: #555;
        }

        .logo {
            position: fixed;
            bottom: 10px;
            right: 10px;
            max-width: 300px;
        }

        @media screen and (max-width: 768px) {
            .container {
                padding: 20px;
            }

            h1,
            p {
                font-size: 18px;
            }
        }

        .important-text {
            font-weight: bold;
        }

        .important-link {
            color: #007BFF;
            text-decoration: none;
        }

        .important-link:hover {
            color: #0056b3;
        }
    </style>
</head>

<body>

    <div class="bg" id="background1"></div>
    <div class="bg" id="background2"></div>

    <div class="container">
        <h1><span class="important-text">Important:</span> SpatiuWeb devine parte DataPark.ro</h1>
        <p><span class="important-text">Dragi clienți,</span></p>
        <p>Suntem bucuroși să vă informăm despre o dezvoltare semnificativă în cadrul companiei noastre: SpatiuWeb.ro se
            transformă în DataPark.ro.</p>
        <p>Acest proces de rebranding a inceput și va fi efectuat etapizat, pentru a minimiza orice inconveniență.
            DataPark.ro este numele centrului nostru de date care, alături de serviciile de webhosting pe care le
            cunoașteți, va oferi:</p>
        <ul>
            <li>Servere virtuale cloud</li>
            <li>Colocare</li>
            <li>Soluții de stocare a datelor</li>
            <li>Solutii antivirus pentru companii</li>
        </ul>
        <p>Dumneavoastră nu trebuie să întreprindeți nicio acțiune în acest sens. Vă vom informa printr-un e-mail
             despre noile detalii de autentificare, pe măsură ce conturile vor fi mutate.</p>
        <p>Vă încurajăm să vizitați noul nostru site web pentru a descoperi gama extinsă de servicii și pentru a rămâne
            la curent cu noutățile.</p>
        <p>Vă mulțumim pentru încrederea pe care ne-o acordați și suntem entuziasmați să vă servim sub un nou nume, dar
            cu aceeași calitate excepțională.</p>

        <div class="menu">
            <a href="https://cont.spatiuweb.ro">Cont Client SpatiuWeb.ro</a> -
            <a href="https://cont.spatiuweb.ro/contact.php">Asistență Tehnică SpatiuWeb.ro</a>
        </div>
        <div class="menu">
            <a href="https://my.datapark.ro">Cont Client DataPark</a> -
            <a href="https://www.datapark.ro/gazduire-web-shared-cpanel/">Gazduire web DataPark</a> -
            <a href="https://my.datapark.ro/submitticket.php">Contact DataPark</a>
        </div>
    </div>

    <img src="logo-datapark.png" alt="Logo DataPark" class="logo">

    <script>
        const backgroundImages = [
            'background1.jpeg',
            'background2.jpeg',
            'background3.jpeg',
            'background4.jpeg',
            'background5.jpeg'
        ];

        let currentBackground = 0;
        let nextBackground = 1;

        document.getElementById('background1').style.backgroundImage = `url('${backgroundImages[currentBackground]}')`;
        document.getElementById('background1').classList.add('visible');

        function changeBackground() {
            const currentBg = currentBackground % 2 === 0 ? 'background1' : 'background2';
            const nextBg = nextBackground % 2 === 0 ? 'background1' : 'background2';

            document.getElementById(nextBg).style.backgroundImage = `url('${backgroundImages[nextBackground % backgroundImages.length]}')`;
            document.getElementById(nextBg).classList.add('visible');
            document.getElementById(currentBg).classList.remove('visible');

            currentBackground++;
            nextBackground++;
        }

        setInterval(changeBackground, 15000);
    </script>

</body>

</html>