<!DOCTYPE html>
<html lang="cs">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Snadno.net</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet">
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Inter', sans-serif;
      color: #f5f5f5;
      background-color: #111;
    }

    body {
      background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom right, rgba(15,15,15,0.7), rgba(20,20,20,0.5));
    }

    .content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }

    .content h1 {
      font-size: 4rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
    }

    .content p {
      font-size: 1.5rem;
      font-weight: 300;
      color: #e0e0e0;
      max-width: 600px;
      text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
      margin-bottom: 2rem;
    }

    .services {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .service-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    .service-card p {
      font-size: 1rem;
      margin: 0;
    }

    @media (max-width: 768px) {
      .content h1 {
        font-size: 2.5rem;
      }

      .content p {
        font-size: 1.2rem;
      }

      .services {
        flex-direction: column;
        gap: 1rem;
      }
    }
  </style>
</head>
<body>
  <div class="overlay"></div>
  <div class="content">
    <h1>Snadno.net</h1>
    <p>Připravujeme pro vás obsah, aplikace a služby, se kterými se v dnešním světě neztratíte.</p>
  </div>
</body>
</html>
