/* 
  LifeCare Veterinary Institute - Custom Premium Stylesheet (Warm Nude & Light Slate Theme)
  Visual Theme: Warm Sand Whites, Soft Beige Nude (#e3c3b0), Deep Espresso Slates, Energetic Warm Orange
*/

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

:root {
  --color-slate-950: #1b1714; /* Warm dark espresso */
  --color-slate-900: #2a2320; /* Deep warm slate */
  --color-slate-700: #53463f; /* Medium warm slate */
  --color-slate-600: #6d5c53; /* Slate/brown */
  --color-slate-200: #eadace; /* Warm light sand border */
  --color-slate-100: #f5ece5; /* Soft warm sand secondary background */
  --color-slate-50: #faf8f5;  /* Pure soft sand/white background */
  
  --color-orange-500: #e06810; /* Soft warm energetic orange, perfectly matching sand-nude */
  --color-orange-600: #c75608;
  --color-orange-400: #f0893a;
  
  --color-nude-brand: #e3c3b0; /* The official logo background color */
  --color-nude-light: #f7ede6; /* Softest warm sand wash */
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar (Warm Mode) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-slate-50);
}
::-webkit-scrollbar-thumb {
  background: var(--color-slate-200);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange-500);
}

/* Text Accent Gradient (Espresso to Orange) */
.text-gradient {
  background: linear-gradient(135deg, var(--color-slate-950) 30%, var(--color-orange-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange-gradient {
  background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInFast {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(224, 104, 16, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(224, 104, 16, 0.15);
  }
}

/* Animation Utility Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-fast {
  animation: fadeInFast 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: pulseGlow 2.5s infinite;
}

/* Glassmorphism Styles (Warm Light Mode Optimized) */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(83, 70, 63, 0.08);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(83, 70, 63, 0.05);
}

.glass-nav {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(83, 70, 63, 0.06);
}

/* Custom Interactive Services Card */
.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 104, 16, 0.3);
  box-shadow: 0 20px 40px -15px rgba(83, 70, 63, 0.08), 
              0 0 20px 0 rgba(224, 104, 16, 0.05);
}

/* Stat bar animation classes when scrolled into view */
.stat-bar-fill {
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-bar-fill.active {
  width: var(--progress-target);
}

/* Modal animation */
.modal-overlay {
  transition: opacity 0.3s ease;
}

.modal-content {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Coming Soon Pulse badge */
.badge-pulse {
  position: relative;
}
.badge-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9999px;
  border: 1.5px solid var(--color-orange-500);
  animation: pulseOuter 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  opacity: 0;
}

@keyframes pulseOuter {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Waitlist success state checkmark animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #e06810;
}
.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #e06810;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  box-sizing: content-box;
  border: 4px solid rgba(224, 104, 16, .3);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
.success-checkmark .check-icon .icon-fix {
  top: 8px;
  left: 28px;
  width: 5px;
  height: 85px;
  position: absolute;
  z-index: 1;
}

@keyframes icon-line-tip {
  0% { width: 0; left: 1px; top: 19px; }
  54% { width: 0; left: 1px; top: 19px; }
  70% { width: 50px; left: -8px; top: 37px; }
  84% { width: 17px; left: 21px; top: 48px; }
  100% { width: 25px; left: 14px; top: 46px; }
}
@keyframes icon-line-long {
  0% { width: 0; right: 46px; top: 54px; }
  65% { width: 0; right: 46px; top: 54px; }
  84% { width: 55px; right: 0px; top: 35px; }
  100% { width: 47px; right: 8px; top: 38px; }
}

/* Hero Section Animal Watermark Graphic */
.hero-watermark {
  background-image: url('assets/images/logo.png');
  background-size: auto 100%;
}

/* Cookie Consent Banner Styling */
.cookie-banner {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.hidden-banner {
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  animation: none !important;
}

/* Custom interactive inputs for Careers form */
.careers-form input:focus, .careers-form select:focus, .careers-form textarea:focus {
  border-color: var(--color-orange-500);
  box-shadow: 0 0 0 2px rgba(224, 104, 16, 0.2);
}

/* Hybrid upload styles */
.file-dropzone {
  transition: all 0.3s ease;
}
.file-dropzone.dragover {
  border-color: var(--color-orange-500);
  background-color: var(--color-nude-light);
}

/* Blog reader modal animations */
.blog-modal {
  transition: opacity 0.3s ease;
}

.blog-modal-content {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

