/* ===== RESET & GLOBAL ===== */
body {
    background-color: #111;
    color: #eee;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #000;
    padding: 10px 0;
}

.logo img,
.flag img {
    height: 40px;
}

.search-box input {
    background-color: #222;
    border: none;
    color: #fff;
}

.search-box input::placeholder {
    color: #aaa;
}

/* ===== MENU ===== */
.main-menu {
    background-color: #111;
    border-bottom: 1px solid #222;
}

.main-menu a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 22px;
    transition: 0.3s;
}

.main-menu a:hover {
    color: #f0c040;
}

/* ===== HERO / BANNER ===== */
.hero img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 50px;
}

/* ===== FEATURE SECTION ===== */
.feature-img img {
    width: 100%;
    border-radius: 10px;
}

/* ===== REASON SECTION ===== */
.reason-box {
    background-color: #1a1a1a;
    padding: 50px;
    border-radius: 12px;
}

.reason-box h3 {
    margin-bottom: 25px;
}

/* ===== ABOUT & REVIEW ===== */
.overlay-section {
    background: linear-gradient(
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.85)
    ), url("banner");
    background-size: cover;
    background-position: center;
}

.overlay-section h3 {
    margin-bottom: 20px;
}

.overlay-section img {
    border: 3px solid #f0c040;
}

/* ===== FOOTER ===== */
footer {
    background-color: #000;
    padding: 60px 0;
}

footer h5 {
    margin-bottom: 20px;
}

footer p {
    color: #bbb;
}
/* ====== GIỚI THIỆU ====== */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #222222;
}

/* ====== 3 KHỐI NỘI DUNG ====== */
.vision-section {
    padding: 60px 0;
    background-color: #e6e2f6;
}

.info-card {
    background: #d6d4e4;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(125, 7, 7, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card h3 {
    margin-bottom: 15px;
    color: #0d6efd;
    font-size: 22px;
}

.info-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ====== LIÊN HỆ ====== */
.contact-section {
    padding: 70px 0;
    background-color: #111;
    color: #eee;
}

.contact-section .section-title {
    color: #fff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 15px;
}
/* ===== FOOD SECTION ===== */
.food-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #f1ece6;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #bebcb7;
}

/* FOOD CARD */
.food-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.food-card.reverse {
    flex-direction: row-reverse;
}

.food-content {
    flex: 1;
}

.food-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #f0c040;
}

.food-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.food-content ul li {
    margin-bottom: 8px;
    color: #f5f2f2;
}

.food-desc {
    line-height: 1.7;
    color: #f9f6f6;
}

/* FOOD IMAGES */
.food-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.food-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.food-images img:hover {
    transform: scale(1.05);
}
/* ===== TRAVEL SECTION ===== */
.travel-section {
    background-color: #321a02;
    padding: 80px 0;
    color: #eaeaea;
}

.travel-item {
    max-width: 900px;
    margin: 0 auto 80px;
}

.travel-item h3 {
    font-size: 26px;
    color: #f0c040;
    margin-bottom: 15px;
}

.travel-info {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.travel-info li {
    margin-bottom: 8px;
    color: #ddd;
}

.travel-desc {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

/* IMAGE BLOCK */
.travel-image {
    text-align: center;
}

.travel-image img {
    width: 100%;
    max-width: 700px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
    font-style: italic;
}
/* ===== CONTACT BANNER ===== */
.contact-banner {
    height: 300px;
    background: url("banner/contact-banner.jpg") center/cover no-repeat;
    position: relative;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner-overlay h1 {
    font-size: 42px;
    margin-bottom: 5px;
}

.banner-overlay p {
    font-size: 14px;
    color: #f0eef3;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #848282;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT INFO */
.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 12px;
    color: #090909;
}

/* FORM */
.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #161515;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    background-color: #2c4a6e;
    color: #fcf8f8;
    padding: 14px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #1d3557;
}

.banner {
  position: relative;
  height: 400px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* TEXT GẦN DƯỚI – GIỮA */
.banner-text.bottom-center {
  position: absolute;
  bottom: 30px;            /* KÉO LÊN / XUỐNG */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.contact-banner {
    height: 300px;
    background: url("img/chung/lienhe.jpg") center / cover no-repeat;
    position: relative;
}
