/* ==========================================================================
   Global Styles & Tokens
   ========================================================================== */

:root {
  --primary-red: #e52329;
  --primary-red-hover: #ff383e;
  --dark-red: #a61217;
  --bg-dark: #0a0a0a;
  --bg-card-dark: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-light: #f4f5f7;
  --bg-white: #ffffff;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  --text-dark-muted: #4b5563;
  --border-dark: #262626;
  --border-light: #e5e7eb;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 10px 25px -5px rgba(229, 35, 41, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Typography Utilities */
.text-red {
  color: var(--primary-red) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-yellow {
  color: #f59e0b !important;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 700;
}

.font-bold {
  font-weight: 700;
}

.sub-heading {
  display: inline-block;
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pill {
  border-radius: 50px;
}

.btn-red {
  background-color: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
}

.btn-red:hover {
  background-color: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: rgba(20, 20, 20, 0.8);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background-color: rgba(229, 35, 41, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.link-red {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-red:hover {
  color: var(--primary-red-hover);
  transform: translateX(4px);
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: #1f1f1f;
  color: #ffffff;
  border-left: 4px solid var(--primary-red);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Navbar Component Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d1d5db;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}