html {
  scroll-behavior: smooth;
}

:root {
  --primary-brown: #4E342E;
  --accent-gold: #C19A6B;
  --dark-brown: #2D241E;
  --off-white: #FAF9F6;
  --text-muted: rgba(45, 36, 30, 0.7);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-brown);
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-brown);
  color: var(--off-white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--accent-gold);
}

/* Navbar */
.navbar-main {
  height: 96px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-brown);
  padding: 8px 16px !important;
  transition: all 0.2s;
  border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold) !important;
  background: rgba(78, 52, 46, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 240px;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
}

.dropdown-item:hover {
  background-color: var(--off-white);
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.avif') center/cover no-repeat;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 36, 30, 0.95), rgba(45, 36, 30, 0.8), rgba(45, 36, 30, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(193, 154, 107, 0.2);
  border: 1px solid rgba(193, 154, 107, 0.3);
  border-radius: 4px;
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.tagline-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--primary-brown);
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: white;
  color: var(--primary-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  padding: 16px 32px;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Introduction */
.intro-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  background: rgba(193, 154, 107, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.divider-gold {
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  margin-bottom: 32px;
}

.intro-image-wrapper {
  position: relative;
}

.intro-image-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(193, 154, 107, 0.2);
  border-radius: 8px;
}

.intro-image {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  width: 100%;
}

.stats-box {
  width: 200px;
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: var(--primary-brown);
  padding: 26px 32px;
  border-radius: 8px;
  color: white;
  /* text-align: center; */
  z-index: 10;
}

/* Services Grid */
.services-section {
  padding: 96px 0;
  background: white;
}

.service-card {
  background: var(--off-white);
  border: 1px solid rgba(78, 52, 46, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 52, 46, 0.8), transparent);
}

.service-header {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  color: var(--primary-brown);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-title,
.service-title a {
  color: white;
  font-weight: 700;
  margin: 0;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.sub-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-services li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.sub-services i {
  color: var(--accent-gold);
  font-size: 14px;
  margin-top: 3px;
}

/* Contact Footer */
.contact-footer {
  background-color: var(--primary-brown);
  color: white;
  padding: 64px 0;
}

.footer-heading {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(193, 154, 107, 0.3);
  padding-bottom: 8px;
  text-transform: uppercase;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(193, 154, 107, 0.2);
  border: 1px solid rgba(193, 154, 107, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-brown);
}

/* Logos Footer */
.logos-footer {
  padding: 64px 0 32px;
  border-top: 1px solid #eee;
}

.partner-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.5s;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Floating Widgets */
.floating-zalo {
  position: fixed;
  bottom: 85px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  transition: transform 0.2s;
}

.floating-messenger {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #0084FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-decoration: none;
}

.floating-warning {
  position: fixed;
  bottom: 25px;
  left: 15px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.floating-zalo:hover,
.floating-messenger:hover,
.floating-warning:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .navbar-main {
    height: auto;
    padding: 15px 0;
  }

  .hero {
    min-height: 500px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .stats-box {
    display: none;
  }
}

.layout-center {
  min-height: 600px;
}

/* ====== BREADCRUMB ====== */
.breadcrumb {
  background: none !important;
  padding: 0px;
  margin: 20px 0px 20px 0px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--primary-brown);
  text-decoration: none;
}

.breadcrumb>li+li:before {
  color: #999;
}

/* ====== NEWS DETAIL ====== */
.news-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 10px;
}

.news-meta {
  color: #777;
  font-size: 13px;
  margin-bottom: 18px;
}

.news-cover {
  border-radius: 2px;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.news-sapo {
  font-size: 17px;
  color: #333;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-content {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}

.news-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 22px;
}

.news-content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.news-content blockquote {
  font-size: 16px;
  border-left: 4px solid var(--primary-brown);
  background: #fafafa;
}

.news-tags {
  margin-top: 20px;
}

.news-tags a {
  margin-right: 6px;
  display: inline-block;
  font-weight: 500;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #eee;
}

/* ====== RELATED NEWS ====== */
.related-wrap {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.related-wrap.artist {
  margin-top: 0px;
  padding: 10px;
  border-top: 0px;
  background: #333;
  min-height: 1000px;
  color: #efefef;
  text-align: center;
}

.related-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.related-item {
  margin-bottom: 25px;
}

.related-item .img-bound {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.related-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
}

.news-detail-session .related-thumb {
  height: 350px;
}

.related-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 6px;
  line-height: 1.4;
}

.news-detail-session .related-item h4 {
  width: 100%;
  text-align: center;
}

.related-item h4 a {
  color: #222;
  text-decoration: none;
}

.news-detail-session .related-item h4 a {
  color: #efefef;
  text-decoration: none;
}

.related-item h4 a:hover {
  color: var(--primary-brown);
}

.related-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.related-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .news-title {
    font-size: 26px;
  }

  .related-thumb {
    height: 150px;
  }
}

/* ===== News list item ===== */
.news-list-title.artists {
  text-align: center;
}

.news-list-brief {
  text-align: center;
  font-size: 13px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.news-item.project {
  display: block !important;
}

.news-item.artists {
  display: block !important;
}

.news-thumb {
  flex: 0 0 260px;
}

.news-item.project .news-thumb {
  padding-bottom: 10px;
}

.news-item.artists .news-thumb {
  padding-bottom: 20px;
  height: 490px;
  background: #333;
}

.news-item.project .news-thumb img {
  height: 220px;
}

.news-item.artists .news-thumb img {
  height: 490px !important;
  object-fit: cover;
}

.news-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
}

.news-body {
  flex: 1;
}

.news-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary-brown);
}

