/*
Theme Name: Simple Under Construction
Theme URI: https://www.zeeuwsonline.nl/
Author: ZeeuwsOnline
Description: Een eenvoudig under-construction-thema met beheerbare tekst en contactgegevens.
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: simple-under-construction
*/

:root {
    --uc-background: #f5f3ee;
    --uc-surface: #ffffff;
    --uc-text: #222222;
    --uc-muted: #636363;
    --uc-accent: #f26d53;
    --uc-border: #dedbd5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--uc-background);
    color: var(--uc-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.uc-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: clamp(24px, 6vw, 80px) 20px;
}

.uc-card {
    width: min(100%, 760px);
    padding: clamp(32px, 7vw, 72px);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    background: var(--uc-surface);
    box-shadow: 0 20px 60px rgba(34, 34, 34, 0.08);
    text-align: center;
}

.uc-title {
    margin: 0;
    font-size: clamp(2rem, 7vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.uc-title::after {
    display: block;
    width: 56px;
    height: 4px;
    margin: 28px auto;
    border-radius: 999px;
    background: var(--uc-accent);
    content: "";
}

.uc-message {
    max-width: 600px;
    margin: 0 auto;
    color: var(--uc-muted);
    font-size: clamp(1rem, 2.4vw, 1.15rem);
}

.uc-message > :first-child {
    margin-top: 0;
}

.uc-message > :last-child {
    margin-bottom: 0;
}

.uc-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.uc-contact a,
.uc-address {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid var(--uc-border);
    border-radius: 999px;
    color: var(--uc-text);
    font-weight: 700;
    text-decoration: none;
    font-style: normal;
}

.uc-contact a {
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.uc-contact a:hover,
.uc-contact a:focus-visible {
    border-color: var(--uc-accent);
    color: var(--uc-accent);
    transform: translateY(-1px);
}

.uc-contact a:focus-visible {
    outline: 3px solid rgba(242, 109, 83, 0.3);
    outline-offset: 3px;
}

.uc-image-wrap {
    width: 400px;
    height: 200px;

    max-width: 100%;
    margin: 0 auto 32px;
    overflow: hidden;
}

.uc-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 480px) {
    .uc-contact {
        align-items: stretch;
        flex-direction: column;
    }

    .uc-contact a,
    .uc-address {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .uc-contact a {
        transition: none;
    }
}
