@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors matching Figma */
  --primary: #2ab2e4;        /* Cyan for buttons and highlights */
  --primary-hover: #1f9ecf;
  --secondary: #133b4d;      /* Deep Teal used in footer */
  --accent: #fac711;         /* Yellow used in navbar Login button */
  --accent-hover: #e0b00a;

  /* Theme Backgrounds */
  --bg-light: #ffffff;       /* Clean white background */
  --bg-dark: #0f172a;        /* Fallback dark */
  
  /* Cards */
  --card-light: #ffffff;
  --card-dark: #1e293b;
  
  /* Borders */
  --border-light: #e2e8f0;
  --border-dark: #334155;
  
  /* Text */
  --text-light: #1e293b;
  --text-dark: #f8fafc;
  --muted-light: #64748b;
  --muted-dark: #94a3b8;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Outfit', sans-serif;
}

/* Base interactive transitions */
button, a {
  transition: all 0.2s ease-in-out;
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Web component generic host styles */
fleet-navbar, fleet-footer {
  display: block;
}

/* Reusable Backgrounds */
.bg-hero-gradient {
  background: 
    radial-gradient(ellipse 80% 90% at 100% 0%, rgba(156, 218, 238, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(250, 234, 138, 0.65) 0%, transparent 60%),
    linear-gradient(135deg, rgba(250, 234, 138, 0.25) 0%, #ffffff 45%, rgba(156, 218, 238, 0.25) 100%);
}

/* Features page custom motion + components */
.feature-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.arrow-btn {
  background: #ffcf45;
  transition: background 0.2s, transform 0.2s;
}

.arrow-btn:hover {
  background: #f0b900;
  transform: scale(1.1);
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
}

.logo-card {
  width: 76px;
  height: 76px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 14px;
}

.logo-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.marquee-left {
  animation: move-left 24s linear infinite;
}

.marquee-right {
  animation: move-right 24s linear infinite;
}

.logo-marquee:hover .marquee-left,
.logo-marquee:hover .marquee-right {
  animation-play-state: paused;
}

@keyframes move-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes move-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.feedback-strip {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.feedback-strip::before,
.feedback-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.feedback-strip::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.feedback-strip::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.feedback-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: feedback-scroll 28s linear infinite;
}

.feedback-track.reverse {
  animation-direction: reverse;
}

.feedback-strip:hover .feedback-track {
  animation-play-state: paused;
}

.feedback-card {
  width: 430px;
  min-height: 170px;
  border: 1px solid #eceff3;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  flex: 0 0 auto;
}

@keyframes feedback-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

