/* Custom CSS for K's Koffee */

:root {
  --navy-900: #0a1628;
  --navy-800: #132238;
  --navy-700: #1e3a5f;
  --navy-600: #2d4a6f;
  --navy-500: #3d5a80;
  --navy-400: #6b8cae;
  --navy-300: #9bb8d4;
  --navy-200: #c5d8e8;
  --navy-100: #e8f1f8;
  --navy-50: #f4f8fc;
  
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e6b422;
  --gold-300: #f0c94d;
  --gold-200: #f7dc8f;
  --gold-100: #fbeebb;
  --gold-50: #fdf6e3;
  
  --rose-500: #e11d48;
  --rose-400: #f43f5e;
  --rose-200: #fecdd3;
  --rose-100: #ffe4e6;
  
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-200: #bae6fd;
  --sky-100: #e0f2fe;
}

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

/* Custom animations */
@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-50);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-300);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-500);
}

/* Selection color */
::selection {
  background: var(--gold-200);
  color: var(--navy-900);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Print styles */
@media print {
  nav, button, .animate-blob {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
