/* Reset CSS */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
  background: #ffffff; /* ← THỐNG NHẤT BACKGROUND */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Media elements scale within containers */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Font chính (Inter) cho body và text */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff; /* ← ĐỔI TỪ #f8f9fa THÀNH #ffffff */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0; /* ← THÊM */
  padding: 0; /* ← THÊM */
}

/* Font phụ (Nunito) cho headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", "Inter", sans-serif;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Kích thước và trọng lượng font cho headings */
h1 {
  font-size: 4.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Paragraph và text - sử dụng font chính (Inter) */
p {
  font-family: "Inter", sans-serif;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Links */
a {
  font-family: "Inter", sans-serif;
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #2980b9;
}

/* Form controls - sử dụng font chính */
.form-control {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Labels - sử dụng font phụ */
label {
  font-family: "Nunito", "Inter", sans-serif;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #2c3e50;
  letter-spacing: 0.02em;
}

/* Container layout chung */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow-x: hidden;
}

/* STYLING CHO SECTION */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

section h1 {
  margin-bottom: 20px;
  color: #2c3e50;
}

section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Typography utilities */
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}

/* Font weight utilities */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

/* Text alignment */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Color utilities */
.text-primary {
  color: #3498db;
}
.text-success {
  color: #27ae60;
}
.text-danger {
  color: #e74c3c;
}
.text-warning {
  color: #f39c12;
}
.text-muted {
  color: #6c757d;
}

/* Spacing utilities */
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

/* Hiệu ứng cuộn trong */
html {
  scroll-behavior: smooth;
}

/* Hiệu ứng bôi đen Text */
::selection {
  background-color: #3498db;
  color: white;
}
/* Hiệu ứng bôi đen Text cho Firefox */
::-moz-selection {
  background-color: #3498db;
  color: white;
}
