/* Hero Section */
.hero-section {
    /* No padding-top - navbar overlays this section */
    position: relative;
}

.hero-section .row {
    min-height: 100vh;
}

.hero-content-wrapper {
    max-width: 600px;
    width: 100%;
}

/* Typography - Left Column */
.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Be Vietnam Pro', sans-serif;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1e1e64;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

/* Inline layout: "Với" and "CÁI TÔI" on same line */
.hero-with {
    font-family: 'Corinthia', cursive;
    font-size: 6rem;
    color: #d97706;
    line-height: 1;
    display: inline-block;
    margin-right: 15px;
    vertical-align: baseline;
}

.hero-title-inline {
    font-size: 4rem;
    font-weight: 700;
    color: #1e1e64;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    vertical-align: baseline;
    margin-bottom: 0;
}

/* Gradient Badge */
.hero-badge {
    background: linear-gradient(90deg, #4338ca 0%, #f59e0b 100%);
    font-size: 18px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Right Column - Image */
.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

/* Desktop: force both columns to full viewport height on wide screens */
@media (max-width: 991px) {
    /* Layout & Height - Add padding for fixed navbar */
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-section .row {
        min-height: auto;
        flex-direction: column;
    }
    
    /* Content section - full width on mobile */
    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    
    /* Typography Scaling */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-inline {
        font-size: 2.5rem;
    }

    .hero-with {
        font-size: 4rem;
        margin-right: 10px;
    }
    
    /* Spacing - More compact padding, align content */
    .hero-content-wrapper {
        padding: 2rem 1.5rem !important;
        max-width: 100%;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-badge {
        font-size: 16px;
        padding: 10px 20px !important;
    }
    
    /* Image - Full width edge-to-edge with fixed height */
    .hero-image-wrapper {
        width: 100vw;
        height: 50vh;
        min-height: 400px;
        margin-left: calc(-50vw + 50%);
        position: relative;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-image-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Further scale down typography on small mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-inline {
        font-size: 2rem;
    }

    .hero-with {
        font-size: 3rem;
    }
    
    .hero-content-wrapper {
        padding: 1.5rem 1rem !important;
    }
    
    .hero-badge {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px !important;
    }
}
