/* VEIFLOW Custom Styles - Lightweight utility CSS inspired by Tailwind */
/* This replaces the 3MB Tailwind CDN with only what we actually use (~5KB) */

/* ==================== RESET & BASE ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================== VEIFLOW BRAND COLORS - UPDATED PALETTE ==================== */
/* Color Palette:
   #0B343D - Deep Teal (Primary - darkest)
   #1C55A6 - Ocean Blue (Secondary)
   #2EB1A2 - Seafoam Teal (Accent - brightest)
   #FFFFFF - White
   #A0AEC0 - Light Gray (Subtle accent)
*/

.gradient {
  background: linear-gradient(135deg, #0B343D 0%, #1C55A6 50%, #2EB1A2 100%);
}

/* ==================== VEIFLOW BRAND NAME STYLING ==================== */
.brand-name {
  font-family: 'Righteous', cursive;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #FFFFFF 0%, #2EB1A2 50%, #1C55A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(46, 177, 162, 0.3);
  transition: all 0.3s ease;
}

.brand-name:hover {
  letter-spacing: 0.04em;
  filter: brightness(1.1);
}

.brand-name-dark {
  background: linear-gradient(135deg, #0B343D 0%, #1C55A6 50%, #2EB1A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 2.25rem;
  }
}

/* ==================== IMAGE INTEGRATION ==================== */
.hero-image {
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(11, 52, 61, 0.4),
    0 10px 30px rgba(46, 177, 162, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(11, 52, 61, 0.5),
    0 15px 40px rgba(46, 177, 162, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo-image {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 4px 8px rgba(46, 177, 162, 0.4));
}

/* ==================== TEXT COLORS ==================== */
.text-white {
  color: #FFFFFF;
}

.text-black {
  color: #000000;
}

.text-veiflow-primary {
  color: #0B343D;
}

.text-veiflow-secondary {
  color: #1C55A6;
}

.text-veiflow-teal {
  color: #2EB1A2;
}

.text-sky-200 {
  color: #A0AEC0;
}

.text-gray-500 {
  color: #6B7280;
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-800 {
  color: #1F2937;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-veiflow-primary {
  background-color: #0B343D;
}

.border-gray-100 {
  border-color: #F3F4F6;
}

.border-gray-200 {
  border-color: #E5E7EB;
}

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.max-w-4xl {
  max-width: 56rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ==================== FLEXBOX ==================== */
.flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-1 {
  flex: 1 1 0%;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

/* ==================== POSITIONING ==================== */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-50 {
  z-index: 50;
}

/* ==================== WIDTH & HEIGHT ==================== */
.w-full {
  width: 100%;
}

.w-1\/6 {
  width: 16.666667%;
}

.h-1 {
  height: 0.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

/* ==================== SPACING - MARGIN ==================== */
.m-8 {
  margin: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.-mt-12 {
  margin-top: -3rem;
}

/* ==================== SPACING - PADDING ==================== */
.p-1 {
  padding: 0.25rem;
}

.p-4 {
  padding: 1rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.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-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

/* ==================== TYPOGRAPHY ==================== */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.leading-normal {
  line-height: 1.5;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-loose {
  letter-spacing: 0.05em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.no-underline {
  text-decoration: none;
}

.list-reset {
  list-style: none;
  padding: 0;
}

/* ==================== BORDERS ==================== */
.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* ==================== EFFECTS ==================== */
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.focus\:shadow-outline:focus {
  box-shadow: 0 0 0 3px rgba(138, 201, 224, 0.5);
}

.opacity-25 {
  opacity: 0.25;
}

.fill-current {
  fill: currentColor;
}

/* ==================== INTERACTIVITY ==================== */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.transform {
  transform: var(--tw-transform);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.hover\:text-veiflow-primary:hover {
  color: #0B343D;
}

.hover\:text-veiflow-teal:hover {
  color: #2EB1A2;
}

/* ==================== RESPONSIVE UTILITIES ==================== */
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-4\/5 {
    width: 80%;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:block {
    display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:p-0 {
    padding: 0;
  }

  .lg\:-mt-24 {
    margin-top: -6rem;
  }
}
