/* --- 1. Main Section --- */
.sparkle-main-section {
    position: relative;
    width: 100%;
    min-height: 60vh; /* Chiều cao tối thiểu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    color: #fff;
}

.sparkle-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- Cột Text (Trái) --- */
.sparkle-text-col {
    flex: 0 0 45%; /* Chiếm 45% chiều rộng */
}

.sparkle-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff; /* Màu trắng sáng */
    letter-spacing: 0.5px;
}

.sparkle-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc; /* Màu xám bạc */
    text-align: justify;
    margin-bottom: 30px;
}

.sparkle-desc p {
    margin-bottom: 15px;
}

/* Icon Badge */
.sparkle-badge-box img {
    width: 80px; /* Kích thước logo tròn */
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* --- Cột Image (Phải) --- */
.sparkle-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.sparkle-image-col img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Hiệu ứng bóng đổ nhẹ cho ly rượu nếu ảnh tách nền */
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.5)); 
}

/* --- 2. Bottom Bar --- */
.heritage-top-botom {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: linear-gradient(to bottom, #3a0a0a 0%, #1a0505 100%);
    border-top: 1px solid rgba(234, 192, 134, 0.2);
}

.heritage-gradient-text-botom {
    font-weight: 100; /* Nét chữ mảnh */
    font-size: 48px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    color: #EBC58E
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .sparkle-container {
        flex-direction: column;
        text-align: left;
    }
    
    .sparkle-text-col {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .sparkle-image-col {
        justify-content: center;
    }

    .sparkle-brand-text {
        font-size: 28px;
    }
    
    .sparkle-overlay {
        background: rgba(0,0,0,0.85); /* Tối toàn bộ trên mobile */
    }

    .heritage-gradient-text-botom {
        font-weight: 100; /* Nét chữ mảnh */
        font-size: 20px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin: 0;
        color: #EBC58E
}
}

/* --- Animation Classes --- */
.animate-sparkle {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 1s ease-out;
}

.sparkle-visible .animate-sparkle {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.from-left { transform: translateX(-50px); }
.from-right { transform: translateX(50px); }
.from-bottom { transform: translateY(50px); }
.from-zoom { transform: scale(0.5); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Animation Classes for Heritage */
.animate-heritage {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.sparkle-visible .animate-heritage {
    opacity: 1;
    transform: translate(0, 0);
}

.from-top { transform: translateY(-30px); }
