/**
 * Minimal styling for Coming Soon page
 * Provides sensible defaults without being opinionated
 */

/* Base typography */
body.coming-soon-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Headings */
.coming-soon-page h1,
.coming-soon-page h2,
.coming-soon-page h3,
.coming-soon-page h4,
.coming-soon-page h5,
.coming-soon-page h6 {
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.coming-soon-page h1 { font-size: 2.5em; }
.coming-soon-page h2 { font-size: 2em; }
.coming-soon-page h3 { font-size: 1.75em; }
.coming-soon-page h4 { font-size: 1.5em; }
.coming-soon-page h5 { font-size: 1.25em; }
.coming-soon-page h6 { font-size: 1em; }

/* Paragraphs */
.coming-soon-page p {
    margin-top: 0;
    margin-bottom: 1em;
}

/* Links */
.coming-soon-page a {
    color: #2271b1;
    text-decoration: none;
}

.coming-soon-page a:hover {
    text-decoration: underline;
}

/* Lists */
.coming-soon-page ul,
.coming-soon-page ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.coming-soon-page li {
    margin-bottom: 0.5em;
}

/* Images */
.coming-soon-page img {
    max-width: 100%;
    height: auto;
}

/* Buttons (for block buttons) */
.coming-soon-page .wp-block-button__link {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.coming-soon-page .wp-block-button__link:hover {
    background: #135e96;
    text-decoration: none;
}

/* Block spacing defaults */
.coming-soon-page .wp-block-group,
.coming-soon-page .wp-block-columns,
.coming-soon-page .wp-block-column {
    margin-bottom: 1em;
}

/* Ensure full-width blocks work properly */
.coming-soon-page .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Center alignment helper */
.coming-soon-page .has-text-align-center {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body.coming-soon-page {
        font-size: 14px;
    }

    .coming-soon-page h1 { font-size: 2em; }
    .coming-soon-page h2 { font-size: 1.75em; }
    .coming-soon-page h3 { font-size: 1.5em; }
}
