/* style.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Chiều cao tối thiểu = chiều cao màn hình */
}

/* Nội dung chính sẽ chiếm khoảng trống còn lại */
main {
    flex: 1; /* Đẩy footer xuống dưới bằng cách chiếm khoảng trống */
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    background: #333;
    color: white;
    padding: 1rem 0;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('background.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: #4CAF50;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.hero .btn:hover {
    background: #45a049;
}

/* Sections */
section {
    padding: 3rem 0;
    text-align: center;
}

.about, .contact {
    background: #f9f9f9;
}

.blog-post {
    margin-bottom: 2rem;
}

/* Phong cách danh sách nhập môn */
.intro-list {
    list-style-type: none; /* Bỏ bullet mặc định */
    padding: 0;
    margin: 1rem 0;
    background: #f9f9f9; /* Thêm nền cho danh sách */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.intro-list li {
    position: relative;
    padding: 10px 15px;
    margin: 5px 0;
    background: white;
    border-radius: 5px;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-list li:hover {
    transform: scale(1.02); /* Tăng kích thước nhẹ khi hover */
    background: #f0f0f0; /* Thay đổi màu nền khi hover */
}

.intro-list li::before {
    content: '✔'; /* Biểu tượng tùy chỉnh */
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
}

/* Các phần khác */
section {
    padding: 3rem 0;
    text-align: center;
}


