/* 引用根目录下的 header.css */
@import url("../header.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #161616;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* Page Content Styles */
.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 132px 5vw 76px;
    box-sizing: border-box;
}

.coming-soon .eyebrow {
    color: #c46851;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.coming-soon h2 {
    margin: 0 0 18px;
    color: #161616;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .coming-soon h2 {
        font-size: 2.4rem;
    }
}


::selection {
    background-color: #c46851;
    color: #ffffff;
}
::-moz-selection {
    background-color: #c46851;
    color: #ffffff;
}