/* --- RESET & GLOBAL --- */
* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.bohemia-wrapper {
    width: 100%;
}

.bohemia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

img { max-width: 100%; height: auto; }

/* --- 1. BANNER SECTION --- */
.bohemia-banner {
    position: relative;
    height: 400px; /* Chiều cao giống trong ảnh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Fallback color */
}

.bohemia-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7; /* Làm tối ảnh gốc một chút để chữ trắng nổi bật */
}

.bohemia-banner__content {
    position: relative;
    z-index: 2;
}

.bohemia-banner__content h1 {
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- 2. INTRO SECTION --- */
.bohemia-intro {
    padding: 60px 0 50px;
    background-color: #ffffff;
}

.bohemia-intro__logo img {
    height: 80px; /* Điều chỉnh chiều cao logo cho cân đối */
    margin-bottom: 20px;
}

.bohemia-intro__text p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    text-transform: uppercase;
    font-weight: 500;
}

.bohemia-intro__text strong {
    font-weight: 700;
}

/* --- 3. DIFFERENCE SECTION (NỀN ĐỎ) --- */
.bohemia-difference {
    background-color: #4a0e0e; /* Màu đỏ rượu vang đậm giống ảnh */
    padding: 60px 0;
    color: #ffffff;
}

.bohemia-difference__title {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 600;
    color: #ffffff;
}

.bohemia-features-grid {
    display: flex;
    justify-content: center;
    gap: 80px; /* Khoảng cách giữa các icon */
    flex-wrap: wrap;
}

.bohemia-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bohemia-feature-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff; /* Viền trắng vuông */
    border-radius: 8px; /* Bo góc nhẹ */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Style cho ảnh/svg bên trong icon */
.bohemia-feature-icon img, 
.bohemia-feature-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Chuyển icon sang màu trắng hoàn toàn */
}

.bohemia-feature-item span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
}

/* --- 4. PARTNERS SECTION --- */
.bohemia-partners {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.bohemia-partners__title {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #561c1c; /* Màu chữ tiêu đề đỏ nâu */
    margin-bottom: 50px;
    font-weight: 700;
}

.bohemia-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px; /* gap dọc 40px, gap ngang 60px */
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    max-height: 50px; /* Giới hạn chiều cao logo đối tác */
    width: auto;
    object-fit: contain;
    filter: grayscale(0); /* Giữ màu gốc hoặc grayscale(100%) nếu muốn đen trắng */
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* --- ANIMATIONS --- */
.bohemia-anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.bohemia-in-view {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Mobile */
@media (max-width: 768px) {
    .bohemia-banner { height: 250px; }
    .bohemia-banner__content h1 { font-size: 2rem; }
    
    .bohemia-intro__text p { font-size: 0.9rem; }
    
    .bohemia-difference__title { font-size: 1.4rem; padding: 0 10px; }
    
    .bohemia-features-grid {
        flex-direction: column; /* Xếp dọc trên mobile */
        gap: 30px;
        align-items: center; /* Căn giữa */
    }
    
    .bohemia-feature-item {
        width: 200px; /* Cố định chiều rộng để căn lề đẹp hơn */
        justify-content: flex-start;
    }
    
    .bohemia-partners-grid {
        gap: 30px;
    }
    
    .partner-logo { max-height: 40px; }
}