/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Font - Airstrike 3D */
@font-face {
  font-family: 'Airstrike 3D';
  src: url('fonts/Airstrike3D.ttf') format('truetype'),
       url('fonts/Airstrike3D.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --font-heading: 'Black Ops One', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-hero: 'Airstrike 3D', 'Black Ops One', cursive;
  
  --background: hsl(222, 47%, 10%);
  --foreground: hsl(0, 0%, 98%);
  --border: hsl(222, 30%, 25%);
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-950: #450a0a;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-950: #022c22;
  --green-400: #4ade80;
  --green-500: #22c55e;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container and Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1536px;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* Typography */
.text-xs { font-size: 0.7rem; }
.text-sm { font-size: 0.8rem; }
.text-base { font-size: 0.9rem; }
.text-lg { font-size: 1rem; }
.text-xl { font-size: 1.1rem; }
.text-2xl { font-size: 1.3rem; }
.text-3xl { font-size: 1.6rem; }
.text-4xl { font-size: 2rem; }
.text-5xl { font-size: 2.5rem; }
.text-6xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-red-500 { color: var(--red-500); }
.text-red-400 { color: #00cba8; }
.text-emerald-400 { color: var(--emerald-400); }
.text-emerald-500 { color: var(--emerald-500); }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, var(--red-500), #ac0689, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(to right, #fff, #0ecf0e, var(--red-500));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-green {
  background: linear-gradient(to right, var(--emerald-400), var(--green-400), #6ee7b7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-mixed {
  background: linear-gradient(to right, var(--red-500), var(--emerald-400), #f87171);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Spacing */
.mb-2 { margin-bottom: 0.4rem; }
.mb-4 { margin-bottom: 0.8rem; }
.mb-6 { margin-bottom: 1.2rem; }
.mb-8 { margin-bottom: 1.6rem; }
.mb-10 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 2.4rem; }
.mb-16 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Display and Layout */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.top-20 { top: 5rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-24 { bottom: 6rem; }
.right-6 { right: 1.5rem; }
.right-20 { right: 5rem; }
.left-20 { left: 5rem; }
.top-full { top: 100%; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }

.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-90vh { min-height: 90vh; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Borders and Rounded */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white-5 { border-color: rgba(255, 255, 255, 0.05); }

/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-transparent { background: transparent; }
.bg-pattern {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 60% 60%, rgba(220, 38, 38, 0.08) 0%, transparent 35%);
}

/* Gradient Backgrounds */
.bg-gradient-red {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 40%);
}

/* Card Gradients */
.card-gradient {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.card-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.5) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-gradient-green {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.card-gradient-green::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.5) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-gradient-mixed {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(30, 41, 59, 0.5) 100%);
}

.card-gradient-mixed::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(16, 185, 129, 0.4) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Button Gradients */
.btn-gradient {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff00b6 0%, #5e004a 100%);
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: scale(1.05);
}

/* Glows */
.glow-red {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.glow-green {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.glow-mixed {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.2), 0 0 60px rgba(16, 185, 129, 0.15);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.8); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes starPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.6s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Icon Containers */
.icon-container {
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-container-sm {
  padding: 0.5rem;
  border-radius: 0.625rem;
}

.icon-container-lg {
  padding: 1rem;
  border-radius: 1rem;
}

/* Hover and Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-scale-sm:hover {
  transform: scale(1.02);
}

.group:hover .group-hover-scale {
  transform: scale(1.05);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(23, 30, 41, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--red-500);
  background: rgba(239, 68, 68, 0.1);
}


/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(23, 30, 41, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.5), rgba(16, 185, 129, 0.5), rgba(239, 68, 68, 0.5));
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  min-width: 50px;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-item.active {
  color: var(--red-500);
  background: rgba(239, 68, 68, 0.1);
}

.mobile-nav-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.mobile-nav-item.active svg {
  stroke-width: 2.5;
}

.mobile-nav-item span {
  font-size: 0.625rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--background);
  border-top: 1px solid var(--border);
}

/* Star Background */
.star-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  border-radius: 50%;
}

.star-white {
  background: white;
}

.star-red {
  background: #fca5a5;
}

.star-green {
  background: var(--emerald-400);
}

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(222, 47%, 10%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 84%, 55%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 84%, 65%);
}

/* Mobile Optimizations */
@media (max-width: 639px) {
  /* Reduce header height on mobile */
  .navbar .h-20 {
    height: 3.5rem !important;
  }
  
  /* Reduce logo size on mobile */
  .logo-img {
    height: 30px !important;
  }
  
  /* Reduce text sizes to footer level */
  .text-4xl { font-size: 0.875rem !important; }
  .text-3xl { font-size: 0.8rem !important; }
  .text-2xl { font-size: 0.75rem !important; }
  .text-xl { font-size: 0.7rem !important; }
  .text-lg { font-size: 0.7rem !important; }
  .text-base { font-size: 0.65rem !important; }
  .text-sm { font-size: 0.65rem !important; }
  .text-xs { font-size: 0.6rem !important; }
  
  /* Reduce padding */
  .py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-12 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .p-8 { padding: 1.5rem !important; }
  .p-6 { padding: 1rem !important; }
  .p-4 { padding: 0.75rem !important; }
  
  .px-8 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-6 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-4 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  
  /* Reduce margins */
  .mb-16 { margin-bottom: 2rem !important; }
  .mb-12 { margin-bottom: 1.5rem !important; }
  .mb-8 { margin-bottom: 1rem !important; }
  .mb-6 { margin-bottom: 0.75rem !important; }
  
  /* Reduce gaps */
  .gap-12 { gap: 2rem !important; }
  .gap-8 { gap: 1.5rem !important; }
  .gap-6 { gap: 1rem !important; }
  .gap-4 { gap: 0.75rem !important; }
  
  /* Footer 2 columns on mobile */
  .footer .grid-cols-1 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer .lg-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Team cards 2 columns on mobile */
  .md-grid-cols-2.lg-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Reduce button sizes */
  .btn-gradient,
  a.btn-gradient,
  button.btn-gradient {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.65rem !important;
  }
  
  /* Reduce hero buttons specifically */
  section a.btn-gradient,
  section a[href="products.html"],
  section a[href="contact.html"] {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.65rem !important;
  }
}

/* Responsive Grid */
@media (min-width: 640px) {
  .sm-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm-flex-row { flex-direction: row; }
  .sm-text-5xl { font-size: 3rem; }
  .sm-text-4xl { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md-text-3xl { font-size: 1.875rem; }
  .md-flex-row { flex-direction: row; }
}

.lg-flex {
  display: none;
}

.lg-block {
  display: none;
}

@media (min-width: 1024px) {
  .lg-hidden { display: none; }
  .lg-block { display: block; }
  .lg-flex { display: flex; }
  .lg-grid { display: grid; }
  .lg-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg-text-6xl { font-size: 3.75rem; }
  .lg-text-left { text-align: left; }
  .lg-justify-start { justify-content: flex-start; }
  .lg-bottom-6 { bottom: 1.5rem; }
  .lg-px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg-pb-0 { padding-bottom: 0; }
  .whatsapp-button {
    bottom: 1.5rem;
  }
  .mobile-nav {
    display: none;
  }
}

/* Form Styles */
input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5);
}

textarea {
  resize: none;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

button:disabled:hover {
  transform: none;
}

/* Space utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Antialiased */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Main content area */
main {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 1023px) {
  main {
    padding-bottom: 5rem;
  }
  
  .footer {
    padding-bottom: 80px !important;
  }
}

/* Hero Title - Airstrike 3D Font */
.hero-title {
  font-family: var(--font-hero) !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