.news-title a {
  color: var(--primary-brown);
  text-decoration: none;
}

.news-title a:hover {
  color: #5a007a;
}

.news-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.news-desc {
  font-size: 14.5px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}

.news-readmore {
  color: var(--primary-brown);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* ===== Sidebar ===== */
.sidebar-box {
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 20px;
  background: #fafafa;
}

.sidebar-box li a {
  color: #222;
  text-decoration: none;
}

.sidebar-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hot-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.hot-thumb {
  flex: 0 0 80px;
}

.hot-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

.hot-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.hot-title a {
  color: #222;
  text-decoration: none;
}

.hot-title a:hover {
  color: var(--primary-brown);
}

.hot-meta {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}

.news-detail-session {}

.news-detail .img-fluid {
  width: 100%;
}

/* ===== Pagination ===== */
.pagination>li>a,
.pagination>li>span {
  color: var(--primary-brown);
}

.pagination>.active>a,
.pagination>.active>span {
  background: var(--primary-brown);
  border-color: var(--primary-brown);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .page-hero h1 {
    font-size: 26px;
  }

  .news-item {
    display: block;
  }

  .news-thumb {
    flex: unset;
    margin-bottom: 10px;
  }

  .news-thumb img {
    height: 200px;
  }
}

/* ===== article-gallery ===== */
.article-gallery {
  margin: 28px 0;
}

.article-gallery .gallery-title {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
}

/* ====== MAIN IMAGE ====== */
.gallery-main {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 550px;
  max-width: 1000px;
}

.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-main-caption {
  padding: 14px 16px 16px;
  border-top: 1px solid #f1f1f1;
}

.gallery-main-caption h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.gallery-main-caption p {
  margin: 0;
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* ====== THUMB STRIP ====== */
.thumb-strip {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.thumb-strip::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 999px;
}

.thumb {
  flex: 0 0 auto;
  width: 140px;
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #fff;
  transition: 0.15s;
}

.thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.thumb.active {
  border-color: var(--primary-brown);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.thumb:hover {
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .gallery-main {
    overflow: hidden;
    height: 350px;
    max-width: 1000px;
  }

  .thumb {
    width: 110px;
  }

  .thumb img {
    height: 75px;
  }
}