/*
 * TỆP STYLE.CSS (Phiên bản 4 - Mobile-First)
 */

:root {
    /* Bảng màu "Premium" mới */
    --primary-green: #0A4A20; /* Xanh lá đậm, sang trọng */
    --primary-yellow: #FFB703; /* Vàng cam (giống bưởi) làm điểm nhấn */
    --light-gray: #f8f9fa;
    --dark-text: #212529;
    --white: #ffffff;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Playfair Display', serif; /* Font chữ có chân, tạo cảm giác cao cấp */
}

body {
    font-family: var(--body-font);
    color: var(--dark-text);
    padding-top: 56px; 
    background-color: var(--white);
    /* padding-bottom sẽ được thêm bằng media query cho mobile */
}

h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-green);
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after { 
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
}

/* 1. Tùy chỉnh Navbar */
/* Desktop State */
.navbar-transparent {
    background-color: transparent;
    transition: background-color 0.4s ease;
}
.navbar-scrolled {
    background-color: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-dark .navbar-nav .nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    margin: 0 5px;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .active > .nav-link {
    color: var(--white);
}

/* Nút Zalo trên Navbar */
.btn-zalo-nav {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}
.btn-zalo-nav:hover {
    color: var(--dark-text);
    background-color: var(--white);
    transform: scale(1.05);
}


/* 2. Hero Section (Trang chủ - Layout Split) */
.hero-split {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--white);
}

.hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.hero-text .hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-top: -10px;
    margin-bottom: 20px;
}
.hero-text .lead {
    font-family: var(--body-font);
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}
.hero-pomelo-img {
    max-width: 100%;
}

/* 3. Tiêu đề Trang Con (products.html) */
.page-header {
    background-color: var(--light-gray);
    padding: 80px 0 60px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
}

/* 4. Thẻ Sản Phẩm (Product Card) */
.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
}
.product-card .card-title {
    font-size: 1.5rem;
}
.product-card .card-price {
    color: var(--primary-green);
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--body-font);
}

/* Tag "Bán Chạy" */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
}

/* 5. Nút CTA (Call to Action) */
.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    font-weight: 600;
    font-family: var(--body-font);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    color: var(--dark-text);
    background-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-outline-primary-green {
    color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
}
.btn-outline-primary-green:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* 6. Phần "Lý do chọn chúng tôi" */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #e6f8ec;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}
.col-md-4:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

/* 7. Footer */
.footer-dark {
    background-color: var(--primary-green);
}
.footer-dark p {
    margin-bottom: 5px;
}

/* 8. Nút Zalo nổi */
.zalo-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1030;
    transition: transform 0.3s ease;
}
.zalo-float:hover {
    transform: scale(1.1);
}
.zalo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


/* ==================================================
 9. Mobile-First (Thanh Điều Hướng Dưới & Media Queries) 
==================================================
*/

/* Thanh điều hướng dưới */
.nav-bottom-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1031;
}

.nav-bottom-item {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    transition: all 0.2s ease;
}

.nav-bottom-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* Nút Active */
.nav-bottom-item.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Nút Zalo CTA ở giữa */
.nav-bottom-item.zalo-cta {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    font-weight: 700;
    font-size: 0.9rem;
    border-top: 3px solid var(--primary-green);
}
.nav-bottom-item.zalo-cta i {
    font-size: 1.3rem;
}

