@font-face {
    font-family: 'Coming Soon';
    src: local('Coming Soon'),
    local('Coming Soon-Regular'),
    url('./assets/coming-soon-v20-latin-regular.woff2') format('woff2');
}


/* Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Coming Soon;
}

img {
    max-width: 100%;
    height: auto;
}

.cover {
    width: 100%;
}

.cover-content {
    width: 100%;
    min-height: 700px;
    background-image: url(https://res.cloudinary.com/cifit0pu/image/upload/v1790061370/banner.webp);
    background-size: cover;
    background-position: center;
    border: 2px solid rgb(183, 235, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: relative;
}

.cover-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(244, 237, 237, 0.3);
}

.cover-content > * {
    position: relative;
    z-index: 2;
}

.cover-title {
    font-size: 60px;
    color: black;
}

.cover-subtitle {
    font-size: 32px;
    color: black;
}

.cover-button {
    font-size:28px;
    text-decoration: none;
    color:black;
    background-color: rgba(255,255,255,0.7);
    padding:12px 30px;
    border-radius:10px;
}

.cover-button:hover {
    background-color:rgba(255,255,255,0.95);
}

/* 媒体查询：屏幕宽度小于 900px 时生效 */
@media screen and (max-width:900px){
    .story {
        flex-direction: column;
    }

    .story-img {
        width:100%;
    }

    .main-navigation {
        flex-wrap: wrap;
        gap:15px;
    }

    .header-container {
        padding:15px;
    }

    .main-title {
        font-size:32px;
    }
}

