/* Modern Color Scheme - Premium Green */
:root {
  --primary-color: #0F4C3A;
  --primary-light: #1A6B52; 
  --primary-dark: #0A3429;
  --secondary-color: #2D7A2D;
  --accent-color: #5C946C;
  --success-color: #22C55E;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #0F4C3A 0%, #1A6B52 100%);
  --gradient-secondary: linear-gradient(135deg, #2D7A2D 0%, #5C946C 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

/* Modern Card Styles */
.modern-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Modern Buttons */
.btn-modern-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-modern-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 24px;
  transition: all var(--transition-normal);
}

.btn-modern-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Modern Sections */
.section-modern {
  padding: 80px 0;
  position: relative;
}

.section-modern--primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.section-modern--gray {
  background: var(--gray-50);
}

.section-modern--white {
  background: var(--white);
}

/* Hero Modern Styles */
.hero-modern {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 50% 0 0 50%;
}

/* Global Styles for Fixed Navigation */
body {
  padding-top: 80px; /* Add space for fixed navbar */
  font-family: 'Montserrat', sans-serif;
}

/* Navigation Active State */
.nav-link.router-link-active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.nav-link:hover {
  background: var(--primary-light) !important;
  color: var(--white) !important;
}

/* Text Color Utilities */
.text-gray-50 { color: var(--gray-50) !important; }
.text-gray-100 { color: var(--gray-100) !important; }
.text-gray-200 { color: var(--gray-200) !important; }
.text-gray-300 { color: var(--gray-300) !important; }
.text-gray-400 { color: var(--gray-400) !important; }
.text-gray-500 { color: var(--gray-500) !important; }
.text-gray-600 { color: var(--gray-600) !important; }
.text-gray-700 { color: var(--gray-700) !important; }
.text-gray-800 { color: var(--gray-800) !important; }
.text-gray-900 { color: var(--gray-900) !important; }

/* Background Color Utilities */
.bg-gray-50 { background-color: var(--gray-50) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }

/* Border Utilities */
.border-gray-200 { border-color: var(--gray-200) !important; }
.border-gray-300 { border-color: var(--gray-300) !important; }

/* Vue specific styles */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.claude-chat-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1001;
}

.claude-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.claude-chat-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.claude-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.claude-chat-header {
  padding: 15px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.claude-chat-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.btn-minimize {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.claude-chat .messages {
  height: 300px;
  overflow-y: auto;
  padding: 15px;
  flex-grow: 1;
}

.claude-chat .message {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
}

.claude-chat .message.user {
  background: #f8f9fa;
  margin-left: 20px;
}

.claude-chat .message.assistant {
  background: #e3f2fd;
  margin-right: 20px;
}

.claude-chat-form {
  padding: 15px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 10px;
}

.claude-chat-form input {
  flex-grow: 1;
}

.claude-chat-form button {
  white-space: nowrap;
}

/* Animation classes */
.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

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

/* Blog Hero Styles */
.blog-hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
}

.blog-hero .hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-hero .hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Blog Content Styling */
.blog-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2rem 0 1rem 0;
  line-height: 1.2;
}

.blog-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.8rem 0 1rem 0;
  line-height: 1.3;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 0.8rem 0;
  line-height: 1.4;
}

.blog-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 1.2rem 0 0.6rem 0;
}

.blog-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.2rem;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.blog-content li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.blog-content strong {
  font-weight: 600;
  color: var(--gray-800);
}

.blog-content em {
  font-style: italic;
  color: var(--gray-700);
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-color);
  background: var(--gray-50);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-700);
}

.blog-content code {
  background: var(--gray-100);
  color: var(--primary-color);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.blog-content pre {
  background: var(--gray-900);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content pre code {
  background: none;
  color: var(--white);
  padding: 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.blog-content th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-800);
}

.blog-content a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.blog-content a:hover {
  border-bottom-color: var(--primary-color);
}

.blog-content hr {
  border: none;
  height: 2px;
  background: var(--gray-200);
  margin: 2rem 0;
}