/* Author: Gemini
   Layout: Coming Soon with Dual Logos
*/

/* 1. Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    overflow: hidden;
}

/* 2. Background Image Setup */
body {
    background-image: url('../images/intro.webp'); /* Đảm bảo file tên là intro.png */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Màu nền dự phòng */
}

/* 3. Overlay (Lớp phủ mờ giúp chữ và logo nổi bật) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Độ tối 20% */
    z-index: 1;
}

/* 4. Main Container */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Đẩy nội dung lên trên khoảng 20% chiều cao màn hình */
    margin-top: -15vh; 
}

/* 5. Logo Section */
.brand-logo {
    margin-bottom: 35px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Khoảng cách giữa 2 logo */
    animation: fadeInDown 1.2s ease-out forwards;
}

.main-logo {
    width: 380px; /* Logo chính to hơn */
    max-width: 85vw;
    height: auto;
}

.sub-logo {
    width: 300px; /* Logo phụ S-ONE to hơn */
    max-width: 75vw;
    height: auto;
    /* Chuyển logo từ đen sang trắng hoàn toàn */
    filter: brightness(0) invert(1); 
}

/* 6. Typography Section */
.content {
    animation: fadeInUp 1s ease-out forwards 0.5s;
    opacity: 0; /* Đợi animation */
}

.main-text {
    font-size: 5.5rem; /* Chữ "近日公開" to và rõ */
    font-weight: 700;
    letter-spacing: 0.6rem;
    margin-bottom: 5px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
}

.sub-text {
    font-size: 1.6rem;
    letter-spacing: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

/* 7. Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 8. Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin-top: -10vh; /* Giảm độ đẩy lên trên mobile */
    }
    
    .main-logo {
        width: 280px;
    }
    
    .sub-logo {
        width: 220px;
    }
    
    .main-text {
        font-size: 3.2rem;
        letter-spacing: 0.3rem;
    }
    
    .sub-text {
        font-size: 1.1rem;
        letter-spacing: 0.5rem;
    }
}
