/* Reset cơ bản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  padding-top: 60px;
  font-size: 18px; /* Tăng kích thước chữ cho nội dung */
  line-height: 1.6;
  color: #2c3e50;
  padding-top: 60px;
}

/* Header cố định */
.sticky-header  {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;              /* Nền trắng trung tính */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 10px 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Container trong header (chỉ áp dụng cho header) */
.sticky-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling (không can thiệp) */
.logo img {
  max-width: 120px;    /* Kích thước logo lớn hơn cho desktop */
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* Hiệu ứng phóng nhẹ khi hover */
}

/* Nút Đặt vé */
.btn-book {
  background: linear-gradient(45deg, #ff6f61, #ff3b2e); /* Gradient đỏ cam nổi bật */
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Cải thiện text */
  text-decoration: none;             /* Bỏ gạch chân */
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive: Điều chỉnh cho màn hình nhỏ */
@media (max-width: 600px) {
  .sticky-header {
    padding: 10px 0;
  }
  .logo img {
    max-width: 90px;
  }
  .btn-book {
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}

/* Chỉ áp dụng cho PC (màn hình lớn) */
@media (min-width: 992px) {
  .sticky-header {
    height: 130px;   /* Tăng chiều cao header cho PC */
    padding: 0;      /* Sử dụng chiều cao cố định */
  }
  
  .sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo và nút cách đều hai bên */
    height: 100%;
    position: relative;             /* Để định vị pseudo-element */
  }
  
  /* Thêm text riêng (slogan/tagline) trang trí đẹp hơn, không đụng vào logo */
@keyframes underlineGrow {
  0% { width: 0; }
  50% { width: 40%; }
  100% { width: 0; }
}

.sticky-header .container::after {
  content: "Chất lượng - An toàn - Uy tín";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: #2c3e50;  /* Màu chữ thay đổi: xanh đậm */
  pointer-events: none;
}

.sticky-header .container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 20px);
  transform: translateX(-50%);
  height: 3px;
  background: #e67e22;
  width: 0;
  animation: underlineGrow 4s ease-in-out infinite;
  pointer-events: none;
}


}






/* ====== Article Container ====== */
.article-container {
    padding: 20px;
    background: #f9f9f9;
}

/* Main container của bài viết */
.article-container .container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px; /* Tăng padding để nội dung không quá chật */
}

/* ====== Tiêu đề bài viết ====== */
.article-title,
.article-container h1 {
    font-size: 2.5rem; /* Khoảng 40px tùy theo base font-size */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* ====== Tiêu đề phụ (h2, h3) ====== */
.article-container h2,
.article-container h3 {
    font-size: 1.75rem; /* 28px khoảng */
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* ====== Thumbnail của bài viết ====== */
.article-thumbnail {
    width: 100%;
    height: auto;
    max-height: 400px; /* Giới hạn chiều cao ảnh */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* ====== Nội dung bài viết ====== */
.article-content {
    font-size: 1.125rem; /* Tăng kích thước chữ cho dễ đọc */
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Ảnh trong nội dung */
.article-content img {
    max-width: 70%;      /* Giới hạn hình ảnh chỉ chiếm tối đa 80% chiều rộng của container */
    height: auto;
    margin: 20px auto;   /* Căn giữa hình ảnh và tạo khoảng cách dọc */
    display: block;      /* Ép hiển thị dưới dạng block để dễ kiểm soát */
    border-radius: 8px;
}

/* Tiêu đề phụ bên trong nội dung */
.article-content h2,
.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 10px;
}

/* ====== Danh sách ====== */
.article-content ul,
.article-content ol {
    margin: 10px 0 20px;
    padding-left: 1.5rem; /* Tạo khoảng cách bên trái cho danh sách */
    list-style-position: inside;
    color: #555;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 10px;
}

/* ====== Trích dẫn ====== */
.article-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: #f0f0f0;
    border-left: 5px solid #007bff;
    font-style: italic;
    color: #555;
}

/* ====== Đường link ====== */
.article-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* Container chứa các nút */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Khoảng cách giữa các nút */
    z-index: 1000;
}

/* Nút chung */
.floating-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #007bff, #0056b3); 
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-btn img {
    width: 60px; /* Kích thước icon */
    height: 60px;
    /* filter: invert(1); Biến icon màu trắng */
}

.floating-btn:hover {
    transform: scale(1.1); /* Phóng to nhẹ khi hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Đổ bóng mạnh hơn */
}

/* Nút Facebook */


/* Nút Liên hệ */
.contact-btn {
    background: linear-gradient(45deg, #333333, #1b1b1b); /* Gradient màu xanh lá */
}