/*
Theme Name: Static Migration Theme
Theme URI: http://localhost/onursozeri
Author: Onur Sozeri
Description: Custom theme used to migrate a static HTML landing page into WordPress with minimal risk.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: static-migration-theme
*/

/*
 * Primary frontend styles are intentionally kept inside the migrated header.php
 * during the first migration stage to preserve the original static layout.
 */

.site-main {
    display: block;
}

.static-migration-placeholder {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 24px;
}

.static-migration-inner {
    width: min(100%, 720px);
    padding: 32px;
    border: 1px solid #dddddd;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    color: #111111;
    text-align: center;
}

.static-migration-inner h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.static-migration-inner p {
    margin: 0;
    line-height: 1.7;
}
