@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
/* Base defaults to avoid missing-variable / rem scaling issues */
html {
  font-size: 16px;
}
body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-SemiBold", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-SemiBold";
  src: local("Inter-SemiBold");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Medium", "weight": "500", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Medium";
  src: local("Inter-Medium");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Bold", "weight": "700", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Bold";
  src: local("Inter-Bold");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Regular";
  src: local("Inter-Regular");
}

#site-header,
#site-footer {
  width: 100%;
}

#site-header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #2b160e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  z-index: 1000;
}

#site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", "Montserrat", "Inter-SemiBold", sans-serif;
}

#site-header .logo-link { display: inline-flex; align-items: center; gap: 12px; }
#site-header .logo-img { width: 28px; height: 28px; display: block; }
#site-header .logo-text { color: #ffffff; font-weight: 600; }

#site-header .nav-menu {
  display: flex;
  gap: 18px;
}

#site-header .nav-item {
  color: #d7ccc8;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", "Montserrat", "Inter-Medium", sans-serif;
  transition: color 0.18s, background-color 0.15s;
  padding: 8px 12px;
  border-radius: 12px;
}

#site-header .nav-item:hover,
#site-header .nav-item.active {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

#site-footer .footer {
  background-color: #1a0c07;
  color: #bcaaa4;
  padding: 70px 10% 25px;
  font-size: 0.9rem;
  font-family: "Montserrat", "Inter-Regular", sans-serif;
}

#site-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 50px;
}

#site-footer .footer-col {
  flex: 1;
  min-width: 250px;
}

#site-footer .footer-col h3,
#site-footer .footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

#site-footer .footer-col h3 {
  font-size: 1.35rem;
}

#site-footer .footer-col h4 {
  font-size: 1.1rem;
}

#site-footer .footer-col p {
  margin-bottom: 10px;
}

#site-footer .footer-bottom {
  align-self: stretch;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  font-size: 0.8rem;
}

#site-footer .footer-bottom p {
  margin: 0;
}

body.page-thuc_don .background {
  padding-top: 75px;
}

@media (max-width: 768px) {
  #site-header .navbar {
    padding: 0 5%;
  }

  #site-header .nav-menu {
    display: none;
  }

  #site-footer .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}
