/* Base Styles - Variables, Typography, Reset */

/* CSS Variables */
:root {
  --primary-color: #3182ce;
  --primary-hover: #2c5aa0;
  --text-primary: #374151;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --bg-white: #ffffff;
  --bg-gray-50: #f9fafb;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --container-max-width: 1200px;
  --border-radius: 6px;
  --transition-colors: color 0.2s;
  --transition-all: all 0.2s;
}

/* Rubik Font Family - Only Font Used */
@font-face {
  font-family: 'Rubik';
  src: url('/assets/images/uploads/fonts/rubik/Rubik-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/assets/images/uploads/fonts/rubik/Rubik-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/assets/images/uploads/fonts/rubik/Rubik-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/assets/images/uploads/fonts/rubik/Rubik-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}



/* Base Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Essential Utility Classes */

/* Typography */
.font-heading { font-family: 'Rubik', sans-serif; font-weight: 700; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Colors */
.text-primary { color: #3182ce; }
.bg-primary { background-color: #3182ce; }
.text-white { color: #ffffff; }
.bg-white { background-color: #ffffff; }
.text-neutral-800 { color: #262626; }
.bg-neutral-800 { background-color: #262626; }
.bg-neutral-50 { background-color: #fafafa; }
.text-accent { color: #38bdf8; }
.bg-accent { background-color: #38bdf8; }
.text-muted-foreground { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-400 { color: #9ca3af; }
.bg-gray-100 { background-color: #f3f4f6; }
.text-yellow-400 { color: #facc15; }

/* Layout */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.z-20 { z-index: 20; }
.z-10 { z-index: 10; }
.z-0 { z-index: 0; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

html {
  scroll-behavior: smooth;
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-colors);
}

a:hover {
  color: var(--primary-hover);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: white; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.hidden { display: none; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-80 { height: 20rem; }
.h-40 { height: 10rem; }
.h-10 { height: 2.5rem; }
.h-6 { height: 1.5rem; }
.h-4 { height: 1rem; }
.h-3 { height: 0.75rem; }
.h-1 { height: 0.25rem; }
.w-10 { width: 2.5rem; }
.w-6 { width: 1.5rem; }
.w-4 { width: 1rem; }
.w-3 { width: 0.75rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }