* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero {
    height: 65vh;
    background-image: url("img/hanoi.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 72px;
    letter-spacing: 9px;
    margin-bottom: 40px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* MENU */
.menu {
    background: #FFCC66;
    display: flex;
    justify-content: center;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 600;
}

.menu a:hover {
    background: rgba(255,255,255,0.15);
}

/* INTRO */
.intro {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* TIÊU ĐỀ */
.page-title {
    text-align: center;
    margin: 50px 0 30px;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
}

.title-line {
    width: 90px;
    height: 4px;
    background-color: #c49b63;
    margin: 12px auto;
    border-radius: 2px;
}

.subtitle {
    font-size: 18px;
    color: #555;
}

/* DANH SÁCH ĐỊA DANH */
.place-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.place-card {
    width: 33%;
    text-align: center;
}

.place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.place-card h3 {
    margin-top: 15px;
    font-size: 22px;
}

.place-card p {
    margin-top: 8px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .place-list {
        flex-direction: column;
    }

    .place-card {
        width: 100%;
    }
}
/* =========================
   ẨM THỰC
========================= */
.food-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.food-card {
    width: 33%;
    text-align: center;
}

.food-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.food-card h3 {
    margin-top: 15px;
    font-size: 22px;
}

.food-card p {
    margin-top: 8px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE ẨM THỰC */
@media (max-width: 768px) {
    .food-list {
        flex-direction: column;
    }

    .food-card {
        width: 100%;
    }
}