/* Updated CSS to work with Bootstrap instead of Tailwind */
:root {
  --primary-red: #dc2626;
  --primary-purple: #9333ea;
  --primary-blue: #2563eb;
  --secondary-green: #65a30d;
}

body {
  font-family: "Inter", sans-serif;
}

/* Icon sizes */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
}

/* Logo styles */
.logo-img {
  height: 4rem;
  width: auto;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Gradient styles */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%) !important;
  border: none !important;
}

/* Hero section background */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: 1;
}

/* Navigation link styles */
.nav-link-custom {
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary-red) !important;
}

/* Language button styles */
.lang-btn.active,
.mobile-lang-btn.active {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%) !important;
  color: white !important;
  border: none !important;
}

/* Card hover effects */
.fatbike-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fatbike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.25rem 1.5625rem -0.3125rem rgba(0, 0, 0, 0.1), 0 0.625rem 0.625rem -0.3125rem rgba(0, 0, 0, 0.04);
}

/* Button transitions */
.btn {
  transition: all 0.3s ease;
}

.btn.gradient-bg:hover {
  opacity: 0.9;
}

/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }

  .about-title,
  .fatbikes-title,
  .contact-title {
    font-size: 2rem !important;
  }
}

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

/* Object fit utility for images */
.object-fit-cover {
  object-fit: cover;
}
