/*
Theme Name: UnderDev
Theme URI: https://example.com/
Author: ChatGPT (generated)
Author URI: https://example.com/
Description: Minimal single-page "Under Development" theme. Install and add a logo via Customizer.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: underdev
Tags: one-column, custom-logo, accessibility-ready
*/

/* Basic reset */
html,body{height:100%;margin:0;}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-color: #0f172a; /* change this color if you want a different background */
  color:#e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.ud-container{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
  box-sizing:border-box;
}
.ud-box{
  max-width:760px;
}
.ud-logo{margin-bottom:28px;}
.ud-title{font-size:28px;margin:0 0 8px 0;letter-spacing:0.6px;}
.ud-heading{font-size:48px;margin:0 0 12px 0;line-height:1.02;font-weight:700;}
.ud-desc{opacity:0.85;margin:0 0 18px 0;font-size:18px;}
.ud-meta{margin-top:18px;font-size:13px;opacity:0.8;}
/* Responsive */
@media (max-width:520px){
  .ud-heading{font-size:34px;}
  .ud-title{font-size:18px;}
}
/* Make sure logo image doesn't overflow */
.ud-logo img{max-width:240px;height:auto;}
