/** Shopify CDN: Minification failed

Line 19:0 All "@import" rules must come first

**/
/* Theme-specific styles */
:root {
  --color-primary: #FF5F1F;
  --color-primary-dark: #6A6F78;
  --color-secondary-dark: #2E3033;
  --color-white: #FFFFFF;
  --color-accent-light: #AEE6FF;
  --color-background: #2E3033;
  --color-background-light: #6A6F78;
  --color-text: #FFFFFF;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Global button styles */
.btn {
  padding: 1rem 2.5rem;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  margin: 0 auto;
}

  .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 95, 31, 0.4);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 95, 31, 0.6);
  }

  .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
  }

  .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 95, 31, 0.6);
  }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Section spacing */
section {
  scroll-margin-top: 100px;
}

/* Responsive typography */
@media (max-width: 768px) {
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

/* Animation utilities */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in 1s ease-out;
}

.slide-up {
  animation: slide-up 1s ease-out;
}