/* MEDIA QUERIES cho Mobile (< 992px) */
@media (max-width: 991.98px) { 
    /* Ẩn các mục menu trên cùng */
    .nav-item-desktop {
        display: none !important;
    }
    
    /* Thêm padding-bottom cho body để nội dung không bị che */
    body {
        padding-bottom: 75px; 
    }

    /* Đảm bảo navbar trên cùng luôn có màu nền trên mobile */
    .navbar-transparent {
        background-color: var(--primary-green) !important;
    }

    /* Tối ưu Hero Split trên Mobile */
    .hero-split .row {
        display: flex;
        flex-direction: column-reverse; /* Đảo ngược thứ tự: Ảnh lên trên (hero-image) */
    }
    .hero-split {
        min-height: auto; /* Bỏ chiều cao vh */
        padding-top: 80px; 
        text-align: center;
    }
    .hero-text .hero-title {
        font-size: 2.5rem;
    }
    .hero-text .hero-subtitle {
        font-size: 1.8rem;
    }

    /* Nút Đặt Hàng trên thẻ sản phẩm: Full-width */
    .product-card .btn-cta {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }
}
/* Tệp style.css (Thêm đoạn này) */
.navbar-logo {
    height: 200px; /* Chiều cao tiêu chuẩn cho logo trên Desktop */
    width: auto; /* Giữ tỷ lệ khung hình */
    transition: all 0.3s ease;
    /* DÒNG ĐÃ THÊM: Tạo khoảng cách với chữ */
    margin-right: 8px; 
}
/* Điều chỉnh logo khi cuộn (nếu cần) */
.navbar-scrolled .navbar-logo {
    height: 35px;
}

/* Điều chỉnh logo cho màn hình điện thoại (nhỏ hơn 768px) */
@media (max-width: 767.98px) {
    .navbar-logo {
        height: 30px; /* Logo nhỏ hơn để không chiếm quá nhiều không gian */
    }
}

/*
 * CẬP NHẬT STYLE.CSS CHO TRANG CÂU CHUYỆN (story.html)
 */

/* Thêm màu xanh lá nhạt cho background */
.bg-light-green {
    background-color: #f7fff7;
}

/* Page Header cho trang Story */
.page-header.story-header {
    background-color: var(--light-gray); /* Nền nhẹ nhàng */
    padding: 100px 0 80px 0;
}
.page-header.story-header h1 {
    font-size: 3.2rem;
    color: var(--primary-green);
}
.page-header.story-header .lead {
    color: #555;
}

/*
 * CẬP NHẬT CHỈ KHUNG QUOTE (story-image-separator)
 * Tăng cường sự chuyên nghiệp và sử dụng màu Accent mới
 */
.story-image-separator {
    background-color: var(--primary-green); 
    border-radius: 15px;
    padding: 60px 20px;
    height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* ĐỔI: Thêm border top/bottom 5px bằng màu accent mới để đóng khung Quote */
    border-top: 5px solid var(--primary-accent); 
    border-bottom: 5px solid var(--primary-accent);
    /* Giảm shadow để trông gọn gàng hơn */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); 
    overflow: hidden; 
}

/* Hiệu ứng Quote: Thêm dấu ngoặc kép lớn mờ */
.story-image-separator::before {
    content: '“'; 
    font-family: var(--heading-font);
    font-size: 20rem; 
    /* ĐỔI: Dùng màu accent mờ để đồng bộ với khung */
    color: rgba(204, 119, 0, 0.15);
    position: absolute;
    top: -50px;
    left: 10px;
    z-index: 1; 
    line-height: 1;
}

/* Định dạng cho Blockquote (Chữ) */
.story-image-separator .blockquote {
    z-index: 2;
    position: relative;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
}
.story-image-separator .blockquote p {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 700;
}
.story-image-separator .h2 {
    color: var(--white) !important; 
    /* Tăng độ rõ nét của bóng để nổi bật hơn trên nền xanh đậm */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); 
}

/* Cập nhật Footer (Tác giả quote) */
.story-image-separator .blockquote-footer {
    /* ĐỔI: SỬ DỤNG MÀU ACCENT MỚI để tạo điểm nhấn cao cấp */
    color: var(--primary-accent) !important;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Cập nhật Nav Dưới (Thêm icon cho Câu Chuyện) */
.nav-bottom-mobile a[href="story.html"] i {
    font-size: 1.2rem; /* Đảm bảo icon mới có kích thước đúng */
}
