/* ============================================
   HOME.CSS - RIÊNG CHO TRANG CHỦ
   Màu sắc tươi sáng, không dark mode
   ============================================ */

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(232, 93, 143, 0.92) 0%, rgba(212, 175, 55, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    color: white !important;
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero p {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SECTION COMMON === */
.section-padding {
    padding: 80px 0;
}

.section-bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 45px;
}

/* === FEATURE BANNER === */
.feature-banner {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.feature-banner h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-banner p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === COMBO GRID (HOME) === */
.combo-grid .combo-collage {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.combo-collage-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.combo-collage-row:last-child {
    margin-bottom: 0;
}

.combo-collage-row > div {
    flex: 1;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
}

.combo-collage-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.combo-collage-row img:hover {
    transform: scale(1.08);
}

.combo-grid .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 8px;
}

.combo-grid .short_description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 10px;
    line-height: 1.4;
}

.combo-grid .price-range {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
}

/* === TESTIMONIAL SECTION === */
.testimonial-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-banner .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* === RESPONSIVE HOME === */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .feature-banner {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .combo-collage-row {
        gap: 5px;
        margin-bottom: 5px;
    }
    
    .cta-banner {
        padding: 35px 20px;
    }
    
    .cta-banner h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .hero p {
        font-size: 0.9rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        width: 200px;
    }
    
    .btn-outline-light.ms-3 {
        margin-left: 0 !important;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .feature-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .cta-banner h3 {
        font-size: 1.2rem;
    }
    
    .cta-banner p {
        font-size: 0.9rem;
    }
}