/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Albert Sans', sans-serif;
    background-color: #ffffff;
    color: #3B3B3B; /* Màu chữ COMING SOON theo Figma */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER (Giữ nguyên từ index.html) --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 55px 80px 20px 80px;
    background: #ffffff;
    width: 100%;
}

.logo {
    height: 48px;
    width: auto;
}

.frame-293 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-item {
    text-decoration: none;
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 50px;
    border: 2px solid #A31F34;
    border-radius: 30px;
    color: #A31F34;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Mouse hover hiệu ứng đã có sẵn */
.btn-signup:hover, .btn-signup.active {
    background-color: #A31F34;
    color: #ffffff;
}

/* --- SIGNUP CONTENT (Theo thiết kế Figma mới) --- */
.signup-main {
    flex: 1; /* Đẩy footer xuống dưới */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.coming-soon-container {
    text-align: center;
}

.coming-soon-title {
    font-size: 80px; /* Cỡ chữ theo Figma */
    font-weight: 900;
    color: #3B3B3B;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 18px; /* Cỡ chữ theo Figma[cite: 3] */
    font-weight: 200; /* Extra Light theo Figma[cite: 3] */
    color: #000000;
}

/* --- FOOTER ĐỒNG BỘ (bg_footer.png làm nền) --- */
.footer-wrapper {
    width: 100%;
    height: 274px;
    background: url('../images/bg_footer.png') no-repeat center/cover;
    display: flex;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1623px;
    margin: 0 auto;
    padding-left: 105px;
}

.footer-content-img {
    width: 900px;
    height: auto;
    display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .coming-soon-title {
        font-size: 48px;
    }
    .header {
        padding: 30px 40px;
    }
    .footer-container {
        padding-left: 40px;
    }
    .footer-content-img {
        width: 100%;
        max-width: 600px;
    }
}
