/* * ByteSky 3D Hero - Main Stylesheet 
 * Version: 5.5.0 (Clean Mobile View)
 */

/* --- 1. Container chính (Wrapper) --- */
.bytesky-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px; /* Mặc định, sẽ bị override bởi Inline Style từ Shortcode */
    overflow: hidden;
    background-color: #0b0c15; /* Fallback color */
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    align-items: center; /* Căn giữa dọc nội dung */
    justify-content: flex-start; /* Căn nội dung sang trái */
}

/* --- 2. Khung nhìn 3D (Visual Canvas) --- */
.bytesky-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 1;
    
    /* [Desktop] Bật tương tác chuột */
    pointer-events: auto; 
    cursor: grab; 
}

/* Khi đang kéo chuột */
.bytesky-visual:active {
    cursor: grabbing;
}

/* Canvas Three.js bên trong */
.bytesky-visual canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
}

/* --- 3. Nội dung chữ (Content) --- */
.bytesky-content {
    position: relative;
    z-index: 2;
    width: 50%; /* Chiếm 50% màn hình bên trái */
    padding-left: 8%;
    padding-right: 20px;
    pointer-events: none; /* Tránh block chuột vào vùng trống */
    box-sizing: border-box;
}

/* Cho phép click vào các phần tử con (tiêu đề, nút) */
.bytesky-content > * {
    pointer-events: auto;
}

.bytesky-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: capitalize;
}

.bytesky-desc {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

/* --- 4. Nút bấm (Button) --- */
.bytesky-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #ffffff;
    color: #0b0c15;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.bytesky-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- 5. Responsive (Mobile & Tablet) --- */

/* Tablet (Dưới 1024px) */
@media (max-width: 1024px) {
    .bytesky-title {
        font-size: 2.8rem;
    }
    .bytesky-content {
        width: 60%;
    }
}

/* Mobile (Dưới 768px) - Giao diện phẳng, dễ đọc */
@media (max-width: 768px) {
    .bytesky-hero-wrapper {
        /* Thiết lập wrapper làm khung chứa dạng khối */
        position: relative; 
        display: block; 
        width: 100%;
        height: auto; 
        min-height: auto !important; /* Cho phép chiều cao co giãn theo nội dung */
        overflow: hidden; 
        padding: 60px 20px; /* Tăng khoảng cách lề */
    }

    .bytesky-content {
        /* Đưa nội dung text lên lớp trên cùng */
        position: relative;
        z-index: 10; 
        width: 100%;
        padding: 20px;
        text-align: center; /* Căn giữa nội dung trên mobile */
        
        /* [QUAN TRỌNG] Loại bỏ bóng văn bản gây khó nhìn */
        text-shadow: none !important;
    }

    .bytesky-visual {
        /* Đưa khối 3D xuống lớp dưới làm nền */
        position: absolute; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; 
        z-index: 1; 
        opacity: 0.8; /* Làm mờ nhẹ nền 3D */
        /* Có thể tắt tương tác trên mobile nếu muốn cuộn trang mượt hơn */
        /* pointer-events: none; */ 
    }

    /* --- Điều chỉnh Text cho Mobile --- */
    .bytesky-title {
        font-size: 2.5rem; /* Giảm kích thước font tiêu đề */
        margin-bottom: 0.5em;
        text-shadow: none !important; /* Xóa bóng */
    }

    .bytesky-desc {
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: none !important; /* Xóa bóng */
    }

    .bytesky-btn {
        margin-top: 1.5em;
        width: 100%; /* Nút rộng full màn hình */
        max-width: 280px; /* Giới hạn chiều rộng tối đa */
        box-shadow: none !important; /* Xóa bóng của nút */
    }
    
    .bytesky-btn:hover {
        transform: none; /* Tắt hiệu ứng nổi lên khi hover trên mobile */
        box-shadow: none !important;
    }
}