<!DOCTYPE html>

<html lang="de">

<head>

  <meta charset="UTF-8" />

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

  <title>Eva Vavrovsky Design Studio</title>

  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap" rel="stylesheet" />

  <style>

    *, *::before, *::after {

      box-sizing: border-box;

      margin: 0;

      padding: 0;

    }


    html, body {

      height: 100%;

    }


    body {

      font-family: 'Poppins', sans-serif;

      background-color: #ffffff;

      color: #000000;

      display: flex;

      align-items: center;

      justify-content: center;

      min-height: 100vh;

      padding: 2rem;

    }


    .container {

      text-align: center;

      display: flex;

      flex-direction: column;

      align-items: center;

      gap: 0;

    }


    /* Logo image — place logo.png in the same folder as index.html */

    .logo {

      width: 120px;

      height: auto;

      margin-bottom: 2rem;

    }


    .tagline {

      font-family: 'Poppins', sans-serif;

      font-weight: 400;

      font-size: 0.75rem;

      letter-spacing: 0.25em;

      text-transform: uppercase;

      color: #000;

      margin-bottom: 0.15rem;

    }


    .divider {

      width: 1px;

      height: 60px;

      background-color: #000;

      margin: 2.5rem auto;

    }


    .under-construction {

      font-family: 'Poppins', sans-serif;

      font-weight: 400;

      font-size: 0.75rem;

      letter-spacing: 0.2em;

      text-transform: uppercase;

      color: #000;

      margin-bottom: 1.25rem;

    }


    .contact-line {

      font-family: 'Poppins', sans-serif;

      font-weight: 300;

      font-size: 0.78rem;

      letter-spacing: 0.04em;

      color: #000;

      line-height: 1.8;

    }


    .contact-line a {

      color: #000;

      text-decoration: none;

    }


    .contact-line a:hover {

      text-decoration: underline;

    }


    /* ── Mobile ── */

    @media (max-width: 480px) {

      .logo {

        width: 90px;

        margin-bottom: 1.5rem;

      }


      .tagline {

        font-size: 0.68rem;

        letter-spacing: 0.18em;

      }


      .divider {

        height: 40px;

        margin: 2rem auto;

      }


      .under-construction {

        font-size: 0.68rem;

        letter-spacing: 0.15em;

      }


      .contact-line {

        font-size: 0.72rem;

      }

    }

  </style>

</head>

<body>

  <div class="container">


    <!--

      ╔══════════════════════════════════════════════╗

        LOGO PLATZIERUNG                           

        Lege deine Datei "logo.png" in denselben  

        Ordner wie diese index.html-Datei.         

        Das Bild wird automatisch hier angezeigt.  

      ╚══════════════════════════════════════════════╝

    -->

    <img src="logo.png" alt="EV – Eva Vavrovsky Design Studio" class="logo" />


    <div class="divider"></div>


    <p class="under-construction">Die Seite befindet sich derzeit im Aufbau.</p>


    <div class="contact-line">

      Ich freue mich über Ihre Kontaktaufnahme!<br />

      <a href="mailto:office@vavrovsky.design">office@vavrovsky.design</a> &nbsp;|&nbsp; Tel. 069918171177

    </div>


  </div>

</body>

</html>