/* css/styles.css */

/* Cơ bản cho cả web và điện thoại */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

/* Tiêu đề chính */
h1 {
    text-align: center;
    padding: 40px 20px 20px;
    font-size: 3em;
    font-weight: 700;
    color: #3b5998; /* Màu Facebook xanh */
}

/* Phần phụ của h1 */
h1 span {
    font-size: 0.8em;
    display: block;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Container chính */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Card - khối content */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect card */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Tiêu đề phụ (h2) */
h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222; /* Màu tối */
}

/* Danh sách */
ul {
    list-style: decimal inside;
    margin: 10px 0;
    padding-left: 20px;
}

/* Nội dung đoạn văn */
p {
    font-size: 1.4em; /* Chữ lớn hơn để dễ đọc */
    margin-top: 10px;
    line-height: 1.6;
}

/* Nút bấm */
.btn {
    display: inline-block;
    background-color: #3b5998; /* Màu Facebook */
    color: #fff;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 1.4em;
    border: none;
    border-radius: 25px; /* Bo tròn như Facebook */
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #2d4373; /* Màu tối hơn */
    transform: translateY(-3px);
}

/* Responsive cho điện thoại, nhỏ hơn 768px */
@media (max-width: 768px) {
    body {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 1.2em; /* Chữ lớn hơn */
        padding: 10px;
    }

    h1 {
        font-size: 2.5em;
        padding: 20px 10px 10px;
    }

    h1 span {
        font-size: 1em;
    }

    h2 {
        font-size: 2em; /* lớn hơn trên điện thoại */
        margin-bottom: 10px;
    }

    p {
        font-size: 1.8em; /* Chữ lớn hơn */
    }

    .btn {
        padding: 15px 20px;
        font-size: 1.8em; /* Phóng to nút */
        border-radius: 50px; /* Bo tròn như nút Facebook */
    }

    .card {
        padding: 20px;
        margin-bottom: 20px;
    }
}
