:root {
  --primary-color: #dc3545;
  /* Bootstrap Danger Red */
  --primary-hover: #b02a37;
  --dark-bg: #121212;
  --light-bg: #f8f9fa;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
}

/* Custom Primary Button */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background-color: #fff;
  transition: background-color 0.3s ease;
  font-size: 15px;
}

.navbar-brand {
  font-size: 2rem;
  color: #000 !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: #333 !important;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.dropdown-item:hover {
  color: var(--primary-color) !important;
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  color: var(--primary-color);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 0 20px;
}

footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

footer {
  background-color: #121212;
  color: #fff;
  padding: 80px 0 40px;
}

footer h3, footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

footer .text-muted {
  color: #999 !important;
  line-height: 1.8;
}

.footer-links li a {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.hover-danger:hover {
  color: var(--primary-color) !important;
}

footer .btn-outline-light {
  border-color: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.border-top.border-secondary {
  border-color: rgba(255,255,255,0.1) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #919090 !important;
}

/* Font Awesome Compatibility Fix */
.fas,
.fa-solid,
.fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900;
}

.fab {
  font-weight: 400;
}


/* Font Awesome Compatibility Fix */
.fas,
.fa-solid,
.fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900;
}

.fab {
  font-weight: 400;
}