/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Oct 13, 2025, 10:59:03 PM
    Author     : ADMIN
*/

/* File: css/about.css */

/* --- CÀI ĐẶT CHUNG --- */
:root {
    --mau-nau-dam: #4D403D;
    --mau-do-ruou: #9A3F3F;
    --mau-be: #FBDB93;
    --mau-nen: #FFFBF5;
    --mau-chu-toi: #333;
    --mau-chu-phu: #555;
}

body.about-page { /* Chỉ áp dụng cho trang có class này */
    font-family: 'Montserrat', sans-serif;
    background-color: var(--mau-nen);
    color: var(--mau-nau-dam);
    line-height: 1.8; /* Tăng khoảng cách dòng cho dễ đọc */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--mau-nau-dam);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

/* --- MỤC 1: HERO - BANNER GIỚI THIỆU --- */
.hero-about {
    background-color: #4D403D;
    background-size: cover;
    background-position: center;
    height: 60vh; /* Cao hơn một chút */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-about h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.hero-about p {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 700px; /* Giới hạn chiều rộng cho dễ đọc */
}

/* --- CÁC MỤC NỘI DUNG CHÍNH --- */
.sumenh{
background-color: var(--mau-do-ruou);
/*background-color: white;*/
}
.content-section {
    padding: 80px 0;
}
.alternate-bg {
    background-color: white;
}

.section-grid {
    display: flex;
    align-items: center;
    gap: 60px; /* Tăng khoảng cách */
}

/* SỬA TỈ LỆ: Ảnh chiếm 40%, Chữ chiếm 60% */
.section-image {
    flex: 0 0 40%;
}
.section-text {
    flex: 0 0 60%;
}
.sumenh p{
    color: var(--mau-nen)!important
}
.sumenhh2{
    color: var(--mau-nen)!important
}
.section-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--mau-nau-dam);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--mau-do-ruou);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Đảo ngược layout */
.section-grid.reverse {
    flex-direction: row-reverse;
}


/* --- MỤC 4: ĐỘI NGŨ --- */
.team-section {
    text-align: center;
    background-color: var(--mau-nen);
}
.section-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--mau-chu-phu);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.team-member {
    flex-basis: 250px;
    transition: transform 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px); /* Hiệu ứng di chuột */
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--mau-do-ruou);
}

.team-member h3 {
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}

.team-member p {
    font-style: italic;
    color: var(--mau-chu-phu);
    margin-top: 0;
}

/* --- RESPONSIVE CHO MOBILE --- */
@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.2rem;
    }
    .hero-about {
        height: 70vh; /* Cao hơn trên mobile để đọc chữ */
    }

    .section-grid {
        flex-direction: column !important;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    .section-subtitle {
        text-align: center;
    }
    
    .content-section {
        padding: 50px 0;
    }
}