/* =========================================================
   마이웨딩스토리 - COMMING SOON 페이지 스타일
   ========================================================= */

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    color: #FFFFFF;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFFFFF 34.12%, #FAFAF8 100%);
}

br.m { display: none; }

/* =========================================================
   Hero Section
   - width:1920px / height:900px 비율(aspect-ratio:32/15)의
     풀스크린 히어로 영역에 웨딩 배경 이미지를 꽉 채워 표시
   ========================================================= */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
}

.hero__background {
    position: absolute;
    inset: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
}

/* =========================================================
   Hero Content
   ========================================================= */
.hero__content {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand__mark {
    width: 300px;
    height: 19px;
}

.brand__name {
    color: #FFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.30);

    /* Noto Sans KR/Bold */
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    letter-spacing: 0.35em;
    text-indent: 0.35em;
}

.divider {
    display: block;
    width: 20px;
    height: 2px;
}

.hero__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero__label {
    color: #81D8D0;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 4.8px;
}

.hero__title {
    color: #949494;

    /* Noto Sans KR/Bold */
    font-family: "Noto Sans KR";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.01rem;
}

.hero__title br {
    display: none;
}

.hero__desc {
    color: #cfcfcf;
    text-align: center;

    /* Noto Sans KR/Medium */
    font-family: "Noto Sans KR";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.hero__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 16px 0;
    border-top: 1px solid #EEEEEE;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__footer p {
    color: #DADADA;
    text-align: center;

    /* Noto Sans KR/Regular */
    font-family: "Noto Sans KR";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 133.333% */
}

/* =========================================================
   Responsive Adjustments
   ========================================================= */
@media (max-width: 768px) {
    .hero {
        aspect-ratio: 3 / 4;
    }

    .hero__background {
        background-position: center 25%;
    }

   .hero__title br {
        display: block;
    }

    .hero__desc br {
        display: none;
    }

    .hero__desc {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero__background {
        background-position: center 20%;
    }

    #brand-logo .brand__mark {
        width: 300px;
        max-width: 80%;
        height: auto;
    }
}
