@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-navy: #002D85;
  --brand-blue: #0B72E3;
  --brand-sky: #52B6FF;
  --neutral-dark: #222222;
  --neutral-light: #F7F7F7;
  --border-light: #EBEBEB;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--neutral-dark);
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Custom scrollbar matching Airbnb/clean design */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
  background: #DDDDDD;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C0C0C0;
}

/* Brand background utility representing the main brand colors (No gradients) */
.bg-brand-primary {
  background-color: var(--brand-blue);
}
.bg-brand-primary:hover {
  background-color: #0A66D0;
}

.bg-brand-secondary {
  background-color: var(--brand-navy);
}
.bg-brand-secondary:hover {
  background-color: #002366;
}

.text-brand-primary {
  color: var(--brand-blue);
}

.text-brand-secondary {
  color: var(--brand-navy);
}


/* Micro-animations and custom effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(235, 235, 235, 0.6);
}

.airbnb-card {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background-color: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.airbnb-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.airbnb-shadow {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.airbnb-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Float Animation for logo overlapping cards in visual */
@keyframes float1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float-slow {
  animation: float1 8s ease-in-out infinite;
}

.animate-float-reverse {
  animation: float2 10s ease-in-out infinite;
}

/* Custom interactive input classes */
.airbnb-input-focus:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(11, 114, 227, 0.12);
}

/* Custom step indicators */
.step-line {
  position: relative;
}
.step-line::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: -16px;
  width: 2px;
  background-color: var(--border-light);
}
.step-line-last::after {
  display: none;
}

/* Tab indicator animation helper */
.tab-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
