/* =========================================
   HERO BANNER - LUXURY & MODERN STYLE
   ========================================= */

.home-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Chiều cao chuẩn cho PC: đảm bảo full màn hình hoặc đủ lớn */
    min-height: 85vh; 
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Lớp phủ Gradient hiện đại: Tối ở bên trái (chứa chữ) và sáng dần sang phải */
.home-hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(10, 37, 64, 0.95) 0%, 
        rgba(10, 37, 64, 0.85) 40%, 
        rgba(10, 37, 64, 0.4) 100%);
    z-index: 1;
}

.home-hero-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Content Container */
.hero-content {
    max-width: 650px; /* Giới hạn chiều rộng để dòng chữ không quá dài khó đọc */
    padding: 20px 0;
    opacity: 0; /* Ẩn để chờ animation */
    animation: fadeUp 1s ease-out forwards; /* Hiệu ứng xuất hiện */
}

/* Subtitle (Optional) - Dòng chữ nhỏ bên trên tiêu đề chính */
.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color, #ad8a4e); /* Màu vàng gold */
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(173, 138, 78, 0.3);
}

/* Main Title */
.hero-title {
    font-size: 3.8rem; /* Kích thước lớn, ấn tượng */
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Bóng đổ giúp nổi bật trên mọi nền */
}

/* Description */
.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 90%;
}

/* Action Buttons Area */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles Customize for Hero */
.hero-actions .btn-luxury {
    background-color: var(--secondary-color, #ad8a4e);
    border-color: var(--secondary-color, #ad8a4e);
    color: #fff;
    padding: 16px 40px; /* Nút to hơn một chút ở Hero */
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(173, 138, 78, 0.3);
}

.hero-actions .btn-luxury:hover {
    transform: translateY(-5px);
    background-color: #fff;
    color: var(--primary-color, #0a2540);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.hero-actions .btn-outline {
    padding: 16px 40px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.hero-actions .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color, #0a2540);
    border-color: #fff;
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */

/* Tablet (iPad) */
@media (max-width: 1024px) {
    .home-hero-banner {
        min-height: 60vh; /* Giảm chiều cao trên tablet */
        background-position: center left; /* Căn chỉnh lại ảnh nền */
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home-hero-banner {
        min-height: auto; /* Không ép chiều cao, để tự nhiên theo nội dung */
        padding: 100px 0 60px; /* Tăng padding top để tránh đè Header, tăng padding bottom cho thoáng */
        text-align: center; /* Căn giữa toàn bộ nội dung */
    }

    /* Chỉnh lại gradient phủ toàn bộ để dễ đọc text */
    .home-hero-banner .overlay {
        background: linear-gradient(180deg, 
            rgba(10, 37, 64, 0.95) 0%, 
            rgba(10, 37, 64, 0.85) 100%);
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 2.2rem; /* Chữ vừa vặn màn hình điện thoại */
        margin-bottom: 15px;
    }

    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 30px; /* Căn giữa description */
    }

    /* Nút bấm trên mobile */
    .hero-actions {
        flex-direction: column; /* Xếp chồng nút dọc */
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .hero-actions .btn-luxury,
    .hero-actions .btn-outline {
        width: 100%; /* Full width */
        max-width: 320px; /* Giới hạn độ rộng tối đa cho đẹp */
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .home-hero-banner {
        padding-top: 80px;
    }
}
