<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Website Update | Western Diocese of the Armenian Church</title>

  <style>
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(135deg, #fff5f8, #f7f7f7);
      color: #222;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 20px;
    }

    .maintenance-box {
      background: #ffffff;
      max-width: 650px;
      width: 100%;
      padding: 50px 35px;
      border-radius: 18px;
      box-shadow: 0 15px 40px rgba(215, 0, 64, 0.12);
      border-top: 6px solid #d70040;
    }

    .site-name {
      font-size: 20px;
      font-weight: 600;
      color: #d70040;
      margin-bottom: 25px;
    }

    h1 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #111;
    }

    p {
      font-size: 18px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 0;
    }

    .small-text {
      margin-top: 25px;
      font-size: 14px;
      color: #888;
    }

    .highlight {
      color: #d70040;
      font-weight: 600;
    }
  </style>
</head>
<body>

  <div class="maintenance-box">
    <div class="site-name">Western Diocese of the Armenian Church</div>

    <h1>Something New Is Coming</h1>

    <p>
      We are making improvements to serve you better.  
      Our website will be available again shortly with updated content and an improved experience.
    </p>

    <p class="small-text">
      Thank you for your patience and support.
    </p>
  </div>

</body>
</html>