/* Partho Holidays - Design Tokens & Custom Variables */

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

:root {
  /* Color Palette */
  --bg-primary: #163344;          /* Deep ocean luxury blue */
  --bg-secondary: #0A1C27;        /* Dinger blue-black for cards and sections */
  --bg-tertiary: #07151E;         /* Absolute dark blue-black for footers/dropdowns */
  --accent-green: #CCFF2B;        /* Electric lime/green branding accent */
  --accent-green-hover: #B8E622;  /* Electric lime darken state */
  --accent-green-glow: rgba(204, 255, 43, 0.3);
  
  --text-white: #FFFFFF;
  --text-light: #E2EAF0;
  --text-muted: #8CA0AE;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(204, 255, 43, 0.15);
  
  /* Glassmorphism Presets */
  --glass-bg: rgba(10, 28, 39, 0.7);
  --glass-bg-hover: rgba(10, 28, 39, 0.85);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(204, 255, 43, 0.2);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
  --glass-blur: blur(16px);
  
  /* Fonts */
  --font-headings: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout Sizing */
  --container-max-width: 1280px;
  --header-height: 80px;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}
